Help us improve
Share bugs, ideas, or general feedback.
From ai-devkit
Discovers and communicates with active AI agents (Codex, Claude Code) using ai-devkit agent list, detail, and send commands. Useful for inter-agent coordination.
npx claudepluginhub codeaholicguy/ai-devkitHow this skill is triggered — by the user, by Claude, or both
Slash command
/ai-devkit:agent-communicationThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use `ai-devkit agent ...` to discover and communicate with active agents. If `ai-devkit` is not on PATH, use `npx ai-devkit@latest agent ...`.
Proactively orchestrates AI agents: scans statuses, assesses progress, sends instructions, and coordinates multi-agent workflows until completion.
Create custom agents for Claude Code including YAML frontmatter, system prompts, tool restrictions, and discovery optimization. Use when creating, building, or designing agents, or when asked about agent creation, subagent configuration, Task tool delegation, or agent best practices.
Guides creation and configuration of autonomous agents for Claude Code plugins, covering frontmatter, triggering descriptions, system prompts, tools, teams, permissions, and best practices.
Share bugs, ideas, or general feedback.
Use ai-devkit agent ... to discover and communicate with active agents. If ai-devkit is not on PATH, use npx ai-devkit@latest agent ....
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
list --json returns active agents with fields such as name, type, status, summary, projectPath, and lastActive.name from list --json as --id. Partial matches are supported, but exact names are safer.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.