antigravity-ai-kit 2.1.0 → 3.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (114) hide show
  1. package/.agent/README.md +4 -4
  2. package/.agent/agents/README.md +16 -12
  3. package/.agent/agents/architect.md +1 -0
  4. package/.agent/agents/backend-specialist.md +11 -0
  5. package/.agent/agents/code-reviewer.md +1 -0
  6. package/.agent/agents/database-architect.md +11 -0
  7. package/.agent/agents/devops-engineer.md +11 -0
  8. package/.agent/agents/e2e-runner.md +1 -0
  9. package/.agent/agents/explorer-agent.md +11 -0
  10. package/.agent/agents/frontend-specialist.md +11 -0
  11. package/.agent/agents/mobile-developer.md +11 -0
  12. package/.agent/agents/performance-optimizer.md +11 -0
  13. package/.agent/agents/planner.md +1 -0
  14. package/.agent/agents/refactor-cleaner.md +1 -0
  15. package/.agent/agents/reliability-engineer.md +11 -0
  16. package/.agent/agents/security-reviewer.md +1 -0
  17. package/.agent/agents/sprint-orchestrator.md +10 -0
  18. package/.agent/agents/tdd-guide.md +1 -0
  19. package/.agent/commands/code-review.md +1 -0
  20. package/.agent/commands/debug.md +1 -0
  21. package/.agent/commands/deploy.md +1 -0
  22. package/.agent/commands/help.md +252 -31
  23. package/.agent/commands/plan.md +1 -0
  24. package/.agent/commands/status.md +1 -0
  25. package/.agent/commands/tdd.md +1 -0
  26. package/.agent/contexts/brainstorm.md +26 -0
  27. package/.agent/contexts/debug.md +28 -0
  28. package/.agent/contexts/implement.md +29 -0
  29. package/.agent/contexts/review.md +27 -0
  30. package/.agent/contexts/ship.md +28 -0
  31. package/.agent/engine/identity.json +13 -0
  32. package/.agent/engine/loading-rules.json +23 -1
  33. package/.agent/engine/marketplace-index.json +29 -0
  34. package/.agent/engine/reliability-config.json +14 -0
  35. package/.agent/engine/sdlc-map.json +44 -0
  36. package/.agent/engine/workflow-state.json +28 -2
  37. package/.agent/hooks/hooks.json +27 -25
  38. package/.agent/manifest.json +12 -4
  39. package/.agent/rules.md +2 -1
  40. package/.agent/skills/README.md +10 -5
  41. package/.agent/skills/i18n-localization/SKILL.md +191 -0
  42. package/.agent/skills/mcp-integration/SKILL.md +224 -0
  43. package/.agent/skills/parallel-agents/SKILL.md +1 -1
  44. package/.agent/skills/shell-conventions/SKILL.md +92 -0
  45. package/.agent/skills/ui-ux-pro-max/SKILL.md +557 -0
  46. package/.agent/skills/ui-ux-pro-max/data/charts.csv +26 -0
  47. package/.agent/skills/ui-ux-pro-max/data/colors.csv +97 -0
  48. package/.agent/skills/ui-ux-pro-max/data/icons.csv +101 -0
  49. package/.agent/skills/ui-ux-pro-max/data/landing.csv +31 -0
  50. package/.agent/skills/ui-ux-pro-max/data/products.csv +97 -0
  51. package/.agent/skills/ui-ux-pro-max/data/react-performance.csv +45 -0
  52. package/.agent/skills/ui-ux-pro-max/data/stacks/astro.csv +54 -0
  53. package/.agent/skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
  54. package/.agent/skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
  55. package/.agent/skills/ui-ux-pro-max/data/stacks/jetpack-compose.csv +53 -0
  56. package/.agent/skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
  57. package/.agent/skills/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
  58. package/.agent/skills/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
  59. package/.agent/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
  60. package/.agent/skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
  61. package/.agent/skills/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
  62. package/.agent/skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
  63. package/.agent/skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
  64. package/.agent/skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
  65. package/.agent/skills/ui-ux-pro-max/data/styles.csv +68 -0
  66. package/.agent/skills/ui-ux-pro-max/data/typography.csv +58 -0
  67. package/.agent/skills/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
  68. package/.agent/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
  69. package/.agent/skills/ui-ux-pro-max/data/web-interface.csv +31 -0
  70. package/.agent/skills/ui-ux-pro-max/scripts/core.py +253 -0
  71. package/.agent/skills/ui-ux-pro-max/scripts/design_system.py +1067 -0
  72. package/.agent/skills/ui-ux-pro-max/scripts/search.py +114 -0
  73. package/.agent/templates/adr-template.md +32 -0
  74. package/.agent/templates/bug-report.md +37 -0
  75. package/.agent/templates/feature-request.md +32 -0
  76. package/.agent/workflows/README.md +92 -78
  77. package/.agent/workflows/brainstorm.md +154 -100
  78. package/.agent/workflows/create.md +142 -75
  79. package/.agent/workflows/debug.md +157 -98
  80. package/.agent/workflows/deploy.md +195 -144
  81. package/.agent/workflows/enhance.md +157 -65
  82. package/.agent/workflows/orchestrate.md +171 -114
  83. package/.agent/workflows/plan.md +147 -72
  84. package/.agent/workflows/preview.md +140 -83
  85. package/.agent/workflows/quality-gate.md +196 -0
  86. package/.agent/workflows/retrospective.md +197 -0
  87. package/.agent/workflows/review.md +188 -0
  88. package/.agent/workflows/status.md +142 -91
  89. package/.agent/workflows/test.md +168 -95
  90. package/.agent/workflows/ui-ux-pro-max.md +181 -127
  91. package/README.md +215 -78
  92. package/bin/ag-kit.js +344 -10
  93. package/lib/agent-registry.js +214 -0
  94. package/lib/agent-reputation.js +351 -0
  95. package/lib/cli-commands.js +235 -0
  96. package/lib/conflict-detector.js +245 -0
  97. package/lib/engineering-manager.js +354 -0
  98. package/lib/error-budget.js +294 -0
  99. package/lib/hook-system.js +252 -0
  100. package/lib/identity.js +245 -0
  101. package/lib/loading-engine.js +208 -0
  102. package/lib/marketplace.js +298 -0
  103. package/lib/plugin-system.js +604 -0
  104. package/lib/security-scanner.js +309 -0
  105. package/lib/self-healing.js +434 -0
  106. package/lib/session-manager.js +261 -0
  107. package/lib/skill-sandbox.js +244 -0
  108. package/lib/task-governance.js +523 -0
  109. package/lib/task-model.js +317 -0
  110. package/lib/updater.js +201 -0
  111. package/lib/verify.js +240 -0
  112. package/lib/workflow-engine.js +353 -0
  113. package/lib/workflow-persistence.js +160 -0
  114. package/package.json +7 -3
