antigravity-ai-kit 3.4.0 โ†’ 3.5.0

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.
@@ -1,6 +1,6 @@
1
1
  # Antigravity AI Kit โ€” CheatSheet
2
2
 
3
- > **Version**: v3.1.0 | **Quick Reference** for all capabilities
3
+ > **Version**: v3.5.0 | **Quick Reference** for all capabilities
4
4
  > **Session**: Start with `/status`, end with session-end checklist
5
5
 
6
6
  ---
@@ -138,7 +138,7 @@
138
138
 
139
139
  ---
140
140
 
141
- ## ๐Ÿงฉ Skills (31)
141
+ ## ๐Ÿงฉ Skills (32)
142
142
 
143
143
  ### Operational (5)
144
144
 
@@ -234,7 +234,7 @@
234
234
 
235
235
  ---
236
236
 
237
- ## โš–๏ธ Governance Rules (6)
237
+ ## โš–๏ธ Governance Rules (8)
238
238
 
239
239
  | Rule File | Scope |
240
240
  |:----------|:------|
@@ -244,6 +244,8 @@
244
244
  | `git-workflow.md` | Commits, branches, push policy |
245
245
  | `documentation.md` | Doc hierarchy, SSOT, preservation |
246
246
  | `sprint-tracking.md` | ROADMAP.md as SSOT, session protocols |
247
+ | `quality-gate.md` | Pre-task validation and quality standards |
248
+ | `architecture.md` | System design patterns and ADR governance |
247
249
 
248
250
  ---
249
251
 
@@ -1,6 +1,6 @@
1
1
  # Pre-Commit Checklist
2
2
 
3
- > **Framework**: Antigravity AI Kit v2.0.0
3
+ > **Framework**: Antigravity AI Kit v3.5.0
4
4
  > **Purpose**: Quality gate before committing code
5
5
  > **Principle**: Prevention over correction
6
6
 
@@ -1,6 +1,6 @@
1
1
  # Session End Checklist
2
2
 
3
- > **Framework**: Antigravity AI Kit v3.1.0
3
+ > **Framework**: Antigravity AI Kit v3.5.0
4
4
  > **Purpose**: Complete this checklist before ending any work session
5
5
  > **Principle**: Context preservation for continuity
6
6
 
@@ -1,6 +1,6 @@
1
1
  # Session Start Checklist
2
2
 
3
- > **Framework**: Antigravity AI Kit v3.1.0
3
+ > **Framework**: Antigravity AI Kit v3.5.0
4
4
  > **Purpose**: Complete this checklist at the beginning of every work session
5
5
  > **Principle**: Full context before new work
6
6
 
