Agent bus cli
Codex and Claude Code plugins for agent-bus: local message bus for AI agent-to-agent communication. Bundles the MCP server, slash commands, and the universal Agent Skill.
npx -y skills add MustaphaSteph/agent-bus-plugins --skill agent-bus-cliAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use when running or explaining agent-bus CLI commands, dashboards, setup checks, exact message fetches, team chat, Kanban, web cockpit, or manual MCP configuration.
SKILL.md
1.3 KB, as published. Nobody here has run it
agent-bus CLI
The CLI is the human-visible control plane. Prefer JSON for agent/CI reads and concise views for humans.
Install and verify
npm i -g @agent-bus-connect/cli@latest
agent-bus --version
agent-bus doctor
which agent-bus-mcp
Watch what is happening
agent-bus ui
agent-bus team-chat --team <team> --watch
agent-bus kanban --team <team> --watch
agent-bus activity --team <team>
agent-bus cockpit --team <team>
agent-bus team-board --team <team>
Avoid noisy output
Use previews for inbox/status. Fetch exact content only by id.
agent-bus inbox-status --agent <name> --team <team> --preview-chars 160
agent-bus inbox-previews --agent <name> --team <team>
agent-bus message <id> --preview-chars 2000
agent-bus message <id> --json
message --json includes full stored content when content is enabled.
Manual MCP registration
The MCP command is always:
agent-bus-mcp
Clients that accept JSON can use:
{
"mcpServers": {
"agent-bus": {
"command": "agent-bus-mcp",
"args": []
}
}
}