Antigravity
Enterprise-Grade AI Agent Standards & Workflows
Interactive CLI β’ Auto-Updates β’ Enterprise Ready
AG Core injects a "Senior Architect" persona into your AI workflow.
Run the npx command to scaffold the
.agent folder in your project root.
Start chat with "Xin chΓ o ag-core" to load rules & skills.
Use slash commands like /plan or
/review to orchestrate work.
Standardized processes to govern the software lifecycle.
| Command | Action | Description |
|---|---|---|
/plan |
Create Plan |
Generates a detailed
implementation_plan.md and analyzes
requirements.
|
/fix |
Fix Code | Analyzes and fixes code issues against strict standards. |
/review |
Code Review |
Runs checklist.py to audit
Security, Complexity, and Style.
|
/commit |
Git Commit | Intelligently stages and commits changes with Conventional Messages. |
/test |
Gen Tests |
Generates robust unit tests using
pytest or jest.
|
/doc |
Document | Generates concise, one-line docstrings for functions/classes. |
Plug-and-play capabilities that extend the agent's power.
Built-in checklist.py scans for:
Smart wrapper for git operations:
Safety-first modification:
Enterprise-grade rules enforced by default. View Full Documentation β
any types alloweddef calculate_metrics(data: List[int]) -> float:
"""Calculates core metrics compliant with SOLID principles."""
# β
No Local Imports (Import at top)
# β
Type Hints Required
# β
No Magic Numbers
scale_factor = Constants.SCALE_FACTOR
if not data:
return 0.0
return sum(data) * scale_factor