package/README.md CHANGED
@@ -1,11 +1,13 @@
1
1
  # 🚀 Antigravity AI Kit
2
2
 
3
- ![version](https://img.shields.io/badge/version-2.1.0-blue)
3
+ ![version](https://img.shields.io/badge/version-3.0.0-blue)
4
4
  ![license](https://img.shields.io/badge/license-MIT-green)
5
5
  ![AI Agents](https://img.shields.io/badge/AI%20Agents-19-purple)
6
- ![Skills](https://img.shields.io/badge/Skills-27-orange)
6
+ ![Skills](https://img.shields.io/badge/Skills-31-orange)
7
7
  ![Commands](https://img.shields.io/badge/Commands-31-red)
8
- ![Workflows](https://img.shields.io/badge/Workflows-11-teal)
8
+ ![Workflows](https://img.shields.io/badge/Workflows-14-teal)
9
+ ![Runtime Modules](https://img.shields.io/badge/Runtime%20Modules-21-blueviolet)
10
+ ![Tests](https://img.shields.io/badge/Tests-261%20passing-brightgreen)
9
11
  ![Checklists](https://img.shields.io/badge/Checklists-3-yellow)
10
12
 
11
13
  <p align="center">
@@ -13,16 +15,17 @@
13
15
  </p>
14
16
 
15
17
  <p align="center">
16
- Antigravity AI Kit is a <b>Trust-Grade AI development framework</b> that brings <b>19 specialized agents</b>, <b>31 commands</b>, <b>27 skills</b>, and <b>11 workflows</b> to help you code 10x faster with governance-first principles.
18
+ Antigravity AI Kit is a <b>Trust-Grade AI development framework</b> with a <b>21-module runtime engine</b>, <b>19 specialized agents</b>, <b>31 commands</b>, <b>31 skills</b>, and <b>14 workflows</b> all backed by <b>261 tests</b> and governance-first principles.
17
19
  </p>
18
20
 
19
21
  <p align="center">
20
22
  🚀 <a href="#-quick-start">Quick Start</a> •
21
- 🤖 <a href="#-agents-17">Agents</a> •
22
- 🛠️ <a href="#%EF%B8%8F-skills-26">Skills</a> •
23
+ 🤖 <a href="#-agents-19">Agents</a> •
24
+ 🛠️ <a href="#%EF%B8%8F-skills-31">Skills</a> •
23
25
  ⌨️ <a href="#%EF%B8%8F-commands-31">Commands</a> •
24
26
  🔄 <a href="#-session-management">Sessions</a> •
25
- ⚖️ <a href="#%EF%B8%8F-operating-constraints">Governance</a>
27
+ ⚖️ <a href="#%EF%B8%8F-operating-constraints">Governance</a>
28
+ 📖 <a href="#-contributor-guide">Contributor Guide</a>
26
29
  </p>
27
30
 
28
31
  ---
@@ -33,14 +36,16 @@
33
36
  - [Key Features](#-key-features)
34
37
  - [Quick Start](#-quick-start)
35
38
  - [Architecture](#%EF%B8%8F-architecture-overview)
36
- - [Agents](#-agents-17)
39
+ - [Agents](#-agents-19)
37
40
  - [Commands](#%EF%B8%8F-commands-31)
38
- - [Skills](#%EF%B8%8F-skills-26)
39
- - [Workflows](#-workflows-11)
41
+ - [Skills](#%EF%B8%8F-skills-31)
42
+ - [Runtime Engine](#%EF%B8%8F-runtime-engine-21-modules)
43
+ - [Workflows](#-workflows-14)
40
44
  - [Operating Constraints](#%EF%B8%8F-operating-constraints)
41
45
  - [Session Management](#-session-management)
42
46
  - [How to Extend](#-how-to-extend)
43
- - [Contributing](#-contributing)
47
+ - [Contributor Guide](#-contributor-guide)
48
+ - [Acknowledgments](#-acknowledgments)
44
49
 
45
50
  ---
46
51
 
@@ -51,19 +56,22 @@
51
56
  | Feature | Count | Description |
52
57
  | :---------------- | :---- | :--------------------------------------------------------------------- |
53
58
  | 🤖 **AI Agents** | 19 | Specialized roles (Mobile, DevOps, Database, Security, Performance...) |
54
- | 🛠️ **Skills** | 27 | Domain knowledge modules (API, Testing, Architecture, Docker...) |
59
+ | 🛠️ **Skills** | 31 | Domain knowledge modules (API, Testing, MCP, Architecture, Docker...) |
55
60
  | ⌨️ **Commands** | 31 | Slash commands for every development workflow |
56
- | 🔄 **Workflows** | 11 | Process templates (/create, /debug, /deploy, /test...) |
61
+ | 🔄 **Workflows** | 14 | Process templates (/create, /debug, /deploy, /test...) |
62
+ | ⚙️ **Runtime** | 21 | Runtime engine modules (governance, reputation, self-healing...) |
57
63
  | ✅ **Checklists** | 3 | Quality gates (session-start, session-end, pre-commit) |
58
64
  | ⚖️ **Rules** | 5 | Immutable governance constraints |
59
- | 🔗 **Hooks** | 4 | Event-driven automation |
65
+ | 🔗 **Hooks** | 6 | Event-driven automation (runtime + git-hook enforcement) |
66
+ | 🧪 **Tests** | 261 | Unit, structural, and security tests (25 test files) |
60
67
 
61
68
  ---
62
69
 
63
70
  ## ✨ Key Features
64
71
 
65
72
  - **🔒 Trust-Grade Governance**: `/explore → /plan → /work → /review` — Each iteration builds context
66
- - **🤖 Multi-Agent System**: 17 specialized agents that collaborate (Mobile Developer, DevOps, Database Architect...)
73
+ - **🤖 Multi-Agent System**: 19 specialized agents that collaborate (Mobile Developer, DevOps, Database Architect, Sprint Orchestrator...)
74
+ - **⚙️ Runtime Engine**: 21 modules enforcing workflow transitions, task governance, agent reputation, self-healing, and marketplace
67
75
  - **📦 Context as Artifact**: Persistent markdown files for plans, specs, and decisions
68
76
  - **🔄 Continuous Learning**: PAAL cycle extracts patterns from every session
69
77
  - **🛡️ Security First**: Built-in secret detection, vulnerability scanning, and compliance checks
@@ -76,7 +84,17 @@
76
84
 
77
85
  ## ⚡ Quick Start
78
86
 
79
- ### Option 1: NPX (Recommended)
87
+ ### Option 1: Create New Project (Recommended)
88
+
89
+ ```bash
90
+ npx create-antigravity-app my-project
91
+ npx create-antigravity-app my-api --template node-api
92
+ npx create-antigravity-app my-app --template nextjs
93
+ ```
94
+
95
+ Creates a new project with `.agent/` pre-configured. Templates: `minimal`, `node-api`, `nextjs`.
96
+
97
+ ### Option 2: Add to Existing Project
80
98
 
81
99
  ```bash
82
100
  npx antigravity-ai-kit init
@@ -84,7 +102,7 @@ npx antigravity-ai-kit init
84
102
 
85
103
  This automatically copies the `.agent/` folder to your project.
86
104
 
87
- ### Option 2: Manual Installation
105
+ ### Option 3: Manual Installation
88
106
 
89
107
  ```bash
90
108
  # 1. Clone the repository
@@ -97,56 +115,84 @@ cp -r antigravity-ai-kit/.agent/ your-project/.agent/
97
115
  /status
98
116
  ```
99
117
 
100
- ### Option 3: Direct Download
118
+ That's it! The kit is now active and ready to accelerate your development.
101
119
 
102
- 1. Download the `.agent/` folder from this repository
103
- 2. Place it in your project root
104
- 3. Run `/status` in your AI-powered IDE
120
+ ### Verify Installation
105
121
 
106
- That's it! The kit is now active and ready to accelerate your development.
122
+ ```bash
123
+ ag-kit verify # Manifest integrity check
124
+ ag-kit scan # Security scan
125
+ ```
107
126
 
108
127
  ---
109
128
 
110
129
  ## 🏗️ Architecture Overview
111
130
 
131
+ ```mermaid
132
+ graph TB
133
+ subgraph "User Interface Layer"
134
+ CMD["Slash Commands<br/>31 commands"]
135
+ WF["Workflows<br/>14 templates"]
136
+ end
137
+
138
+ subgraph "Intelligence Layer"
139
+ IR[Intelligent Router]
140
+ WS[Workflow State Machine]
141
+ CB[Context Budget Engine]
142
+ LR[Loading Rules]
143
+ end
144
+
145
+ subgraph "Agent Layer"
146
+ CORE["Core Agents<br/>Planner, Architect, Reviewer"]
147
+ DOMAIN["Domain Agents<br/>Mobile, Frontend, Backend, DB, DevOps"]
148
+ SUPPORT["Support Agents<br/>Security, Perf, Docs, Explorer"]
149
+ AUTO["Autonomy Agents<br/>Sprint Orchestrator, Reliability Engineer"]
150
+ end
151
+
152
+ subgraph "Skill Layer"
153
+ ORCH["Orchestration Skills<br/>Routing, Parallel, Modes"]
154
+ OPER["Operational Skills<br/>Verification, Learning, Budget"]
155
+ DOM["Domain Skills<br/>API, Arch, Testing, Security, MCP"]
156
+ end
157
+
158
+ subgraph "Governance Layer"
159
+ RULES["rules.md<br/>Immutable Constraints"]
160
+ HOOKS["hooks.json<br/>6 Event Hooks"]
161
+ MANIFEST["manifest.json<br/>Integrity Verification"]
162
+ end
163
+
164
+ CMD --> IR
165
+ WF --> WS
166
+ IR --> CORE & DOMAIN & SUPPORT & AUTO
167
+ WS --> IR
168
+ CB --> LR
169
+ LR --> IR
170
+ CORE & DOMAIN & SUPPORT & AUTO --> ORCH & OPER & DOM
171
+ ORCH & OPER & DOM --> RULES & HOOKS & MANIFEST
112
172
  ```
113
- ┌─────────────────────────────────────────────────────────────────────┐
114
- │ ANTIGRAVITY AI KIT v2.0.0 │
115
- ├─────────────────────────────────────────────────────────────────────┤
116
- │ │
117
- │ ┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐ │
118
- │ │ 17 AGENTS │ │ 31 COMMANDS │ │ 26 SKILLS │ │
119
- │ │ │ │ │ │ │ │
120
- │ │ • Architect │ │ • /plan │ │ • api-patterns │ │
121
- │ │ • Mobile Dev │ │ • /implement │ │ • architecture │ │
122
- │ │ • DevOps │ │ • /verify │ │ • clean-code │ │
123
- │ │ • DB Architect │ │ • /deploy │ │ • testing │ │
124
- │ │ • Security │ │ • /debug │ │ • docker │ │
125
- │ │ • + 12 more │ │ • + 26 more │ │ • + 21 more │ │
126
- │ └─────────────────┘ └─────────────────┘ └─────────────────┘ │
127
- │ │ │
128
- │ ┌──────────────────┴──────────────────┐ │
129
- │ ▼ ▼ │
130
- │ ┌─────────────────────────────────────────────────────────┐ │
131
- │ │ 11 WORKFLOWS │ │
132
- │ │ /brainstorm • /create • /debug • /deploy • /enhance │ │
133
- │ │ /orchestrate • /plan • /preview • /test • /status │ │
134
- │ │ /ui-ux-pro-max │ │
135
- │ └─────────────────────────────────────────────────────────┘ │
136
- │ │ │
137
- │ ┌──────────────────┴──────────────────┐ │
138
- │ ▼ ▼ │
139
- │ ┌─────────────────┐ ┌─────────────────┐ │
140
- │ │ RULES │ │ HOOKS │ │
141
- │ │ (Governance) │ │ (Automation) │ │
142
- │ └─────────────────┘ └─────────────────┘ │
143
- │ │
144
- └─────────────────────────────────────────────────────────────────────┘
173
+
174
+ ### How It Works: The Autonomy Engine
175
+
176
+ Antigravity AI Kit uses a **6-phase workflow state machine** that guides development:
177
+
178
+ ```
179
+ EXPLORE → PLAN → IMPLEMENT → VERIFY → REVIEW → DEPLOY
145
180
  ```
146
181
 
182
+ | Phase | What Happens | Transition Guard |
183
+ |:------|:-------------|:-----------------|
184
+ | **EXPLORE** | Codebase discovery, research | Exploration artifact exists |
185
+ | **PLAN** | Implementation plan with user approval | Plan approved by user |
186
+ | **IMPLEMENT** | Code generation with agent routing | Auto on commit |
187
+ | **VERIFY** | Quality gates, tests, lint | All gates pass |
188
+ | **REVIEW** | Code review (human or Copilot) | Review approved |
189
+ | **DEPLOY** | Production deployment | Deployment checklist complete |
190
+
191
+ **Intelligent Routing**: The kit analyzes your request keywords and automatically loads the right agents and skills (max 4 agents + 6 skills per session to stay within context budgets).
192
+
147
193
  ---
148
194
 
149
- ## 🤖 Agents (17)
195
+ ## 🤖 Agents (19)
150
196
 
151
197
  ### Core Development
152
198
 
@@ -168,17 +214,23 @@ That's it! The kit is now active and ready to accelerate your development.
168
214
  | **Security Auditor** | Vulnerabilities, compliance | security, auth, audit |
169
215
  | **Performance Engineer** | Optimization, profiling | performance, speed, metrics |
170
216
 
171
- ### Support
217
+ ### Support & Intelligence
172
218
 
173
219
  | Agent | Role | Triggers |
174
220
  | :----------------------- | :------------------------- | :-------------------- |
175
221
  | **Documentation Writer** | Docs, READMEs, guides | documentation, readme |
176
- | **Debugger** | Systematic debugging | debug, error, fix |
222
+ | **Build Error Resolver** | Rapid build fixes | build, error, compile |
177
223
  | **Refactorer** | Code cleanup, optimization | refactor, cleanup |
178
- | **Frontend Specialist** | React, Next.js, UI architecture | frontend, component, CSS |
179
- | **Backend Specialist** | Node.js, NestJS, API design | backend, API, server |
180
- | **Sprint Orchestrator** | Sprint planning, velocity tracking | sprint, roadmap, velocity |
181
- | **Reliability Engineer** | SRE, production readiness | reliability, SLA, monitoring |
224
+ | **Explorer Agent** | Codebase discovery | explore, scout, discover |
225
+ | **Knowledge Agent** | RAG retrieval | knowledge, search, context |
226
+
227
+ ### Autonomy Agents
228
+
229
+ | Agent | Role | Triggers |
230
+ | :----------------------- | :-------------------------------- | :---------------------------- |
231
+ | **Planner** | Task breakdown, Socratic analysis | plan, breakdown, requirements |
232
+ | **Sprint Orchestrator** | Sprint planning, velocity | sprint, roadmap, velocity |
233
+ | **Reliability Engineer** | SRE, production readiness | reliability, SLA, monitoring |
182
234
 
183
235
  ---
184
236
 
@@ -248,13 +300,13 @@ That's it! The kit is now active and ready to accelerate your development.
248
300
  | `/compact` | Compress context |
249
301
  | `/eval` | Evaluate metrics |
250
302
  | `/setup` | Configure project |
251
- | `/help` | Show help |
303
+ | `/help` | **Comprehensive reference** — commands, workflows, agents, skills, rules, checklists |
252
304
 
253
305
  ---
254
306
 
255
- ## 🛠️ Skills (27)
307
+ ## 🛠️ Skills (31)
256
308
 
257
- ### Operational Skills (4)
309
+ ### Operational Skills (5)
258
310
 
259
311
  | Skill | Purpose |
260
312
  | :-------------------- | :------------------------ |
@@ -262,14 +314,16 @@ That's it! The kit is now active and ready to accelerate your development.
262
314
  | `continuous-learning` | Pattern extraction (PAAL) |
263
315
  | `strategic-compact` | Context window management |
264
316
  | `eval-harness` | Performance evaluation |
317
+ | `context-budget` | Active token budget management |
265
318
 
266
- ### Orchestration Skills (3)
319
+ ### Orchestration Skills (4)
267
320
 
268
321
  | Skill | Purpose |
269
322
  | :-------------------- | :------------------------ |
270
323
  | `intelligent-routing` | Auto agent selection |
271
324
  | `parallel-agents` | Multi-agent orchestration |
272
325
  | `behavioral-modes` | Adaptive AI operation |
326
+ | `mcp-integration` | MCP server integration |
273
327
 
274
328
  ### Domain Skills (12)
275
329
 
@@ -302,7 +356,54 @@ That's it! The kit is now active and ready to accelerate your development.
302
356
 
303
357
  ---
304
358
 
305
- ## 🔄 Workflows (11)
359
+ ## ⚙️ Runtime Engine (21 Modules)
360
+
361
+ Antigravity AI Kit v3.0.0 includes a **full runtime engine** built across 4 phases — all using Node.js built-ins with zero external dependencies.
362
+
363
+ ### Phase 1 — Foundation Hardening
364
+
365
+ | Module | Purpose |
366
+ |:---|:---|
367
+ | `workflow-engine` | Runtime state machine enforcement |
368
+ | `session-manager` | Active session state management |
369
+ | `verify` | Manifest integrity verification |
370
+ | `updater` | Diff-based CLI update |
371
+ | `error-budget` | Error budget tracking with metrics |
372
+
373
+ ### Phase 2 — Runtime Engine
374
+
375
+ | Module | Purpose |
376
+ |:---|:---|
377
+ | `workflow-persistence` | Persistent state + checkpoints |
378
+ | `agent-registry` | Agent contract validation |
379
+ | `loading-engine` | Keyword matching + context budget |
380
+ | `hook-system` | Event-driven lifecycle hooks |
381
+ | `task-model` | Task CRUD with status tracking |
382
+
383
+ ### Phase 3 — Collaboration & Security
384
+
385
+ | Module | Purpose |
386
+ |:---|:---|
387
+ | `identity` | Developer identity system |
388
+ | `task-governance` | Locking, assignment, audit trail |
389
+ | `skill-sandbox` | Runtime skill permission enforcement |
390
+ | `conflict-detector` | Agent conflict detection |
391
+ | `security-scanner` | Runtime injection & secret scanning |
392
+ | `plugin-system` | Full plugin lifecycle management |
393
+
394
+ ### Phase 4 — Platform Leadership
395
+
396
+ | Module | Purpose |
397
+ |:---|:---|
398
+ | `agent-reputation` | Score tracking, trends, rankings |
399
+ | `engineering-manager` | Sprint planning, auto-assignment |
400
+ | `self-healing` | CI failure detection & JSON patch generation |
401
+ | `marketplace` | Community skill search & install |
402
+ | `cli-commands` | Extracted CLI handlers for marketplace & heal |
403
+
404
+ ---
405
+
406
+ ## 🔄 Workflows (14)
306
407
 
307
408
  | Workflow | Description | Command |
308
409
  | :---------------- | :----------------------- | :--------------- |
@@ -314,6 +415,9 @@ That's it! The kit is now active and ready to accelerate your development.
314
415
  | **orchestrate** | Multi-agent coordination | `/orchestrate` |
315
416
  | **plan** | Implementation planning | `/plan` |
316
417
  | **preview** | Preview changes | `/preview` |
418
+ | **quality-gate** | Pre-task validation | `/quality-gate` |
419
+ | **retrospective** | Sprint audit & review | `/retrospective` |
420
+ | **review** | Code review pipeline | `/review` |
317
421
  | **status** | Project status check | `/status` |
318
422
  | **test** | Test writing workflow | `/test` |
319
423
  | **ui-ux-pro-max** | Premium UI design | `/ui-ux-pro-max` |
@@ -507,18 +611,33 @@ Usage and instructions...
507
611
  ```
508
612
  antigravity-ai-kit/
509
613
  ├── .agent/ # Core AI Kit
510
- │ ├── agents/ # 17 specialized agents
614
+ │ ├── agents/ # 19 specialized agents
511
615
  │ ├── commands/ # 31 slash commands
512
- │ ├── skills/ # 26 capability modules
513
- │ ├── workflows/ # 11 process templates
514
- │ ├── hooks/ # Event automation
515
- │ ├── rules/ # Governance rules
516
- │ ├── checklists/ # Verification checklists
517
- │ ├── templates/ # Feature templates
518
- └── decisions/ # ADR system
519
- ├── docs/ # Documentation
520
- ├── examples/ # Usage examples
521
- ├── scripts/ # Utility scripts
616
+ │ ├── skills/ # 31 capability modules
617
+ │ ├── workflows/ # 14 process templates
618
+ │ ├── engine/ # Autonomy Engine (state machine, loading rules, configs)
619
+ │ ├── hooks/ # 6 event hooks (runtime + git-hook)
620
+ │ ├── rules.md # Governance rules
621
+ │ ├── checklists/ # Verification checklists (3)
622
+ ├── templates/ # ADR, feature-request, bug-report templates
623
+ ├── decisions/ # Architecture Decision Records
624
+ │ └── manifest.json # Machine-readable capability registry
625
+ ├── lib/ # Runtime Engine (21 modules)
626
+ │ ├── workflow-engine.js # State machine enforcement
627
+ │ ├── task-governance.js # Locking, audit trail, decision timeline
628
+ │ ├── agent-reputation.js # Score tracking & rankings
629
+ │ ├── self-healing.js # CI failure detection & patch generation
630
+ │ ├── marketplace.js # Community skill marketplace
631
+ │ └── + 16 more modules # Identity, plugins, hooks, registry...
632
+ ├── bin/ # CLI (ag-kit)
633
+ ├── create-antigravity-app/ # Project scaffolder (separate npm package)
634
+ ├── tests/ # Test suites (261 tests, 25 files)
635
+ │ ├── unit/ # 21 module tests
636
+ │ ├── structural/ # Inventory + schema validation
637
+ │ └── security/ # Injection scan + leakage detection
638
+ ├── docs/ # MkDocs documentation site
639
+ ├── .github/workflows/ # CI pipeline
640
+ ├── .githooks/ # Secret detection pre-commit hook
522
641
  ├── README.md # This file
523
642
  ├── LICENSE # MIT License
524
643
  └── CHANGELOG.md # Version history
@@ -565,6 +684,24 @@ MIT License — See [LICENSE](LICENSE) for details.
565
684
 
566
685
  ---
567
686
 
687
+ ## 📖 Contributor Guide
688
+
689
+ Want to use Antigravity AI Kit in your project? The **[Contributor Guide](https://besync-labs.github.io/antigravity-ai-kit/contributor-guide/)** covers the full end-to-end lifecycle:
690
+
691
+ | Phase | What You’ll Learn |
692
+ |:---|:---|
693
+ | **Onboard** | Install with `ag-kit init`, verify with `ag-kit status` |
694
+ | **Identity** | Set up developer identity with role-based access |
695
+ | **Sprint Planning** | Create sprints, define tasks, auto-assign agents |
696
+ | **Task Management** | Lifecycle: `pending → in_progress → review → completed` |
697
+ | **Development** | Trust-Grade workflow: `/explore → /plan → /work → /review` |
698
+ | **Quality Gates** | 5-gate pipeline: lint, types, tests, security, build |
699
+ | **Completion** | Sprint retrospective, tracking updates, next sprint |
700
+
701
+ 👉 **[Read the full guide →](https://besync-labs.github.io/antigravity-ai-kit/contributor-guide/)**
702
+
703
+ ---
704
+
568
705
  ## 🙏 Acknowledgments
569
706
 
570
707
  - Initial patterns from [vudovn/antigravity-kit](https://github.com/vudovn/antigravity-kit)
@@ -572,7 +709,7 @@ MIT License — See [LICENSE](LICENSE) for details.
572
709
  - Context-driven development from [Google Conductor](https://developers.googleblog.com/en/conductor-introducing-context-driven-development-for-gemini-cli/)
573
710
  - Hook concepts from [everything-claude-code](https://github.com/affaan-m/everything-claude-code)
574
711
 
575
- _Antigravity AI Kit v2.1.0 extends these foundations with Trust-Grade governance, session management, and 90+ capabilities._
712
+ _Antigravity AI Kit v3.0.0 extends these foundations with a 21-module runtime engine, Trust-Grade governance, session management, and 100+ capabilities._
576
713
 
577
714
  ---
578
715