Agent communication
The control plane for AI coding agents.
npx -y skills add codeaholicguy/ai-devkit --skill agent-communicationAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
What its author says it does
Copied from the file, not written here
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.
SKILL.md
1.3 KB, as published. Nobody here has run it
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.