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
@@ -0,0 +1,29 @@
1
+ ---
2
+ mode: implement
3
+ description: "Code-focused execution mode — follow approved plan, build incrementally"
4
+ constraints: [plan-required, incremental-commits, tests-mandatory]
5
+ agent-focus: [architect, tdd-guide, code-reviewer]
6
+ ---
7
+
8
+ # Implement Mode Context
9
+
10
+ ## Behavioral Rules
11
+
12
+ - Follow the approved implementation plan step-by-step
13
+ - Write code that passes existing tests and adds new ones
14
+ - Commit incrementally — one logical change per commit
15
+ - Do not deviate from the plan without explicit user approval
16
+ - Apply project conventions and coding standards strictly
17
+
18
+ ## Loaded Skills
19
+
20
+ - `clean-code` — Code quality principles
21
+ - `testing-patterns` — TDD and test structure
22
+ - `architecture` — System design patterns
23
+
24
+ ## Exit Criteria
25
+
26
+ - All plan steps completed
27
+ - All tests pass (existing + new)
28
+ - Build succeeds without errors
29
+ - Code reviewed for quality standards
@@ -0,0 +1,27 @@
1
+ ---
2
+ mode: review
3
+ description: "Quality-focused critical analysis mode — verify standards compliance"
4
+ constraints: [critical-lens, no-bias, evidence-based]
5
+ agent-focus: [code-reviewer, security-reviewer]
6
+ ---
7
+
8
+ # Review Mode Context
9
+
10
+ ## Behavioral Rules
11
+
12
+ - Apply critical lens — assume nothing is correct until verified
13
+ - Check against all quality gates (lint, types, tests, security)
14
+ - No defense bias — report issues objectively regardless of author
15
+ - Classify findings by severity (CRITICAL / HIGH / MEDIUM / LOW)
16
+ - Block deployment for any CRITICAL or HIGH severity issue
17
+
18
+ ## Loaded Skills
19
+
20
+ - `verification-loop` — Sequential quality gate pipeline
21
+ - `security-practices` — OWASP vulnerability checks
22
+
23
+ ## Exit Criteria
24
+
25
+ - All quality gates pass (lint, type-check, tests, security)
26
+ - All CRITICAL and HIGH issues resolved
27
+ - Review report generated with verdict (APPROVE / BLOCK / WARNING)
@@ -0,0 +1,28 @@
1
+ ---
2
+ mode: ship
3
+ description: "Deployment-focused risk-aware mode — pre-flight checks, monitoring, rollback readiness"
4
+ constraints: [rollback-plan-required, health-check-mandatory, no-friday-deploys]
5
+ agent-focus: [devops-engineer, reliability-engineer]
6
+ ---
7
+
8
+ # Ship Mode Context
9
+
10
+ ## Behavioral Rules
11
+
12
+ - Verify all pre-flight checks pass before any deployment
13
+ - Require a documented rollback plan for every deploy
14
+ - Monitor health checks for minimum 15 minutes post-deploy
15
+ - No deployments on Fridays unless critical hotfix
16
+ - Follow the Production Merge Discipline from global rules
17
+
18
+ ## Loaded Skills
19
+
20
+ - `deployment-procedures` — CI/CD workflows and rollback strategies
21
+
22
+ ## Exit Criteria
23
+
24
+ - All pre-flight checks pass (tests, build, security, env vars)
25
+ - Rollback plan documented and verified
26
+ - Deployment executed successfully
27
+ - Health checks pass for observation period
28
+ - No error spikes in monitoring
@@ -0,0 +1,13 @@
1
+ {
2
+ "developers": [
3
+ {
4
+ "id": "9c1dbf58766b",
5
+ "name": "emredursun",
6
+ "email": "info.emredursun@gmail.com",
7
+ "role": "owner",
8
+ "registeredAt": "2026-03-14T00:18:01.952Z",
9
+ "lastActiveAt": "2026-03-14T00:18:01.952Z"
10
+ }
11
+ ],
12
+ "activeId": "9c1dbf58766b"
13
+ }
@@ -94,5 +94,27 @@
94
94
  "maxSkillsPerSession": 6,
95
95
  "warningThresholdPercent": 80,
