Agent bus workflows
Skill MustaphaSteph/agent-bus-plugins/skills/agent-bus-workflows
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-workflowsAssembled 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 planning or enforcing agent-bus software-team workflows: backlog, Kanban, memory loop, verifier gate, task ownership, review approvals, and final merge reports.
SKILL.md
1.4 KB, as published. Nobody here has run it
agent-bus workflows
Use this when the user wants agent-bus to behave like a software team, not just a mailbox.
Backlog and Kanban
Capture ideas as backlog tasks. Promote only when the team is ready.
Typical flow:
backlog -> todo/open -> accepted/claimed -> doing/working
-> testing -> review -> done/completed
The CLI board:
agent-bus backlog --team <team>
agent-bus kanban --team <team> --watch
agent-bus done --team <team>
Loop memory pattern
Agents should write durable memory for:
- decisions
- current risks
- done work
- next actions
- handoff notes
Pin only durable handoffs/risks/facts that should survive session compaction or tomorrow's restart.
Verifier gate
For implementation tasks, "done" requires:
- implementation done
- test evidence recorded
- reviewer/verifier approved if required
- final report says safe
Use independent review when the implementer should not self-approve.
Conflict protection
Assign edit scopes before editing. Broad review/read scopes should not create edit conflicts. If two agents need the same file, one owns the edit task and the other reviews.