A disciplined swarm of role-based agents, deliberative panels, and adversarial validation gates that drive features, bug fixes, or refactors through a robust spec → plan → execute → audit → commit lifecycle.
This repository is optimized for Google Antigravity CLI (AGY CLI), providing native roles, workflows, tool specifications, and output files.
📖 See agents/README.md for the complete reference.
Antigravity CLI discovers custom agents as directories, each named after the agent and containing a single agent.md file (whose body acts as the system prompt and frontmatter specifies available tools). You can install the swarm agents globally or workspace-locally.
This method installs the roles globally in AGY CLI, making them available across all of your projects:
mkdir -p "$HOME/.gemini/config/agents"
for d in agents/*/; do
name=$(basename "$d")
rm -rf "$HOME/.gemini/config/agents/$name"
cp -R "agents/$name" "$HOME/.gemini/config/agents/$name"
doneImportant
Always copy the entire directory (cp -R), not just individual files. Visual agents (visual-architect, visual-product-owner, etc.) carry bundled assets (such as assets/template.html and references/) that must remain relatively aligned inside their installation directories to prevent rendering errors.
To make the swarm agents available only within a specific project, place them in a .agents/agents subfolder:
mkdir -p ".agents/agents"
cp -R agents/* .agents/agents/📖 See plugins/plan/README.md for details on the skill set.
Skills in AGY CLI are registered via Antigravity plugins. You can install the planning plugins directly into AGY using agy plugin install:
# Install the core planning plugin
agy plugin install plugins/plan
# Install the supervisor orchestrator plugin
agy plugin install plugins/orchestratorOr install the repository plugin bundle directly from GitHub:
agy plugin install https://github.com/ddobrin/plan-skillsExplore the underlying documentation for details on individual roles, lifecycle stages, and deliverables:
- Swarm Agents (AGY CLI): Detailed system prompts, guidelines, and AGY tool specifications are documented in agents/README.md.
- Planning Skills (AGY CLI): Complete guide to skills, artifacts, and lifecycle is documented in plugins/plan/README.md.
- Supervisor Orchestrator Plugin: Documentation for the spec-driven coordinator and validation gates is in plugins/orchestrator/README.md.