96
96
  "description": "Limits prevent context overflow. The kit selects only domain-relevant agents and skills for each task, keeping within the LLM context window."
97
- }
97
+ },
98
+ "workflowBindings": [
99
+ { "workflow": "brainstorm", "loadAgents": [], "loadSkills": ["brainstorming"], "bindingType": "inferred" },
100
+ { "workflow": "quality-gate", "loadAgents": [], "loadSkills": ["brainstorming"], "bindingType": "inferred" },
101
+ { "workflow": "plan", "loadAgents": ["planner"], "loadSkills": ["plan-writing", "brainstorming"], "bindingType": "explicit" },
102
+ { "workflow": "create", "loadAgents": [], "loadSkills": ["app-builder", "clean-code"], "bindingType": "inferred" },
103
+ { "workflow": "enhance", "loadAgents": [], "loadSkills": ["clean-code", "testing-patterns"], "bindingType": "inferred" },
104
+ { "workflow": "preview", "loadAgents": [], "loadSkills": ["shell-conventions"], "bindingType": "inferred" },
105
+ { "workflow": "ui-ux-pro-max", "loadAgents": [], "loadSkills": ["ui-ux-pro-max", "frontend-patterns", "mobile-design"], "bindingType": "inferred" },
106
+ { "workflow": "test", "loadAgents": [], "loadSkills": ["testing-patterns", "webapp-testing"], "bindingType": "inferred" },
107
+ { "workflow": "review", "loadAgents": [], "loadSkills": ["verification-loop"], "bindingType": "inferred" },
108
+ { "workflow": "deploy", "loadAgents": [], "loadSkills": ["deployment-procedures"], "bindingType": "inferred" },
109
+ { "workflow": "debug", "loadAgents": [], "loadSkills": ["debugging-strategies"], "bindingType": "inferred" },
110
+ {
111
+ "workflow": "orchestrate",
112
+ "loadAgents": ["planner", "explorer-agent"],
113
+ "loadSkills": ["parallel-agents", "intelligent-routing"],
114
+ "bindingType": "explicit",
115
+ "dynamicAgentPool": ["architect", "backend-specialist", "frontend-specialist", "mobile-developer", "database-architect", "security-reviewer", "tdd-guide", "e2e-runner", "devops-engineer", "performance-optimizer", "reliability-engineer", "refactor-cleaner", "code-reviewer"]
116
+ },
117
+ { "workflow": "retrospective", "loadAgents": [], "loadSkills": ["verification-loop"], "bindingType": "inferred" },
118
+ { "workflow": "status", "loadAgents": [], "loadSkills": ["verification-loop"], "bindingType": "inferred" }
119
+ ]
98
120
  }
