Agent skill · AI & Agents

agent-communication

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.

Hoang Nguyen1,568★ · +5/wk · 1 repos on radarProfile →
claude-codecodexcursor
Install
npx skills add codeaholicguy/ai-devkit --skill agent-communication --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 1 KB
Bundled scripts: none
Path: skills/agent-communication/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,572 · +4 this week
Language: TypeScript
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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 ```bash 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 --json` returns active agents with fields such as `name`, `type`, `status`, `summary`, `projectPath`, and `lastActive`. - Use the `name` from `list --json` as `--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 --wait` waits for a reply; add `--json` when the response should be machine-readable. - `send --stdin` forwards piped command output or larger text.

What's inside
Steps it walks through
  1. Commands
  2. Notes
Ships with 1 file
  • agents/openai.yaml
Commands it runs
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>"
More from ai-devkit
All skills →
About this skill
What does the agent-communication skill do?

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.

How do I install it?

Run `npx skills add codeaholicguy/ai-devkit --skill agent-communication --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From codeaholicguy/ai-devkit, a repository with 1,572 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going