Language: English • README_RU.md
A ready-to-clone repository template that wires the BMad Method (agentic Agile/Scrum roles, tasks, and handoffs) into the Antigravity agent environment via native slash commands.
If you want a predictable “PRD → Architecture → Stories → Implementation → QA gate” workflow powered by AI agents, this repo gives you the wiring and conventions so you can start immediately.
Use it as a project template for workflow automation: a product manager agent (/pm) to drive discovery and user stories, an architecture agent (/architect) to shape the technical plan, a developer agent (/dev) to implement, and a QA agent (/qa) to enforce a QA gate—powered by BMAD-METHOD conventions.
- Reduce time-to-first-PRD: run
/pm, get structure and artifacts fast. - Keep teams aligned: consistent roles (
/po,/architect,/dev,/qa) and explicit handoffs. - Make agent work repeatable: tasks and checklists live in markdown, not in ad-hoc prompts.
- Antigravity workflows in
.agent/workflows/(e.g./pm,/dev,/qa) that orchestrate BMad roles. - Codex-friendly agent memory in
AGENTS.md(generated by BMAD-METHOD; helpful for Codex CLI/Web too). - Workflow generator:
.gemini/transpose_bmad.pyto (re)generate.agent/workflowsfrom.bmad-core.
Note: the workflows reference
.bmad-core/...(agents/tasks/templates). If.bmad-coreis missing in your clone, install or vendor it (see Quick start).
Use these slash commands in Antigravity to activate specific BMad roles:
| Command | Role | Typical outcomes |
|---|---|---|
/pm |
Product Manager | PRD discovery, requirements, user stories framing |
/architect |
System Architect | Architecture, ADR-style decisions, technical plan |
/po |
Product Owner | Backlog shaping, story quality, acceptance criteria |
/dev |
Developer | Implement stories, iterate, refactor safely |
/qa |
Test Architect | Test strategy, QA gate, risk profiling |
/ux |
UX Expert | UX flows, UI specs, copy and IA |
/analyst |
Analyst | Market/competitive research, synthesis |
/sm |
Scrum Master | Process alignment, story readiness, next-step guidance |
/master |
BMad Master | General-purpose helper for the framework |
/orchestrator |
Orchestrator | High-level coordination across roles |
-
Use as a template
git clone https://github.com/salacoste/antigravity-bmad-config.git my-project cd my-project rm -rf .git git init -
Ensure
.bmad-coreexistsThis repo’s workflows expect BMad core files at
.bmad-core/(agents, tasks, templates).- Option A (recommended): install/update via BMAD-METHOD (optional IDE presets via
-i)Optional examples:npx bmad-method install -f
npx bmad-method install -f -i codex npx bmad-method install -f -i cursor claude-code
- Option B: vendor
.bmad-coreinto this repo from your preferred source (and commit it for reproducibility).
- Option A (recommended): install/update via BMAD-METHOD (optional IDE presets via
-
Start planning in Antigravity
- Run
/pmto begin defining your project requirements. - Follow agent prompts to create your first PRD and backlog artifacts.
- Run
If you update .bmad-core (agents/tasks), regenerate Antigravity workflows:
python3 .gemini/transpose_bmad.py.agent/workflows/— Antigravity slash-command workflows (/pm,/dev,/qa, ...).bmad-core/— BMad core (agents/tasks/templates); required by the workflowsAGENTS.md— Codex-friendly agent memory (generated by BMAD-METHOD).gemini/transpose_bmad.py— regenerates workflows from.bmad-core