@@ -0,0 +1,29 @@
1
+ {
2
+ "entries": [
3
+ {
4
+ "name": "ag-skill-docker-compose",
5
+ "description": "Docker Compose orchestration skill for multi-container deployments",
6
+ "repository": "https://github.com/antigravity-community/ag-skill-docker-compose",
7
+ "version": "1.0.0",
8
+ "tags": ["docker", "compose", "containers", "deployment", "devops"],
9
+ "author": "antigravity-community"
10
+ },
11
+ {
12
+ "name": "ag-skill-graphql-designer",
13
+ "description": "GraphQL schema design and query generation skill",
14
+ "repository": "https://github.com/antigravity-community/ag-skill-graphql-designer",
15
+ "version": "0.9.0",
16
+ "tags": ["graphql", "api", "schema", "design", "queries"],
17
+ "author": "antigravity-community"
18
+ },
19
+ {
20
+ "name": "ag-skill-accessibility-audit",
21
+ "description": "WCAG compliance auditing and remediation suggestions",
22
+ "repository": "https://github.com/antigravity-community/ag-skill-accessibility-audit",
23
+ "version": "1.1.0",
24
+ "tags": ["accessibility", "wcag", "a11y", "audit", "compliance"],
25
+ "author": "antigravity-community"
26
+ }
27
+ ],
28
+ "lastUpdated": null
29
+ }
@@ -0,0 +1,14 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "description": "SRE reliability configuration — error budget tracking and operational thresholds",
4
+ "errorBudget": {
5
+ "enabled": true,
6
+ "description": "When error budget is exhausted, reliability work takes priority over feature work. Projects opt-in when monitoring infrastructure exists.",
7
+ "thresholds": {
8
+ "testFailureRatePercent": 5,
9
+ "buildFailureRatePercent": 2,
10
+ "deployRollbackRatePercent": 10
11
+ },
12
+ "resetCadence": "monthly"
13
+ }
14
+ }
@@ -0,0 +1,44 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "description": "Machine-readable SDLC phase-to-workflow mapping with bidirectional traversal",
4
+ "phases": {
5
+ "discover": {
6
+ "description": "Requirement exploration and validation",
7
+ "workflows": ["brainstorm", "quality-gate"],
8
+ "previous": null,
9
+ "next": "plan"
10
+ },
11
+ "plan": {
12
+ "description": "Structured implementation planning",
13
+ "workflows": ["plan"],
14
+ "previous": "discover",
15
+ "next": "build"
16
+ },
17
+ "build": {
18
+ "description": "Feature implementation and scaffolding",
19
+ "workflows": ["create", "enhance", "preview", "ui-ux-pro-max"],
20
+ "previous": "plan",
21
+ "next": "verify"
22
+ },
23
+ "verify": {
24
+ "description": "Testing and quality gate validation",
25
+ "workflows": ["test", "review"],
26
+ "previous": "build",
27
+ "next": "ship"
28
+ },
29
+ "ship": {
30
+ "description": "Production deployment with pre-flight checks",
31
+ "workflows": ["deploy"],
32
+ "previous": "verify",
33
+ "next": "evaluate"
34
+ },
35
+ "evaluate": {
36
+ "description": "Post-sprint retrospective audit",
37
+ "workflows": ["retrospective"],
38
+ "previous": "ship",
39
+ "next": "discover"
40
+ }
41
+ },
42
+ "reactive": ["debug", "orchestrate"],
43
+ "crossCutting": ["status"]
44
+ }
@@ -52,6 +52,14 @@
52
52
  "artifact": null,
53
53
  "startedAt": null,
54
54
  "completedAt": null
55
+ },
56
+ "MAINTAIN": {
57
+ "status": "pending",
58
+ "description": "Post-deploy monitoring and operational handoff",
59
+ "workflow": "status",
60
+ "artifact": null,
61
+ "startedAt": null,
62
+ "completedAt": null
55
63
  }
56
64
  },
57
65
  "transitions": [
@@ -111,9 +119,27 @@
111
119
  },
112
120
  {
113
121
  "from": "DEPLOY",
122
+ "to": "MAINTAIN",
123
+ "trigger": "Deployment health check passes",
124
+ "guard": "Health check verified healthy"
125
+ },
126
+ {
127
+ "from": "DEPLOY",
128
+ "to": "REVIEW",
129
+ "trigger": "Deployment health check fails",
130
+ "guard": "Health check failure detected"
131
+ },
132
+ {
133
+ "from": "IMPLEMENT",
134
+ "to": "PLAN",
135
+ "trigger": "Unexpected complexity discovered",
136
+ "guard": "Implementation reveals plan inadequacy"
137
+ },
138
+ {
139
+ "from": "MAINTAIN",
114
140
  "to": "IDLE",
115
- "trigger": "Deployment complete",
116
- "guard": "Health check passes"
141
+ "trigger": "Monitoring period complete",
142
+ "guard": "No issues detected during observation"
117
143
  }
118
144
  ],
119
145
  "history": []
@@ -6,12 +6,12 @@
6
6
  "description": "Executed at the beginning of every AI session",
7
7
  "enforcement": "runtime",
8
8
  "actions": [
9
- "Load session-context.md and session-state.json",
10
- "Read engine/loading-rules.json for context budget",
11
- "Read engine/workflow-state.json for lifecycle phase",
12
- "Verify git status is clean or understood",
13
- "Load domain-relevant agents and skills via loading-rules.json",
14
- "Present session state to user before proceeding"
9
+ { "action": "Load session-context.md and session-state.json", "severity": "critical", "onFailure": "block" },
10
+ { "action": "Read engine/loading-rules.json for context budget", "severity": "high", "onFailure": "warn" },
11
+ { "action": "Read engine/workflow-state.json for lifecycle phase", "severity": "high", "onFailure": "warn" },
12
+ { "action": "Verify git status is clean or understood", "severity": "medium", "onFailure": "warn" },
13
+ { "action": "Load domain-relevant agents and skills via loading-rules.json", "severity": "high", "onFailure": "warn" },
14
+ { "action": "Present session state to user before proceeding", "severity": "critical", "onFailure": "block" }
15
15
  ]