@@ -0,0 +1,78 @@
1
+ # Task-Complete Checkpoint
2
+
3
+ > **Framework**: Antigravity AI Kit v3.5.0
4
+ > **Purpose**: Decision gate after task completion โ€” present options before commit/push
5
+ > **Principle**: Human-in-the-loop governance
6
+
7
+ ---
8
+
9
+ ## ๐ŸŽฏ Trigger Condition
10
+
11
+ This checkpoint activates when:
12
+ - Implementation work is complete AND quality gates have passed (VERIFY โ†’ CHECKPOINT transition)
13
+ - The agent has made code changes that are ready for commit
14
+
15
+ This checkpoint does NOT activate when:
16
+ - The developer has explicitly enabled "skip checkpoint" mode for the session
17
+ - The change is docs-only or config-only (handled by commit-type scoping)
18
+
19
+ ---
20
+
21
+ ## ๐Ÿ“‹ Decision Prompt
22
+
23
+ Present these options to the developer:
24
+
25
+ | # | Action | Command | When to Recommend |
26
+ |:--|:-------|:--------|:-----------------|
27
+ | 1 | ๐Ÿ” Quality Review | `/review` | โœ… Always (if not already run) |
28
+ | 2 | ๐Ÿ›ก๏ธ Retrospective Audit | `/retrospective` | Sprint-end or milestone |
29
+ | 3 | ๐Ÿ“‹ Update Tracking | Manual | โœ… Always |
30
+ | 4 | ๐Ÿ“ฆ Commit & Push | `git commit + push` | After review passes |
31
+ | 5 | ๐Ÿ”š Session-End | Protocol | End of work session |
32
+ | 6 | ๐Ÿš€ Deploy | `/deploy` | Production-impacting changes |
33
+ | 7 | ๐Ÿ“ Continue Working | Skip commit | Batching multiple changes |
34
+ | 8 | โญ๏ธ Skip Checkpoint | Session flag | Rapid iteration mode |
35
+
36
+ **Prompt format:**
37
+
38
+ ```
39
+ How should we proceed?
40
+
41
+ 1. ๐Ÿ” /review โ€” Run quality gates (lint, type-check, test, security, build)
42
+ 2. ๐Ÿ›ก๏ธ /retrospective โ€” Tier-1 audit (architecture, market benchmark, ethics)
43
+ 3. ๐Ÿ“‹ Update tracking โ€” Sync ROADMAP.md, session-context.md, session-state.json
44
+ 4. ๐Ÿ“ฆ Commit & push โ€” Stage, commit (conventional), push to remote
45
+ 5. ๐Ÿ”š Session-end protocol โ€” Preserve context and prepare for handoff
46
+ 6. ๐Ÿš€ /deploy โ€” Production deployment with pre-flight checks
47
+ 7. ๐Ÿ“ Continue working โ€” Proceed to next task without committing
48
+ 8. โญ๏ธ Skip checkpoint โ€” Disable checkpoint for remainder of session
49
+
50
+ > Choose options (e.g., "1, 3, 4" or "1 through 5"):
51
+ ```
52
+
53
+ ---
54
+
55
+ ## ๐Ÿง  Recommendation Intelligence
56
+
57
+ Dynamically adjust recommendations based on:
58
+
59
+ - [ ] **Sprint boundary**: If ROADMAP shows sprint ending โ†’ recommend `/retrospective`
60
+ - [ ] **Production files**: If `apps/api/**` or `apps/web/**` changed โ†’ recommend `/deploy`
61
+ - [ ] **Session duration**: If >2 hours of work โ†’ recommend session-end
62
+ - [ ] **File count**: If >5 files changed โ†’ recommend atomic commit review
63
+ - [ ] **New code without tests**: Flag with โš ๏ธ if test coverage gap detected
64
+ - [ ] **Security-sensitive**: If auth/crypto/token files changed โ†’ recommend `/review security`
65
+
66
+ ---
67
+
68
+ ## ๐Ÿ”’ Governance
69
+
70
+ **PROHIBITED:**
71
+ - Committing or pushing without presenting this checkpoint
72
+ - Auto-selecting options without developer input
73
+ - Skipping this checkpoint for session-end commits
74
+
75
+ **REQUIRED:**
76
+ - Present decision prompt after every task completion
77
+ - Wait for explicit developer response
78
+ - Log the developer's choice for session audit trail
@@ -13,7 +13,7 @@ Your complete guide to the Antigravity AI Kit. Type `/help` for a quick overview
13
13
  /help commands # All 31 slash commands with descriptions
14
14
  /help workflows # All 14 workflows with descriptions
15
15
  /help agents # All 19 AI agents with domains
16
- /help skills # All 31 skill modules
16
+ /help skills # All 32 skill modules
17
17
  /help rules # Governance rules
18
18
  /help checklists # Quality gate checklists
19
19
  /help cli # Terminal CLI commands (ag-kit)
@@ -24,17 +24,17 @@ Your complete guide to the Antigravity AI Kit. Type `/help` for a quick overview
24
24
 
25
25
  ## Quick Overview
26
26
 
27
- **Antigravity AI Kit v3.0.0** โ€” Trust-Grade AI Development Framework
27
+ **Antigravity AI Kit v3.5.0** โ€” Trust-Grade AI Development Framework
28
28
 
29
29
  | Category | Count | Description |
30
30
  |:---------|:------|:------------|
31
31
  | โŒจ๏ธ Commands | 31 | Slash commands for every development task |
32
32
  | ๐Ÿ”„ Workflows | 14 | Multi-step development lifecycles |
33
33
  | ๐Ÿค– Agents | 19 | Specialized AI roles for delegation |
34
- | ๐Ÿ› ๏ธ Skills | 31 | Domain knowledge modules |
35
- | โš–๏ธ Rules | 4 | Immutable governance constraints |
36
- | โœ… Checklists | 3 | Quality gate checklists |
37
- | โš™๏ธ Runtime | 21 | Engine modules (governance, reputation, self-healing) |
34
+ | ๐Ÿ› ๏ธ Skills | 32 | Domain knowledge modules |
35
+ | โš–๏ธ Rules | 8 | Modular governance constraints |
36
+ | โœ… Checklists | 4 | Quality gate checklists |
37
+ | โš™๏ธ Runtime | 29 | Engine modules (governance, reputation, self-healing) |
38
38
 
39
39
  ### Getting Started
40
40
 
@@ -174,7 +174,7 @@ Agents are specialized AI roles. They are automatically activated based on task
174
174
 
175
175
  ---
176
176
 
177
- ## Skills (31)
177
+ ## Skills (32)
178
178
 
179
179
  Skills are domain knowledge modules that agents use. They are loaded automatically based on task context.
180
180
 
@@ -194,9 +194,9 @@ Skills are domain knowledge modules that agents use. They are loaded automatical
194
194
 
195
195
  ---
196
196
 
197
- ## Rules (4)
197
+ ## Rules (8)
198
198
 
199
- Rules are immutable governance constraints that all agents must follow.
199
+ Rules are modular governance constraints that all agents must follow.
200
200
 
201
201
  | Rule | Purpose |
202
202
  |:-----|:--------|
@@ -204,6 +204,10 @@ Rules are immutable governance constraints that all agents must follow.
204
204
  | `git-workflow` | Conventional commits, atomic changes, branch strategy |
205
205
  | `security` | Secret management, input validation, OWASP |
206
206
  | `testing` | Test-first, coverage targets, test naming |
207
+ | `documentation` | Doc hierarchy, SSOT, preservation |
208
+ | `sprint-tracking` | ROADMAP.md as SSOT, session protocols |
209
+ | `quality-gate` | Pre-task validation and quality standards |
210
+ | `architecture` | System design patterns and ADR governance |
207
211
 
208
212
  ---
209
213
 
@@ -24,12 +24,18 @@
24
24
  "description": "Testing and quality gate validation",
25
25
  "workflows": ["test", "review"],
26
26
  "previous": "build",
27
+ "next": "checkpoint"
28
+ },
29
+ "checkpoint": {
30
+ "description": "Developer decision gate with intelligence-driven recommendations",
31
+ "workflows": [],
32
+ "previous": "verify",
27
33
  "next": "ship"
28
34
  },
29
35
  "ship": {
30
36
  "description": "Production deployment with pre-flight checks",
31
37
  "workflows": ["deploy"],
32
- "previous": "verify",
38
+ "previous": "checkpoint",
33
39
  "next": "evaluate"
34
40
  },
35
41
  "evaluate": {
@@ -37,6 +37,15 @@
37
37
  "startedAt": null,
38
38
  "completedAt": null
39
39
  },
40
+ "CHECKPOINT": {
41
+ "status": "pending",
42
+ "description": "Developer decision gate โ€” presents completion options before commit/push",
43
+ "checklist": "checklists/task-complete.md",
44
+ "artifact": null,
45
+ "startedAt": null,
46
+ "completedAt": null,
47
+ "requiresApproval": true
48
+ },
40
49
  "REVIEW": {
41
50
  "status": "pending",
42
51
  "description": "Code review and security audit",
@@ -95,7 +104,7 @@
95
104
  },
96
105
  {
97
106
  "from": "VERIFY",
98
- "to": "REVIEW",
107
+ "to": "CHECKPOINT",
99
108
  "trigger": "Quality gates pass",
100
109
  "guard": "All quality gates pass (build, lint, test)"
101
110
  },
@@ -105,6 +114,18 @@
105
114
  "trigger": "Quality gates fail",
106
115
  "guard": "One or more quality gates failed"
107
116
  },
117
+ {
118
+ "from": "CHECKPOINT",
119
+ "to": "REVIEW",
120
+ "trigger": "Developer chooses review/commit",
121
+ "guard": "Developer selects review or commit option"
122
+ },
123
+ {
124
+ "from": "CHECKPOINT",
125
+ "to": "IMPLEMENT",
126
+ "trigger": "Developer chooses continue working",
127
+ "guard": "Developer selects continue or batch option"
128
+ },
108
129
  {
109
130
  "from": "REVIEW",
110
131
  "to": "DEPLOY",
@@ -88,6 +88,17 @@
88
88
  { "action": "Append retrospective findings to contexts/plan-quality-log.md", "severity": "low", "onFailure": "log" },
89
89
  { "action": "Extract learnings for continuous-learning skill (PAAL cycle)", "severity": "low", "onFailure": "log" }
90
90
  ]
