peer-status
Query peer agent status and send cross-agent messages via Gateway. Use peer-status to check availability, peer-send to communicate.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Query peer agent status and send cross-agent messages via Gateway. Use peer-status to check availability, peer-send to communicate.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
文档处理技能 - 让 AI 能够读取、解析、提取 PDF、DOCX、PPT 等文档的关键信息。当用户要求分析文档、提取内容、总结报告时触发此技能。
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when building web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
微信公众号监控 - 文章监控、阅读量追踪、舆情分析(WeChat Official Account)
SOC 職業分類に基づく
| name | peer-status |
| description | Query peer agent status and send cross-agent messages via Gateway. Use peer-status to check availability, peer-send to communicate. |
This skill provides two capabilities for inter-agent collaboration:
Check which peers are available before initiating collaboration.
node skills/peer-status/scripts/peer-status.mjs --agent-id <your-agent-id>
JSON array printed to stdout:
[
{ "id": "novel-researcher", "name": "Novel Researcher", "status": "busy", "updatedAt": "2026-02-26T14:30:00.000Z" },
{ "id": "worldbuilder", "name": "Worldbuilder", "status": "online", "updatedAt": null }
]
Status values:
busy — Agent has session activity within the last 5 minutesonline — Agent is registered but not recently activeSend a message to a peer agent and optionally wait for their reply.
# Sync mode (default): wait for peer's reply
node skills/peer-status/scripts/peer-send.mjs --from <your-id> --to <peer-id> --message "your message"
# Async mode: send and exit immediately
node skills/peer-status/scripts/peer-send.mjs --from <your-id> --to <peer-id> --message "your message" --no-wait
# Custom timeout (default 120s)
node skills/peer-status/scripts/peer-send.mjs --from <your-id> --to <peer-id> --message "your message" --timeout 180
| Parameter | Required | Description |
|---|---|---|
--from | Yes | Your agent ID |
--to | Yes | Target peer agent ID (must be in your peers list) |
--message | Yes | Message text to send |
--no-wait | No | Don't wait for reply, exit after send confirmation |
--timeout | No | Max wait time in seconds (default: 120) |
Sync mode: Peer's reply text is printed to stdout.
Async mode: JSON confirmation:
{"ok":true,"sessionKey":"agent:peer-id:main","idempotencyKey":"..."}
The script validates that --to is in --from's peers list (from agent.json). Attempting to message a non-peer agent will fail with exit code 1.
sessions_send to message other agents — it is blocked by visibility="agent"sessions_list to check peer status — use peer-status script insteadsessions_history to read other agents' conversations — privacy violationpeer-send scriptsessions_send is only for your own sub-sessions (spawned via sessions_spawn)