16
16
  },
17
17
  {
@@ -19,12 +19,12 @@
19
19
  "description": "Executed at the end of every AI session",
20
20
  "enforcement": "runtime",
21
21
  "actions": [
22
- "Update session-context.md with handoff notes",
23
- "Update session-state.json with metadata",
24
- "Update engine/workflow-state.json with phase progress",
25
- "Trigger continuous-learning skill for pattern extraction",
26
- "Update docs/ROADMAP.md if sprint items changed",
27
- "Commit tracking files together"
22
+ { "action": "Update session-context.md with handoff notes", "severity": "critical", "onFailure": "block" },
23
+ { "action": "Update session-state.json with metadata", "severity": "critical", "onFailure": "block" },
24
+ { "action": "Update engine/workflow-state.json with phase progress", "severity": "high", "onFailure": "warn" },
25
+ { "action": "Trigger continuous-learning skill for pattern extraction", "severity": "low", "onFailure": "log" },
26
+ { "action": "Update docs/ROADMAP.md if sprint items changed", "severity": "medium", "onFailure": "warn" },
27
+ { "action": "Commit tracking files together", "severity": "high", "onFailure": "warn" }
28
28
  ]
29
29
  },
30
30
  {
@@ -32,17 +32,19 @@
32
32
  "description": "Verification before any git commit",
33
33
  "enforcement": "runtime",
34
34
  "actions": [
35
- "Verify build passes (npm run build)",
36
- "Verify lint passes (npm run lint)",
37
- "Verify tests pass (npm test)",
38
- "Check for console.log statements in production code",
39
- "Verify no TypeScript errors (npx tsc --noEmit)"
35
+ { "action": "Verify build passes (npm run build)", "severity": "critical", "onFailure": "block" },
36
+ { "action": "Verify lint passes (npm run lint)", "severity": "critical", "onFailure": "block" },
37
+ { "action": "Verify tests pass (npm test)", "severity": "critical", "onFailure": "block" },
38
+ { "action": "Check for console.log statements in production code", "severity": "medium", "onFailure": "warn" },
39
+ { "action": "Verify no TypeScript errors (npx tsc --noEmit)", "severity": "critical", "onFailure": "block" }
40
40
  ]
41
41
  },
42
42
  {
43
43
  "event": "secret-detection",
44
44
  "description": "Scan for accidentally committed secrets",
45
45
  "enforcement": "git-hook",
46
+ "severity": "critical",
47
+ "onFailure": "block",
46
48
  "referenceScript": ".githooks/pre-commit",
47
49
  "patterns": [
48
50
  "sk-[a-zA-Z0-9]{20,}",
@@ -60,10 +62,10 @@
60
62
  "description": "Triggered when workflow lifecycle phase changes",
61
63
  "enforcement": "runtime",
62
64
  "actions": [
63
- "Validate transition guard from engine/workflow-state.json",
64
- "Record transition in workflow-state.json history",
65
- "Load/unload agents appropriate for new phase",
66
- "Notify user of phase change with next suggested action"
65
+ { "action": "Validate transition guard from engine/workflow-state.json", "severity": "critical", "onFailure": "block" },
66
+ { "action": "Record transition in workflow-state.json history", "severity": "high", "onFailure": "warn" },
67
+ { "action": "Load/unload agents appropriate for new phase", "severity": "high", "onFailure": "warn" },
68
+ { "action": "Notify user of phase change with next suggested action", "severity": "medium", "onFailure": "warn" }
67
69
  ]
68
70
  },
69
71
  {
@@ -71,10 +73,10 @@
71
73
  "description": "Triggered at sprint boundaries for health assessment",
72
74
  "enforcement": "runtime",
73
75
  "actions": [
74
- "Sprint orchestrator generates health report",
75
- "Review velocity metrics against plan",
76
- "Identify carry-over candidates",
77
- "Produce sprint retrospective if ending"
76
+ { "action": "Sprint orchestrator generates health report", "severity": "high", "onFailure": "warn" },
77
+ { "action": "Review velocity metrics against plan", "severity": "medium", "onFailure": "warn" },
78
+ { "action": "Identify carry-over candidates", "severity": "medium", "onFailure": "log" },
79
+ { "action": "Produce sprint retrospective if ending", "severity": "high", "onFailure": "warn" }
78
80
  ]
79
81
  }
80
82
  ]
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "schemaVersion": "1.0.0",
3
- "kitVersion": "2.1.0",
3
+ "kitVersion": "2.2.0",
4
+ "lastAuditedAt": "2026-03-13T19:55:00Z",
4
5
  "description": "Antigravity AI Kit — Trust-Grade AI Development Framework",