91
+ },
92
+ {
93
+ "event": "task-complete",
94
+ "description": "Triggered after quality gates pass. Presents developer with structured decision options before commit/push.",
95
+ "enforcement": "runtime",
96
+ "actions": [
97
+ { "action": "Present task completion decision prompt to developer", "severity": "critical", "onFailure": "block" },
98
+ { "action": "Evaluate change scope for recommendations (sprint boundary, production impact, session duration)", "severity": "high", "onFailure": "warn" },
99
+ { "action": "Check if tracking files (ROADMAP, session-context, session-state) need updating", "severity": "medium", "onFailure": "warn" },
100
+ { "action": "Suggest session-end protocol if session has accumulated significant changes", "severity": "low", "onFailure": "log" }
101
+ ]
91
102
  }
92
103
  ]
93
104
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "schemaVersion": "1.0.0",
3
- "kitVersion": "3.3.1",
4
- "lastAuditedAt": "2026-03-16T00:30:00Z",
3
+ "kitVersion": "3.5.0",
4
+ "lastAuditedAt": "2026-03-16T05:47:00Z",
5
5
  "description": "Antigravity AI Kit โ€” Trust-Grade AI Development Framework",
6
6
  "repository": "https://github.com/besync-labs/antigravity-ai-kit",
7
7
  "capabilities": {
@@ -101,6 +101,28 @@
101
101
  { "name": "sprint-tracking", "file": "rules/sprint-tracking.md" },
102
102
  { "name": "testing", "file": "rules/testing.md" }
103
103
  ]
104
+ },
105
+ "checklists": {
106
+ "count": 4,
107
+ "items": [
108
+ { "name": "pre-commit", "file": "checklists/pre-commit.md" },
109
+ { "name": "session-start", "file": "checklists/session-start.md" },
110
+ { "name": "session-end", "file": "checklists/session-end.md" },
111
+ { "name": "task-complete", "file": "checklists/task-complete.md" }
112
+ ]
113
+ },
114
+ "hooks": {
115
+ "count": 8,
116
+ "items": [
117
+ { "name": "session-start", "event": "session-start" },
118
+ { "name": "session-end", "event": "session-end" },
119
+ { "name": "pre-commit", "event": "pre-commit" },
120
+ { "name": "secret-detection", "event": "secret-detection" },
121
+ { "name": "phase-transition", "event": "phase-transition" },
122
+ { "name": "sprint-checkpoint", "event": "sprint-checkpoint" },
123
+ { "name": "plan-complete", "event": "plan-complete" },
124
+ { "name": "task-complete", "event": "task-complete" }
125
+ ]
104
126
  }
105
127
  }
106
128
  }
package/.agent/rules.md CHANGED
@@ -218,7 +218,23 @@ After generating code, you MUST enter **Self-Correction Mode**.
218
218
  โ–ก Only then may I declare "complete" or "done"
