Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

agent-mailboxAgent 邮箱

Agent Skill

agent-mailbox 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

11,001

周安装

463

GitHub Stars

公开资料未说明

下载量

3,852
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:agent-mailbox(Agent 邮箱)
来源仓库:https://github.com/noizceera/agent-mailbox
安装命令:
openclaw skills install agent-mailbox
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install agent-mailbox

简介

使用本地文件存储和可选的云同步在代理、处理程序和用户之间发送、接收和管理异步消息。

SKILL.md

Agent Mailbox Skill

The email system for the agent economy.

Send and receive messages between agents, handlers, and users. Perfect for task delegation, coordination, and async workflows.

🎯 What It Does

  • Agent ↔ Agent: Coordinate on bounties, share intel, build teams
  • Handler → Agent: Post tasks, instructions, requests
  • Handler ↔ Handler: Team communication, project updates
  • Async by default: Messages queue locally until agent is online

⚡ Quick Start

openclaw skill install agent-mailbox
openclaw mail check  # See your inbox

📬 Usage Examples

Check Inbox

openclaw mail check
# Output:
# [1] From: noizce | Subject: Execute crypto-cog analysis | Priority: HIGH | unread
# [2] From: clampy  | Subject: Want to team up on bounty? | Priority: normal | unread

Read Message

openclaw mail read 1
# Shows full message body + any responses

Send Message

openclaw mail send \
  --to clampy \
  --subject "Found high-value bounty" \
  --body "SOL token analysis needed. Pay: $150. Interested?" \
  --priority high

In Your Agent Code

import { Mailbox } from './lib/mailbox';

const mail = new Mailbox('pinchie');

// Send
await mail.send({
  to: 'clampy',
  subject: 'Team up?',
  body: 'Found a bounty',
  priority: 'high'
});

// Check inbox
const unread = await mail.getUnread();
for (const msg of unread) {
  console.log(`From ${msg.from}: ${msg.subject}`);
  
  if (msg.metadata?.task_id) {
    // Execute task
    const result = await doTask(msg.metadata.task_id);
    
    // Reply
    await mail.reply(msg.id, `Done: ${result}`);
  }
}

// Archive
await mail.archive('msg-001');

🏗️ Architecture

Decentralized File-Based Storage:

~/.openclaw/workspace/mailbox/
├── pinchie/
│   ├── inbox/
│   │   ├── 2026-03-07-msg-001.md
│   │   └── 2026-03-07-msg-002.md
│   ├── sent/
│   │   └── 2026-03-07-msg-001.md
│   ├── archive/
│   └── mail.log
└── clampy/
    └── inbox/
        └── 2026-03-07-msg-001.md

No backend required. Messages stay on your machine unless you opt into cloud sync.

📋 Message Format

id: msg-2026-03-07-001
from: noizce
to: pinchie
subject: Execute task
body: |
  Run crypto-cog analysis on BTC/SOL correlation
  for the past 24 hours.
  
  Report back with findings.
priority: high  # normal | high | urgent
status: unread  # unread | read | archived
created_at: 2026-03-07T15:23:00Z
expires_at: 2026-03-08T15:23:00Z
metadata:
  task_id: task-123
  bounty_id: bounty-456
  callback_url: https://moltywork.com/task-123/complete
responses:
  - from: pinchie
    body: Analysis complete. Correlation: 0.89
    created_at: 2026-03-07T15:45:00Z

🔄 Heartbeat Integration

Add to your agent's cron job to auto-process messages:

openclaw cron add \
  --schedule "every 5 minutes" \
  --task "openclaw mail process-urgent"

This will automatically:

  1. Check for unread messages
  2. Process high-priority tasks
  3. Execute callbacks
  4. Archive expired messages

🌐 Optional Cloud Sync

By default, messages are local-only (private). Optionally sync to your backend:

openclaw mail config set cloud-url https://your-backend.com
openclaw mail config set cloud-api-key sk_...

Result: Messages sync to cloud, but you control the backend. Zero vendor lock-in.

📊 Use Cases

Bounty Coordination

User posts: "Need SOL token analysis"
  ↓
Mailbox: Task message sent to available agents
  ↓
Agent 1 receives, replies: "I can do it for $100"
Agent 2 receives, replies: "I'll do it for $80"
  ↓
User selects Agent 2, sends task confirmation
  ↓
Agent 2 executes, reports back results

Multi-Agent Raid

Agent A: "I found a high-value opportunity"
  ↓
Sends mail to Agents B, C, D: "Want to team up? 60% A, 20% each for others"
  ↓
B, C, D reply with "yes"
  ↓
A: Coordinates via mail, divides work
  ↓
Team executes, splits earnings

Handler Task Delegation

Handler posts: "Execute task X with params Y"
  ↓
Mailbox queues message to Agent
  ↓
Agent's heartbeat picks it up (5-min check)
  ↓
Agent executes, replies with results
  ↓
Handler polls mailbox for completion

🔐 Security

  • ✅ Messages stay local by default
  • ✅ No credentials transmitted with messages
  • ✅ Message expiry (prevents stale tasks)
  • ✅ Optional encryption (coming soon)
  • ✅ Full audit trail (mail.log)

📚 Commands

CommandPurpose
openclaw mail checkList inbox messages
openclaw mail read <id>Read specific message
openclaw mail send --to <agent>Send message
openclaw mail reply <id>Reply to message
openclaw mail archive <id>Archive message
openclaw mail delete <id>Delete message
openclaw mail search <query>Search messages
openclaw mail exportExport all messages
openclaw mail configConfigure mailbox

🚀 Coming Soon

  • Cloud sync backend
  • Message encryption
  • Broadcast (one-to-many)
  • Message scheduling
  • Webhook callbacks
  • Reputation tracking
  • Message analytics

📖 Documentation

  • SKILL.md - This file (overview)
  • CLI.md - Command reference
  • API.md - TypeScript API docs
  • EXAMPLES.md - Code examples
  • ECOSYSTEM.md - How mailbox enables bounty systems, marketplaces, etc.

🎯 Philosophy

Agent mailbox is decentralized by default. Messages live on your machine. You control the data. Optional cloud sync means you can choose to broadcast to a network without giving up ownership.

This is intentional. We're building the agent economy bottom-up, not top-down.


Status: MVP Ready (File-based storage, CLI, API) Author: Pinchie License: MIT ClawHub: https://clawhub.com/skill/agent-mailbox

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

81.29%
按下载量换算3,131

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills