Agent Skills
› codeaholicguy/ai-devkit
› agent-communication
agent-communication
GitHub用于发现、查看上下文及向活跃的 AI Agent(如 Codex、Claude Code)发送或请求信息。支持列表查询、详情读取、消息发送及等待回复,实现多 Agent 间的信息交换与协作。
Trigger Scenarios
需要查找当前活跃的 AI Agent
需要获取其他 Agent 的近期上下文
需要向其他 Agent 发送消息或指令
需要从其他 Agent 请求信息
Install
npx skills add codeaholicguy/ai-devkit --skill agent-communication -g -y
SKILL.md
Frontmatter
{
"name": "agent-communication",
"description": "AI DevKit · Exchange information with active Codex, Claude Code, and other AI agents using ai-devkit agent list, detail, and send. Use when an agent needs to find another active agent, read its recent context, send it information, or request information back."
}
Agent Communication
Use ai-devkit agent ... to discover and communicate with active agents. If ai-devkit is not on PATH, use npx ai-devkit@latest agent ....
Commands
ai-devkit agent list --json
ai-devkit agent detail --id <agent-name> --json --tail 20
ai-devkit agent send --id <agent-name> "<message>"
ai-devkit agent send --id <agent-name> --wait --timeout 120000 --json "<message>"
<command> 2>&1 | ai-devkit agent send --id <agent-name> --stdin
Notes
list --jsonreturns active agents with fields such asname,type,status,summary,projectPath, andlastActive.- Use the
namefromlist --jsonas--id. Partial matches are supported, but exact names are safer. - Use
detail --json --tail <n>to read recent context from an agent before deciding what to send. send --waitwaits for a reply; add--jsonwhen the response should be machine-readable.send --stdinforwards piped command output or larger text.
Version History
- d4caf56 Current 2026-07-05 15:22