219
219
  ```
220
220
 
221
- ### F. Continuous Learning Protocol
221
+ ### F. Task-Complete Checkpoint Protocol
222
+
223
+ **After completing a task and before committing or pushing code, present the developer with structured decision options.**
224
+
225
+ This protocol is defined in `.agent/checklists/task-complete.md` and enforced by the `task-complete` hook event.
226
+
227
+ **PROHIBITED:**
228
+ - โŒ Committing or pushing without presenting the checkpoint prompt
229
+ - โŒ Auto-selecting options without explicit developer input
230
+ - โŒ Skipping this checkpoint for session-end commits
231
+
232
+ **REQUIRED:**
233
+ - โœ… Present the 8-option decision prompt after every task completion
234
+ - โœ… Wait for explicit developer response before proceeding
235
+ - โœ… Evaluate change scope for intelligent recommendation annotation
236
+
237
+ ### G. Continuous Learning Protocol
222
238
 
223
239
  **User corrections become permanent operational rules.**
224
240
 
@@ -226,7 +242,7 @@ After generating code, you MUST enter **Self-Correction Mode**.
226
242
  2. **Internalize**: Add to operational memory for this session
227
243
  3. **Apply**: Use immediately and in all future similar situations
228
244
 
229
- ### G. Error Recovery Protocol
245
+ ### H. Error Recovery Protocol
230
246
 
231
247
  **When errors occur, recover gracefully without excuses.**
232
248
 
@@ -42,7 +42,7 @@
42
42
 
43
43
  **Branch**: `main`
44
44
  **Repository**: `besync-labs/antigravity-ai-kit`
45
- **Framework**: Antigravity AI Kit v2.0.0
45
+ **Framework**: Antigravity AI Kit v3.5.0
46
46
 
47
47
  ### Key File Locations
48
48
 
package/README.md CHANGED
@@ -1,21 +1,21 @@
1
1
  # ๐Ÿš€ Antigravity AI Kit
2
2
 
3
- ![version](https://img.shields.io/badge/version-3.3.1-blue)
3
+ ![version](https://img.shields.io/badge/version-3.5.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
6
  ![Skills](https://img.shields.io/badge/Skills-32-orange)
7
7
  ![Commands](https://img.shields.io/badge/Commands-31-red)
8
8
  ![Workflows](https://img.shields.io/badge/Workflows-14-teal)
9
9
  ![Runtime Modules](https://img.shields.io/badge/Runtime%20Modules-29-blueviolet)
10
- ![Tests](https://img.shields.io/badge/Tests-327%20passing-brightgreen)
11
- ![Checklists](https://img.shields.io/badge/Checklists-3-yellow)
10
+ ![Tests](https://img.shields.io/badge/Tests-341%20passing-brightgreen)
11
+ ![Checklists](https://img.shields.io/badge/Checklists-4-yellow)
12
12
 
13
13
  <p align="center">
14
14
  <b>๐ŸŽฏ Transform Your IDE into an AI Engineering Team</b>
15
15
  </p>
16
16
 
17
17
  <p align="center">
18
- Antigravity AI Kit is a <b>Trust-Grade AI development framework</b> with a <b>29-module runtime engine</b>, <b>19 specialized agents</b>, <b>31 commands</b>, <b>32 skills</b>, and <b>14 workflows</b> โ€” all backed by <b>327 tests</b> and governance-first principles.
18
+ Antigravity AI Kit is a <b>Trust-Grade AI development framework</b> with a <b>29-module runtime engine</b>, <b>19 specialized agents</b>, <b>31 commands</b>, <b>32 skills</b>, and <b>14 workflows</b> โ€” all backed by <b>341 tests</b> and governance-first principles.
19
19
  </p>
20
20
 
21
21
  <p align="center">
@@ -60,9 +60,9 @@
60
60
  | โŒจ๏ธ **Commands** | 31 | Slash commands for every development workflow |
61
61
  | ๐Ÿ”„ **Workflows** | 14 | Process templates (/create, /debug, /deploy, /test...) |
62
62
  | โš™๏ธ **Runtime** | 29 | Runtime engine modules (governance, reputation, self-healing...) |
63
- | โœ… **Checklists** | 3 | Quality gates (session-start, session-end, pre-commit) |
63
+ | โœ… **Checklists** | 4 | Quality gates (session-start, session-end, pre-commit, task-complete) |
64
64
  | โš–๏ธ **Rules** | 8 | Modular governance constraints (coding, security, testing, git, docs, sprint) |
65
- | ๐Ÿ”— **Hooks** | 7 | Event-driven automation (runtime + git-hook enforcement) |
65
+ | ๐Ÿ”— **Hooks** | 8 | Event-driven automation (runtime + git-hook enforcement) |
66
66
  | ๐Ÿงช **Tests** | 327 | Unit, structural, integration, and security tests (32 test files) |
67
67
 
68
68
  ---
@@ -188,10 +188,10 @@ Antigravity AI Kit is designed to **never touch your project files**. All operat
188
188
 
189
189
  ### How It Works: The Autonomy Engine
190
190
 
191
- Antigravity AI Kit uses a **6-phase workflow state machine** that guides development:
191
+ Antigravity AI Kit uses a **7-phase workflow state machine** that guides development:
192
192
 
193
193
  ```
