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.
- package/.agent/CheatSheet.md +5 -3
- package/.agent/checklists/pre-commit.md +1 -1
- package/.agent/checklists/session-end.md +1 -1
- package/.agent/checklists/session-start.md +1 -1
- package/.agent/checklists/task-complete.md +78 -0
- package/.agent/commands/help.md +13 -9
- package/.agent/engine/sdlc-map.json +7 -1
- package/.agent/engine/workflow-state.json +22 -1
- package/.agent/hooks/hooks.json +11 -0
- package/.agent/manifest.json +24 -2
- package/.agent/rules.md +18 -2
- package/.agent/session-context.md +1 -1
- package/README.md +12 -11
- package/lib/workflow-engine.js +1 -1
- package/package.json +4 -2
package/.agent/CheatSheet.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Antigravity AI Kit โ CheatSheet
|
|
2
2
|
|
|
3
|
-
> **Version**: v3.
|
|
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 (
|
|
141
|
+
## ๐งฉ Skills (32)
|
|
142
142
|
|
|
143
143
|
### Operational (5)
|
|
144
144
|
|
|
@@ -234,7 +234,7 @@
|
|
|
234
234
|
|
|
235
235
|
---
|
|
236
236
|
|
|
237
|
-
## โ๏ธ Governance Rules (
|
|
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
|
|
|
@@ -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
|
package/.agent/commands/help.md
CHANGED
|
@@ -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
|
|
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.
|
|
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 |
|
|
35
|
-
| โ๏ธ Rules |
|
|
36
|
-
| โ
Checklists |
|
|
37
|
-
| โ๏ธ Runtime |
|
|
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 (
|
|
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 (
|
|
197
|
+
## Rules (8)
|
|
198
198
|
|
|
199
|
-
Rules are
|
|
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": "
|
|
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": "
|
|
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",
|
package/.agent/hooks/hooks.json
CHANGED
|
@@ -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
|
}
|
package/.agent/manifest.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "1.0.0",
|
|
3
|
-
"kitVersion": "3.
|
|
4
|
-
"lastAuditedAt": "2026-03-
|
|
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.
|
|
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
|
-
###
|
|
245
|
+
### H. Error Recovery Protocol
|
|
230
246
|
|
|
231
247
|
**When errors occur, recover gracefully without excuses.**
|
|
232
248
|
|
package/README.md
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
# ๐ Antigravity AI Kit
|
|
2
2
|
|
|
3
|
-

|
|
4
4
|

|
|
5
5
|

|
|
6
6
|

|
|
7
7
|

|
|
8
8
|

|
|
9
9
|

|
|
10
|
-

|
|
11
|
+

|
|
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>
|
|
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** |
|
|
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** |
|
|
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 **
|
|
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/ #
|
|
639
|
+
โ โโโ hooks/ # 8 event hooks (runtime + git-hook)
|
|
639
640
|
โ โโโ rules/ # 8 modular governance rules
|
|
640
|
-
โ โโโ checklists/ # Verification checklists (
|
|
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.
|
|
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
|
|
package/lib/workflow-engine.js
CHANGED
|
@@ -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
|
-
"description": "๐ Trust-Grade AI development framework with a 29-module runtime engine โ 19 Agents, 32 Skills, 31 Commands, 14 Workflows, 8 Rules,
|
|
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": [
|