5
6
  "repository": "https://github.com/besync-labs/antigravity-ai-kit",
6
7
  "capabilities": {
@@ -33,7 +34,7 @@
33
34
  "directory": "commands/"
34
35
  },
35
36
  "skills": {
36
- "count": 27,
37
+ "count": 31,
37
38
  "items": [
38
39
  { "name": "api-patterns", "directory": "skills/api-patterns/" },
39
40
  { "name": "app-builder", "directory": "skills/app-builder/" },
@@ -51,6 +52,8 @@
51
52
  { "name": "frontend-patterns", "directory": "skills/frontend-patterns/" },
52
53
  { "name": "git-workflow", "directory": "skills/git-workflow/" },
53
54
  { "name": "intelligent-routing", "directory": "skills/intelligent-routing/" },
55
+ { "name": "i18n-localization", "directory": "skills/i18n-localization/" },
56
+ { "name": "mcp-integration", "directory": "skills/mcp-integration/" },
54
57
  { "name": "mobile-design", "directory": "skills/mobile-design/" },
55
58
  { "name": "nodejs-patterns", "directory": "skills/nodejs-patterns/" },
56
59
  { "name": "parallel-agents", "directory": "skills/parallel-agents/" },
@@ -60,12 +63,14 @@
60
63
  { "name": "strategic-compact", "directory": "skills/strategic-compact/" },
61
64
  { "name": "testing-patterns", "directory": "skills/testing-patterns/" },
62
65
  { "name": "typescript-expert", "directory": "skills/typescript-expert/" },
66
+ { "name": "ui-ux-pro-max", "directory": "skills/ui-ux-pro-max/" },
63
67
  { "name": "verification-loop", "directory": "skills/verification-loop/" },
64
- { "name": "webapp-testing", "directory": "skills/webapp-testing/" }
68
+ { "name": "webapp-testing", "directory": "skills/webapp-testing/" },
69
+ { "name": "shell-conventions", "directory": "skills/shell-conventions/" }
65
70
  ]
66
71
  },
