Coordinate a BWOC agent fleet from the Cursor editor.
List and inspect agents, delegate or run headless tasks, manage Saṅgha teams and their
shared task list, and read workspace deep-memory — all by wrapping the bwoc CLI, in
Cursor's native plugin format (rules + skills + commands + sub-agents).
Clone into your local Cursor plugins directory — Cursor picks it up immediately:
git clone https://github.com/bemindlabs/bwoc-plugin-cursor \
~/.cursor/plugins/local/bwocThe bwoc-fleet rule, the /bwoc-* commands, and the bwoc-fleet skill become available
in any workspace that hosts a BWOC fleet (a .bwoc/agents.toml, or BWOC_WORKSPACE set).
For a Claude Code build see
bwoc-plugin-claude; for a universal one-install-everywhere build (Codex / Copilot / Grok / Cursor / Claude) seebwoc-plugin-vercel. This repo is the Cursor-native adapter, in the officialcursor/pluginsformat.
| Component | Description |
|---|---|
bwoc-fleet rule |
Agent-Requested context teaching Cursor to drive the fleet via the bwoc CLI |
| 8 slash commands | /bwoc-list · -status · -send · -run · -chat · -team · -task · -memory |
bwoc-fleet skill |
On-demand deep guidance for fleet coordination |
| Local sub-agents | Generate native @agent-<id> delegates from your fleet (gitignored) |
/bwoc-list # who's in the fleet
/bwoc-status --all # health + identity of every agent
/bwoc-run researcher "summarize the latest deploy logs"
/bwoc-send ops "rotate the staging token when you get a sec"
/bwoc-team list # Saṅgha teams + shared task lists
/bwoc-memory search "release" # recall stored workspace context
Every command is a thin wrapper over the bwoc CLI — no server or daemon. Read-only verbs
(list, status, *-list, memory show/search) are safe to run anytime; treat send,
run, task/team mutations, and memory put/rm as mutating.
BWOC_WORKSPACE=/path/to/your/workspace npm run gen-agentsWrites one delegator per active agent into agents/ (gitignored). Cursor then exposes
your fleet as first-class @agent-<id> delegates.
npm run validate # structural smoke test
npm test # alias for validateThe manifest is .cursor-plugin/plugin.json (source of truth). The rule lives in
rules/, commands in commands/, the skill in skills/bwoc-fleet/.
- The
bwocCLI on yourPATH - Cursor 2.5+ (plugin support)
- Node.js 18+ (for the validate / gen scripts)
MIT © 2026 Bemind Technology