A comprehensive agentic workflow system for Google Deepmind's Antigravity AI coding assistant
Transform how you build software with structured, repeatable AI-assisted workflows
This project is a fork and adaptation of the excellent Agent OS created by Builder Methods.
| Original Project | buildermethods/agent-os |
| Original Website | buildermethods.com/agent-os |
| This Fork | ellfarnaz/antigravity-agent-os |
π‘ What's different? This fork has been adapted specifically for Google Deepmind's Antigravity AI coding assistant with global installation support, updated directory structures, and enhanced documentation.
Agent OS is a structured workflow system that transforms how you interact with AI coding assistants. Instead of ad-hoc prompting, you get:
- π Predefined Workflows - Battle-tested processes for common development tasks
- π€ Specialized Agents - Role-specific AI personas for different aspects of development
- π Coding Standards - Consistent code quality across all outputs
- π Organized Artifacts - Structured output with specs, tasks, and documentation
Traditional AI Coding vs Agent OS
ββββββββββββββββββββββββββββββββββββββββββββββββββββ
"Build me a login feature" β /plan-product β /write-spec β /create-tasks β /implement-tasks
Unpredictable results β Consistent, documented output
No process β Structured workflow
Variable quality β Standards-enforced code
git clone https://github.com/ellfarnaz/antigravity-agent-os.git
cd antigravity-agent-oscd .agent
./install-to-antigravity.shThis will:
- β
Sync all workflows to
~/.gemini/antigravity/ - β
Update global rules in
~/.gemini/GEMINI.md - β Make workflows available in ALL projects
/plan-product β Product planning & roadmap
/write-spec β Write feature specification
/shape-spec β Refine existing spec
/create-tasks β Create task breakdown
/implement-tasks β Implement code
/orchestrate-tasks β Multi-phase implementation
Workflows are now available globally in Antigravity.
|
|
| Category | Count | Description |
|---|---|---|
| Global | 6 | Coding style, commenting, error handling, validation |
| Frontend | 4 | Accessibility, components, CSS, responsive design |
| Backend | 4 | API design, migrations, models, queries |
| Testing | 1 | Test writing guidelines |
| Combined | 1 | All global standards merged |
antigravity-agent-os/
β
βββ README.md β You are here
βββ rules.md β Agent workflow rules
β
βββ π docs/ β All documentation
β βββ DOCS_INDEX.md β Master documentation index β
β βββ INTEGRATION_GUIDE.md
β βββ INSTALL_SCRIPT_GUIDE.md
β βββ QUICK_REFERENCE.md
β βββ ... (more docs)
β
βββ π images/ β Visual diagrams
β
βββ π .agent/ β π₯ Core System (syncs to Antigravity)
βββ install-to-antigravity.sh β Installer script
βββ AGENT_SYSTEM_README.md
βββ π workflows/ β 6 main workflows
βββ π agents/ β 8 agent definitions
βββ π details-workflows/ β 15 detail workflows
βββ π commands-workflows/ β 23 command variants
βββ π standards/ β 16 coding standards
flowchart TD
subgraph SOURCE["π Source: .agent/"]
W[workflows/]
A[agents/]
D[details-workflows/]
CMD[commands-workflows/]
S[standards/]
end
SCRIPT["π§ install-to-antigravity.sh"]
subgraph TARGET["π Target: ~/.gemini/antigravity/"]
GW[global_workflows/]
GA[global_agents/]
GD[global_details_workflows/]
GCMD[global_commands_workflows/]
GS[global_standards/]
end
W --> SCRIPT
A --> SCRIPT
D --> SCRIPT
CMD --> SCRIPT
S --> SCRIPT
SCRIPT --> GW
SCRIPT --> GA
SCRIPT --> GD
SCRIPT --> GCMD
SCRIPT --> GS
flowchart LR
subgraph USER["π§βπ» User"]
U1["Types /plan-product"]
end
subgraph ENGINE["βοΈ Antigravity Engine"]
L1["Load Workflow"]
L2["Load Details"]
L3["Load Commands"]
L4["Load Agent"]
L5["Apply Standards"]
end
subgraph OUTPUT["π Output"]
O1["mission.md"]
O2["roadmap.md"]
O3["tech-stack.md"]
end
U1 --> L1
L1 --> L2
L2 --> L3
L3 --> L4
L4 --> L5
L5 --> O1
L5 --> O2
L5 --> O3
1. User types: /plan-product
β
2. Load workflow from: global_workflows/plan-product.md
β
3. Load details from: global_details_workflows/planning/
β
4. Load commands from: global_commands_workflows/plan-product/
β
5. Use agent from: global_agents/product-planner.md
β
6. Apply standards from: global_standards/
β
7. Generate output in project: .agent/product/
All documentation is in the docs/ folder:
| Document | Description |
|---|---|
| DOCS_INDEX.md | π Master documentation index |
| INTEGRATION_GUIDE.md | How to integrate with Antigravity |
| INSTALL_SCRIPT_GUIDE.md | Detailed install script docs |
| QUICK_REFERENCE.md | Quick command lookup |
| VISUAL_FLOWS.md | Visual flow diagrams |
- Antigravity AI coding assistant by Google Deepmind
- macOS/Linux (or WSL on Windows)
- bash shell
Workflows not recognized?
# Re-run install script
cd .agent && ./install-to-antigravity.shStandards not applied?
# Check GEMINI.md was updated
grep "AGENT SYSTEM" ~/.gemini/GEMINI.mdVerify installation?
# Check file count
find ~/.gemini/antigravity -name "*.md" | wc -l
# Should show: 68+ files
# List workflows
ls ~/.gemini/antigravity/global_workflows/
# Should show 6 workflow files| Benefit | Description |
|---|---|
| β Consistent | Same process every time |
| β Predictable | Know what to expect |
| β Standards-Compliant | Code quality enforced |
| β Global | Works in any project |
| β Documented | Complete documentation |
| β Maintainable | Easy to update and extend |
Contributions are welcome! Feel free to:
- Fork this repository
- Create a feature branch
- Make your changes
- Submit a pull request
This project is open source and available under the MIT License.
| Original Agent OS | buildermethods/agent-os |
| Builder Methods | buildermethods.com |
| This Repository | ellfarnaz/antigravity-agent-os |
Ready to use! Open any project, type /plan-product, and see the magic happen. β¨
Made with β€οΈ for the AI-assisted development community
Version: 1.0 | Last Updated: 2025-12-22 | Status: Production Ready