67
72
  "workflows": {
68
- "count": 11,
73
+ "count": 14,
69
74
  "items": [
70
75
  { "name": "brainstorm", "file": "workflows/brainstorm.md" },
71
76
  { "name": "create", "file": "workflows/create.md" },
@@ -75,6 +80,9 @@
75
80
  { "name": "orchestrate", "file": "workflows/orchestrate.md" },
76
81
  { "name": "plan", "file": "workflows/plan.md" },
77
82
  { "name": "preview", "file": "workflows/preview.md" },
83
+ { "name": "quality-gate", "file": "workflows/quality-gate.md" },
84
+ { "name": "retrospective", "file": "workflows/retrospective.md" },
85
+ { "name": "review", "file": "workflows/review.md" },
78
86
  { "name": "status", "file": "workflows/status.md" },
79
87
  { "name": "test", "file": "workflows/test.md" },
80
88
  { "name": "ui-ux-pro-max", "file": "workflows/ui-ux-pro-max.md" }
package/.agent/rules.md CHANGED
@@ -60,7 +60,7 @@ Standardized entry points for developer intent across 8 categories.
60
60
 
61
61
  See `commands/README.md` for full documentation.
62
62
 
63
- ### Skills (27 Core)
63
+ ### Skills (28 Core)
64
64
 
65
65
  | Skill | Purpose |
66
66
  | ---------------------------------------------------------------- | ----------------------------- |
@@ -90,6 +90,7 @@ See `commands/README.md` for full documentation.
90
90
  | [security-practices](./skills/security-practices/SKILL.md) | OWASP, vulnerability prevention |
91
91
  | [docker-patterns](./skills/docker-patterns/SKILL.md) | Containerization |
92
92
  | [git-workflow](./skills/git-workflow/SKILL.md) | Branching, commits |
93
+ | [mcp-integration](./skills/mcp-integration/SKILL.md) | MCP server integration |
93
94
 
94
95
  ### Skill Loading Protocol
95
96
 
@@ -1,7 +1,7 @@
1
1
  # Antigravity AI Kit — Skills
2
2
 
3
3
  > **Purpose**: Workflow definitions and domain knowledge extensions
4
- > **Count**: 26 Skills (4 Operational + 3 Orchestration + 12 Domain + 7 Development)
4
+ > **Count**: 31 Skills (5 Operational + 4 Orchestration + 13 Domain + 9 Development)
5
5
 
6
6
  ---
7
7
 
@@ -25,7 +25,7 @@ Skills are automatically loaded based on task context. Agents invoke relevant sk
25
25
 
26
26
  ---
27
27
 
28
- ## Operational Skills (4)
28
+ ## Operational Skills (5)
29
29
 
30
30
  | Skill | Purpose |
31
31
  | :-------------------------------------------------- | :------------------------ |
@@ -33,20 +33,22 @@ Skills are automatically loaded based on task context. Agents invoke relevant sk
33
33
  | [continuous-learning](continuous-learning/SKILL.md) | Pattern extraction (PAAL) |
34
34
  | [strategic-compact](strategic-compact/SKILL.md) | Context window management |
35
35
  | [eval-harness](eval-harness/SKILL.md) | Performance evaluation |
36
+ | [context-budget](context-budget/SKILL.md) | LLM token budget mgmt |
36
37
 
37
38
  ---
38
39
 
39
- ## Orchestration Skills (3)
40
+ ## Orchestration Skills (4)
40
41
 
41
42
  | Skill | Purpose |
42
43
  | :-------------------------------------------------- | :-------------------------- |
43
44
  | [intelligent-routing](intelligent-routing/SKILL.md) | Automatic agent selection |
44
45
  | [parallel-agents](parallel-agents/SKILL.md) | Multi-agent orchestration |
45
46
  | [behavioral-modes](behavioral-modes/SKILL.md) | Adaptive AI operation modes |
47
+ | [mcp-integration](mcp-integration/SKILL.md) | MCP server integration |
46
48
 
47
49
  ---
48
50
 
49
- ## Domain Skills (12)
51
+ ## Domain Skills (13)
50
52
 
51
53
  ### Architecture & Design
52
54
 
@@ -57,6 +59,7 @@ Skills are automatically loaded based on task context. Agents invoke relevant sk
57
59
  | [database-design](database-design/SKILL.md) | Schema optimization |
58
60
  | [frontend-patterns](frontend-patterns/SKILL.md) | React/component patterns |
59
61
  | [nodejs-patterns](nodejs-patterns/SKILL.md) | Backend patterns |
62
+ | [i18n-localization](i18n-localization/SKILL.md) | Internationalization |
60
63
 
61
64
  ### Code Quality
62
65
 
@@ -77,7 +80,7 @@ Skills are automatically loaded based on task context. Agents invoke relevant sk
77
80
 
78
81
  ---
79
82
 
80
- ## Development Skills (7)
83
+ ## Development Skills (9)
81
84
 
82
85
  | Skill | Purpose |
83
86
  | :------------------------------------------------------ | :---------------------------- |
@@ -88,6 +91,8 @@ Skills are automatically loaded based on task context. Agents invoke relevant sk
88
91
  | [performance-profiling](performance-profiling/SKILL.md) | Core Web Vitals optimization |
89
92
  | [brainstorming](brainstorming/SKILL.md) | Socratic discovery protocol |
90
93
  | [plan-writing](plan-writing/SKILL.md) | Structured task breakdown |
94
+ | [shell-conventions](shell-conventions/SKILL.md) | PowerShell/Bash conventions |
95
+ | [ui-ux-pro-max](ui-ux-pro-max/SKILL.md) | Premium UI/UX design system |
91
96
 
92
97
  ---
93
98