BWOC → Antigravity plugin adapter — bring the BWOC agent fleet into Google Antigravity.
bwoc-plugin-agy packages the BWOC agent fleet as a Google Antigravity plugin — skills, rules, hooks, and (optionally) MCP servers that let Antigravity's agent drive your BWOC workspace: list agents, send work, run headless tasks, coordinate teams, and read shared memory.
It is declarative + shell-out: every skill wraps the bwoc CLI. No background server, no daemon.
Note
Status: WIP. Coordination skills, a delegation rule, hooks, and skill re-export are implemented and wrap the bwoc CLI. Remaining: a host smoke-test — see the roadmap.
| Surface | BWOC capability | Wraps |
|---|---|---|
| Skills | Coordinate the fleet | bwoc list · status · send · run · chat · task · team |
| Rules | Always-on guidance | how/when to delegate to the fleet |
| Skills | Reuse BWOC skills | BWOC skills re-exported as skills/<name>/SKILL.md |
| Memory | Shared deep-memory | bwoc memory bridge |
Antigravity ──skill──▶ skill instructions ──exec──▶ bwoc CLI ──▶ BWOC workspace
(agents, teams,
tasks, memory)
Every surface is a thin wrapper over a bwoc subcommand. Works in both the Antigravity IDE and CLI.
- Google Antigravity (IDE or CLI)
- The
bwocCLI installed and onPATH - 📚 Reference: the BWOC Handbook
- A BWOC workspace (
bwoc init) reachable from where Antigravity runs
Antigravity loads plugins from a plugin.json-marked directory. Drop this repo in at workspace or global scope:
# workspace scope
git clone https://github.com/bemindlabs/bwoc-plugin-agy .agents/plugins/bwoc
# global scope
git clone https://github.com/bemindlabs/bwoc-plugin-agy ~/.gemini/config/plugins/bwoc"List the BWOC agents" # routed via the bwoc skill
"Send <agent> a task to build X" # bwoc send
"Run <agent> headless and report" # bwoc run
bwoc-plugin-agy/
├── plugin.json # marker manifest (name optional; defaults to dir)
├── skills/ # skills wrapping `bwoc` (skills/<name>/SKILL.md)
├── rules/ # always-on rules (rules/<name>.md)
├── mcp_config.json # optional MCP server definitions
├── hooks.json # optional hooks
└── scripts/ # validate.sh / build.sh
bash scripts/validate.sh # validate plugin.json
bash scripts/build.sh # regenerate the host tree from the live workspace
prettier --check . # lint- Scaffold: manifest, README, license
- Coordination skills (
list/status/send/run/chat/task/team) - Delegation rule (
rules/bwoc-delegation.md) - Deep-memory skill
- Skill re-export from BWOC skills (scripts/sync-skills.sh)
- Smoke test in Antigravity IDE + CLI
One of seven BWOC → host adapters, one per agent host:
| Host | Repo |
|---|---|
| Claude Code | bwoc-plugin-claude |
| OpenAI Codex | bwoc-plugin-codex |
| Antigravity | bwoc-plugin-agy |
| OpenClaw | bwoc-plugin-openclaw |
| Hermes | bwoc-plugin-hermes |
| Cursor | bwoc-plugin-cursor |
| Vercel | bwoc-plugin-vercel |
Maintained by Bemind Technology, part of the BWOC host-adapter set. This connector is generic: it ships no agents, teams, or workspace identities of its own — it discovers your fleet from the local bwoc workspace at runtime.
Issues and PRs welcome. Keep the plugin a thin wrapper over the bwoc CLI — logic belongs in the framework, not here.
MIT © Bemind Technology