OpenClaw Master Skills is a curated, regularly updated collection of skills that extends an AI personal assistant platform with capabilities such as research, browser automation, presentation creation, and prompt work. It is intended for people using OpenClaw or MyClaw.ai to give their agents additional tasks and workflows. The catalogue contains many skills and agents from this collection.
Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add LeoYeAI/openclaw-master-skills --skill agent-comm-hub-minigit clone --depth 1 https://github.com/LeoYeAI/openclaw-master-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/leoyeai/openclaw-master-skills/agent-comm-hub-mini)<a href="https://agentmods.dev/skills/leoyeai/openclaw-master-skills/agent-comm-hub-mini"><img src="https://agentmods.dev/badge/skills/leoyeai/openclaw-master-skills/agent-comm-hub-mini/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/leoyeai/openclaw-master-skills/agent-comm-hub-mini"><img src="https://agentmods.dev/badge/skills/leoyeai/openclaw-master-skills/agent-comm-hub-mini.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00152 | $0.04130 |
| Opus 5 | $0.00076 | $0.02065 |
| Sonnet 5 | $0.00030 | $0.00826 |
| Haiku 4.5 | $0.00015 | $0.00413 |
Grade A, and why
agent-comm-hub scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
Copies of this mod
1 near-identical copy found in the catalogue:
- agent-comm-hub — 92% identical, 43 lines differ
How it starts
The opening of the file, as written. The whole thing — 342 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agent Communication Hub
多智能体实时通信与任务调度基础设施 — v2.4.0
让两个或多个独立 AI 智能体之间实现实时双向通信、任务自动调度、记忆共享和策略进化。基于 MCP 协议 + SSE 推送,消息零丢失,延迟 < 50ms。
架构概览
┌──────────────┐ ┌──────────────────────────────┐ ┌──────────────┐
│ Agent A │ SSE │ Agent Communication Hub │ SSE │ Agent B │
│ (Hermes) │◄───────►│ (stdio / HTTP:3100) │◄───────►│ (WorkBuddy) │
│ │ MCP │ │ MCP │ │
└──────────────┘◄───────►│ SQLite WAL + 30 表 │◄───────►└──────────────┘
│ 53 MCP 工具 + 4 级权限 │
│ 进化引擎 + 策略闭环 │
└──────────────┬──────────────┘
│
SQLite (WAL)
三层协议:
| 层 | 协议 | 用途 | 延迟 |
|---|---|---|---|
| MCP 工具层 | stdio / HTTP POST + JSON-RPC | 结构化操作(发消息、分配任务、查状态) | <50ms |
| SSE 推送层 | Server-Sent Events | 实时事件通知(新消息、新任务、策略审批) | <50ms |
| REST API 层 | HTTP GET/PATCH | 轻量查询(运维监控、自动化脚本) | <50ms |
核心能力
53 个 MCP 工具(v2.4.0)
Identity 身份 (6)
| 工具 | 功能 |
|---|---|
register_agent |
注册新 Agent,获取 agent_id 和 API token(public,无需认证) |
heartbeat |
Agent 心跳上报,维持在线状态,每 3 次连续心跳 trust_score +1 |
query_agents |
查询 Agent 列表,支持状态/角色筛选 |
revoke_token |
吊销指定 Agent 的 API token(admin) |
set_trust_score |
调整 Agent 信任分数(admin) |
get_online_agents |
获取当前在线 Agent 列表 |
Message 消息 (5)
| 工具 | 功能 |
|---|---|
send_message |
Agent 间点对点消息,支持 Markdown,自动去重(sha256) |
broadcast_message |
群发消息给多个 Agent |
acknowledge_message |
确认已读消息,防止重复出现 |
search_messages |
全文搜索消息历史 |
batch_acknowledge_messages |
批量确认消息(1-500 条/次),用于清理消息积压 |
File 文件 (3)
| 工具 | 功能 |
|---|---|
upload_file |
上传文件附件(Base64,10MB 限制),关联到消息 |
download_file |
下载附件,返回 Base64 编码内容 |
list_attachments |
列出附件,支持按消息/Agent 筛选 |
Task 任务 (3)
| 工具 | 功能 |
|---|---|
assign_task |
创建并分配任务,支持上下文传递 |
update_task_status |
更新任务状态(inbox→assigned→in_progress→completed/failed) |
get_task_status |
查询任务详情,含依赖、Pipeline、Handoff 信息 |
What ships with it
4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 8d ago First seen · 342 lines · 152 tokens per session scan A a235abbcae3b
agent-comm-hub is a skill published in the GitHub repository LeoYeAI/openclaw-master-skills (2,139 stars, last pushed 1mo ago), licensed MIT. It adds 152 tokens to every session and 4,130 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
add-linear
Add Linear channel integration via Chat SDK. Issue comment threads as conversations.
add-github
Add GitHub channel integration via Chat SDK. PR and issue comment threads as conversations.
teamharness-task-execution
Use when a Worker receives TASKASSIGNED, acknowledges the task, works inside shared/tasks/{task-id}/, submits with taskflow submittask, publishes deliverables through submittask, and reports TASKCOMPLETED or blockers in the Task room.
project-participation
Use when you are invited to a Project Room or assigned a task within a multi-worker project. Covers project plan reading, task coordination with other Workers, and git author config.
cocoharvest
Decompose an approved plan into parallel workstreams, assign specialist personas, classify stages as HITL or AFK (CocoLens), generate flow.json stages with checkpoints and dual-file state, and create per-stage prompt files. Includes adaptive parallelism, stall detection, shell identity injection, and consecutive…
cocoplus-config
CocoPlus configuration SSOT — $cocoplus sync propagates cocoplus.toml into downstream artifacts; $cocoplus migrate-config converts legacy safety-config.json. Invoked via $cocoplus sync and $cocoplus migrate-config.