194
- EXPLORE โ†’ PLAN โ†’ IMPLEMENT โ†’ VERIFY โ†’ REVIEW โ†’ DEPLOY
194
+ EXPLORE โ†’ PLAN โ†’ IMPLEMENT โ†’ VERIFY โ†’ CHECKPOINT โ†’ REVIEW โ†’ DEPLOY
195
195
  ```
196
196
 
197
197
  | Phase | What Happens | Transition Guard |
@@ -200,6 +200,7 @@ EXPLORE โ†’ PLAN โ†’ IMPLEMENT โ†’ VERIFY โ†’ REVIEW โ†’ DEPLOY
200
200
  | **PLAN** | Implementation plan with user approval | Plan approved by user |
201
201
  | **IMPLEMENT** | Code generation with agent routing | Auto on commit |
202
202
  | **VERIFY** | Quality gates, tests, lint | All gates pass |
203
+ | **CHECKPOINT** | Developer decision gate | Explicit developer choice |
203
204
  | **REVIEW** | Code review (human or Copilot) | Review approved |
204
205
  | **DEPLOY** | Production deployment | Deployment checklist complete |
205
206
 
@@ -635,9 +636,9 @@ antigravity-ai-kit/
635
636
  โ”‚ โ”œโ”€โ”€ skills/ # 32 capability modules
636
637
  โ”‚ โ”œโ”€โ”€ workflows/ # 14 process templates
637
638
  โ”‚ โ”œโ”€โ”€ engine/ # Autonomy Engine (state machine, loading rules, configs)
638
- โ”‚ โ”œโ”€โ”€ hooks/ # 7 event hooks (runtime + git-hook)
639
+ โ”‚ โ”œโ”€โ”€ hooks/ # 8 event hooks (runtime + git-hook)
639
640
  โ”‚ โ”œโ”€โ”€ rules/ # 8 modular governance rules
640
- โ”‚ โ”œโ”€โ”€ checklists/ # Verification checklists (3)
641
+ โ”‚ โ”œโ”€โ”€ checklists/ # Verification checklists (4)
641
642
  โ”‚ โ”œโ”€โ”€ templates/ # ADR, feature-request, bug-report templates
642
643
  โ”‚ โ”œโ”€โ”€ decisions/ # Architecture Decision Records
643
644
  โ”‚ โ””โ”€โ”€ manifest.json # Machine-readable capability registry
@@ -728,7 +729,7 @@ Want to use Antigravity AI Kit in your project? The **[Contributor Guide](https:
728
729
  - Context-driven development from [Google Conductor](https://developers.googleblog.com/en/conductor-introducing-context-driven-development-for-gemini-cli/)
729
730
  - Hook concepts from [everything-claude-code](https://github.com/affaan-m/everything-claude-code)
730
731
 
731
- _Antigravity AI Kit v3.2.0 extends these foundations with a 29-module runtime engine, Trust-Grade governance, session management, and 100+ capabilities._
732
+ _Antigravity AI Kit v3.5.0 extends these foundations with a 29-module runtime engine, Trust-Grade governance, session management, and 100+ capabilities._
732
733
 
733
734
  ---
734
735
 
@@ -19,7 +19,7 @@ const { writeJsonAtomic } = require('./io');
19
19
  const { createLogger } = require('./logger');
20
20
  const log = createLogger('workflow-engine');
21
21
 
22
- /** @typedef {'IDLE' | 'EXPLORE' | 'PLAN' | 'IMPLEMENT' | 'VERIFY' | 'REVIEW' | 'DEPLOY' | 'MAINTAIN'} WorkflowPhase */
22
+ /** @typedef {'IDLE' | 'EXPLORE' | 'PLAN' | 'IMPLEMENT' | 'VERIFY' | 'CHECKPOINT' | 'REVIEW' | 'DEPLOY' | 'MAINTAIN'} WorkflowPhase */
23
23
 
24
24
  /**
25
25
  * @typedef {object} TransitionResult
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "antigravity-ai-kit",
3
- "version": "3.4.0",
4
- "description": "๐Ÿš€ Trust-Grade AI development framework with a 29-module runtime engine โ€” 19 Agents, 32 Skills, 31 Commands, 14 Workflows, 8 Rules, 330 Tests. Workflow enforcement, task governance, agent reputation, self-healing, and skill marketplace.",
3
+ "version": "3.5.0",
4
+ "description": "๐Ÿš€ Trust-Grade AI development framework with a 29-module runtime engine โ€” 19 Agents, 32 Skills, 31 Commands, 14 Workflows, 8 Rules, 341 Tests. Workflow enforcement, task governance, agent reputation, self-healing, and skill marketplace.",
5
5
  "main": "bin/ag-kit.js",
6
6
  "bin": {
7
7
  "ag-kit": "./bin/ag-kit.js"
@@ -9,6 +9,8 @@
9
9
  "scripts": {
10
10
  "test": "vitest run",
11
11
  "test:watch": "vitest watch",
12
+ "preversion": "npm test",
13
+ "version": "node scripts/sync-version.js && git add -A",
12
14
  "postinstall": "echo 'โœ… Antigravity AI Kit installed! Run: ag-kit init'"
13
15
  },
14
16
  "keywords": [