antigravity-ai-kit 3.5.2 → 3.5.3
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 +1 -1
- 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 +1 -1
- package/.agent/commands/help.md +1 -1
- package/.agent/engine/identity.json +2 -11
- package/.agent/manifest.json +1 -1
- package/README.md +1 -1
- package/package.json +3 -2
package/.agent/CheatSheet.md
CHANGED
package/.agent/commands/help.md
CHANGED
|
@@ -24,7 +24,7 @@ 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.5.
|
|
27
|
+
**Antigravity AI Kit v3.5.3** — Trust-Grade AI Development Framework
|
|
28
28
|
|
|
29
29
|
| Category | Count | Description |
|
|
30
30
|
|:---------|:------|:------------|
|
|
@@ -1,13 +1,4 @@
|
|
|
1
1
|
{
|
|
2
|
-
"developers": [
|
|
3
|
-
|
|
4
|
-
"id": "9c1dbf58766b",
|
|
5
|
-
"name": "emredursun",
|
|
6
|
-
"email": "info.emredursun@gmail.com",
|
|
7
|
-
"role": "owner",
|
|
8
|
-
"registeredAt": "2026-03-16T17:02:45.476Z",
|
|
9
|
-
"lastActiveAt": "2026-03-16T17:02:45.476Z"
|
|
10
|
-
}
|
|
11
|
-
],
|
|
12
|
-
"activeId": "9c1dbf58766b"
|
|
2
|
+
"developers": [],
|
|
3
|
+
"activeId": null
|
|
13
4
|
}
|
package/.agent/manifest.json
CHANGED
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# 🚀 Antigravity AI Kit
|
|
2
2
|
|
|
3
|
-

|
|
4
4
|

|
|
5
5
|

|
|
6
6
|

|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "antigravity-ai-kit",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.3",
|
|
4
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": {
|
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
"test": "vitest run",
|
|
11
11
|
"test:watch": "vitest watch",
|
|
12
12
|
"preversion": "npm test",
|
|
13
|
-
"version": "node scripts/sync-version.js && git add -A",
|
|
13
|
+
"version": "node scripts/sync-version.js && git add -A -- . ':!.agent/engine/identity.json'",
|
|
14
|
+
"prepublishOnly": "node scripts/clean-identity.js",
|
|
14
15
|
"postinstall": "echo '✅ Antigravity AI Kit installed! Run: ag-kit init'"
|
|
15
16
|
},
|
|
16
17
|
"keywords": [
|