antigravity-ai-kit 3.0.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.
- package/.agent/commands/help.md +252 -31
- package/README.md +2 -2
- package/bin/ag-kit.js +4 -0
- package/package.json +1 -1
package/.agent/commands/help.md
CHANGED
|
@@ -1,31 +1,252 @@
|
|
|
1
|
-
---
|
|
2
|
-
description:
|
|
3
|
-
---
|
|
4
|
-
|
|
5
|
-
# /help Command
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
## Usage
|
|
10
|
-
|
|
11
|
-
```
|
|
12
|
-
/help #
|
|
13
|
-
/help
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
/help
|
|
20
|
-
/help plan
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
1
|
+
---
|
|
2
|
+
description: Comprehensive reference for all Antigravity AI Kit capabilities
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# /help Command
|
|
6
|
+
|
|
7
|
+
Your complete guide to the Antigravity AI Kit. Type `/help` for a quick overview, or drill down into specific categories.
|
|
8
|
+
|
|
9
|
+
## Usage
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
/help # Quick overview of all capabilities
|
|
13
|
+
/help commands # All 31 slash commands with descriptions
|
|
14
|
+
/help workflows # All 14 workflows with descriptions
|
|
15
|
+
/help agents # All 19 AI agents with domains
|
|
16
|
+
/help skills # All 31 skill modules
|
|
17
|
+
/help rules # Governance rules
|
|
18
|
+
/help checklists # Quality gate checklists
|
|
19
|
+
/help cli # Terminal CLI commands (ag-kit)
|
|
20
|
+
/help <command-name> # Detail on a specific command (e.g., /help plan)
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## Quick Overview
|
|
26
|
+
|
|
27
|
+
**Antigravity AI Kit v3.0.0** — Trust-Grade AI Development Framework
|
|
28
|
+
|
|
29
|
+
| Category | Count | Description |
|
|
30
|
+
|:---------|:------|:------------|
|
|
31
|
+
| ⌨️ Commands | 31 | Slash commands for every development task |
|
|
32
|
+
| 🔄 Workflows | 14 | Multi-step development lifecycles |
|
|
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) |
|
|
38
|
+
|
|
39
|
+
### Getting Started
|
|
40
|
+
|
|
41
|
+
```
|
|
42
|
+
/status → Check your session and project health
|
|
43
|
+
/plan → Create an implementation plan
|
|
44
|
+
/create → Build a new feature from scratch
|
|
45
|
+
/review → Run quality gates before committing
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
### Recommended Workflow
|
|
49
|
+
|
|
50
|
+
```
|
|
51
|
+
/brainstorm → /plan → /create → /test → /review → /deploy
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
56
|
+
## Commands (31)
|
|
57
|
+
|
|
58
|
+
### Core Workflow
|
|
59
|
+
|
|
60
|
+
| Command | Description |
|
|
61
|
+
|:--------|:------------|
|
|
62
|
+
| `/plan` | Create structured implementation plan with task breakdown |
|
|
63
|
+
| `/implement` | Execute an approved plan step by step |
|
|
64
|
+
| `/verify` | Run all quality gates (lint, types, tests, security, build) |
|
|
65
|
+
| `/status` | Check project health, session state, and capabilities |
|
|
66
|
+
|
|
67
|
+
### Feature Development
|
|
68
|
+
|
|
69
|
+
| Command | Description |
|
|
70
|
+
|:--------|:------------|
|
|
71
|
+
| `/build` | Build a new feature from scratch |
|
|
72
|
+
| `/fix` | Fix linting, type, or build errors |
|
|
73
|
+
| `/debug` | Systematic debugging with hypothesis tracking |
|
|
74
|
+
| `/refactor` | Improve code quality without changing behavior |
|
|
75
|
+
| `/cook` | Full scratch-to-done workflow (plan → build → test → review) |
|
|
76
|
+
| `/design` | UI/UX design specifications and mockups |
|
|
77
|
+
|
|
78
|
+
### Testing & Quality
|
|
79
|
+
|
|
80
|
+
| Command | Description |
|
|
81
|
+
|:--------|:------------|
|
|
82
|
+
| `/tdd` | Test-driven development — write tests first, then implement |
|
|
83
|
+
| `/code-review` | Comprehensive code review with security analysis |
|
|
84
|
+
| `/security-scan` | Security audit and vulnerability scan |
|
|
85
|
+
| `/perf` | Performance analysis and optimization |
|
|
86
|
+
| `/eval` | Evaluate metrics and measure quality |
|
|
87
|
+
|
|
88
|
+
### Documentation & Git
|
|
89
|
+
|
|
90
|
+
| Command | Description |
|
|
91
|
+
|:--------|:------------|
|
|
92
|
+
| `/doc` | Generate or update documentation |
|
|
93
|
+
| `/adr` | Create Architecture Decision Record |
|
|
94
|
+
| `/changelog` | Generate changelog from commits |
|
|
95
|
+
| `/git` | Git operations with best practices |
|
|
96
|
+
| `/pr` | Create or manage pull requests |
|
|
97
|
+
| `/checkpoint` | Save progress checkpoint for session continuity |
|
|
98
|
+
|
|
99
|
+
### Exploration & Research
|
|
100
|
+
|
|
101
|
+
| Command | Description |
|
|
102
|
+
|:--------|:------------|
|
|
103
|
+
| `/scout` | Explore and understand an unfamiliar codebase |
|
|
104
|
+
| `/research` | Research technologies, libraries, or solutions |
|
|
105
|
+
| `/ask` | Ask questions about code, architecture, or patterns |
|
|
106
|
+
|
|
107
|
+
### Infrastructure & Integration
|
|
108
|
+
|
|
109
|
+
| Command | Description |
|
|
110
|
+
|:--------|:------------|
|
|
111
|
+
| `/integrate` | Third-party service integration |
|
|
112
|
+
| `/db` | Database schema design and migrations |
|
|
113
|
+
| `/deploy` | Deploy to target environment with pre-flight checks |
|
|
114
|
+
| `/setup` | Configure a new project with Antigravity AI Kit |
|
|
115
|
+
|
|
116
|
+
### Context Management
|
|
117
|
+
|
|
118
|
+
| Command | Description |
|
|
119
|
+
|:--------|:------------|
|
|
120
|
+
| `/learn` | Extract reusable patterns from current session (PAAL cycle) |
|
|
121
|
+
| `/compact` | Compress context window for long sessions |
|
|
122
|
+
| `/help` | This reference — show available capabilities |
|
|
123
|
+
|
|
124
|
+
---
|
|
125
|
+
|
|
126
|
+
## Workflows (14)
|
|
127
|
+
|
|
128
|
+
Workflows are multi-step development lifecycles. Use them with the `/` prefix.
|
|
129
|
+
|
|
130
|
+
| Workflow | Description | Key Steps |
|
|
131
|
+
|:---------|:------------|:----------|
|
|
132
|
+
| `/brainstorm` | Structured ideation and discovery | Socratic questioning → options → decision |
|
|
133
|
+
| `/create` | Build new features from scratch | Scaffold → implement → test → review |
|
|
134
|
+
| `/debug` | Systematic debugging | Reproduce → hypothesize → verify → fix |
|
|
135
|
+
| `/deploy` | Production deployment | Pre-flight → execute → verify → monitor |
|
|
136
|
+
| `/enhance` | Iterative feature improvement | Analyze → plan → implement → validate |
|
|
137
|
+
| `/orchestrate` | Multi-agent task coordination | Decompose → delegate → merge → verify |
|
|
138
|
+
| `/plan` | Implementation planning | Research → design → breakdown → verify |
|
|
139
|
+
| `/preview` | Local dev server management | Start → verify → iterate → stop |
|
|
140
|
+
| `/quality-gate` | Pre-task validation protocol | Market research → gap analysis → ethics review |
|
|
141
|
+
| `/retrospective` | Sprint audit and review | Metrics → findings → action items |
|
|
142
|
+
| `/review` | Quality gate pipeline | Lint → types → tests → security → build |
|
|
143
|
+
| `/status` | Project state overview | Session → git → health → capabilities |
|
|
144
|
+
| `/test` | Systematic test writing | Strategy → write → run → coverage |
|
|
145
|
+
| `/ui-ux-pro-max` | Premium UI/UX design | Style → palette → typography → implement |
|
|
146
|
+
|
|
147
|
+
---
|
|
148
|
+
|
|
149
|
+
## Agents (19)
|
|
150
|
+
|
|
151
|
+
Agents are specialized AI roles. They are automatically activated based on task context, or you can request a specific agent.
|
|
152
|
+
|
|
153
|
+
| Agent | Domain |
|
|
154
|
+
|:------|:-------|
|
|
155
|
+
| `architect` | System design, DDD, Hexagonal Architecture |
|
|
156
|
+
| `backend-specialist` | Node.js, NestJS, API design |
|
|
157
|
+
| `build-error-resolver` | Rapid build/compile error fixes |
|
|
158
|
+
| `code-reviewer` | Quality + security code review |
|
|
159
|
+
| `database-architect` | Schema design, queries, optimization |
|
|
160
|
+
| `devops-engineer` | CI/CD, Docker, deployment pipelines |
|
|
161
|
+
| `doc-updater` | Documentation synchronization |
|
|
162
|
+
| `e2e-runner` | End-to-end test execution |
|
|
163
|
+
| `explorer-agent` | Codebase discovery and mapping |
|
|
164
|
+
| `frontend-specialist` | React, Next.js, UI architecture |
|
|
165
|
+
| `knowledge-agent` | RAG retrieval and context lookup |
|
|
166
|
+
| `mobile-developer` | React Native, Expo mobile development |
|
|
167
|
+
| `performance-optimizer` | Core Web Vitals, profiling, optimization |
|
|
168
|
+
| `planner` | Task breakdown, Socratic analysis |
|
|
169
|
+
| `refactor-cleaner` | Dead code cleanup, code improvement |
|
|
170
|
+
| `reliability-engineer` | SRE, production readiness, SLA monitoring |
|
|
171
|
+
| `security-reviewer` | Vulnerability analysis, OWASP compliance |
|
|
172
|
+
| `sprint-orchestrator` | Sprint planning, velocity tracking |
|
|
173
|
+
| `tdd-guide` | Test-first development enforcement |
|
|
174
|
+
|
|
175
|
+
---
|
|
176
|
+
|
|
177
|
+
## Skills (31)
|
|
178
|
+
|
|
179
|
+
Skills are domain knowledge modules that agents use. They are loaded automatically based on task context.
|
|
180
|
+
|
|
181
|
+
| Category | Skills |
|
|
182
|
+
|:---------|:-------|
|
|
183
|
+
| **Architecture** | `architecture`, `api-patterns`, `clean-code`, `database-design`, `docker-patterns` |
|
|
184
|
+
| **Frontend** | `frontend-patterns`, `ui-ux-pro-max`, `mobile-design`, `i18n-localization` |
|
|
185
|
+
| **Backend** | `nodejs-patterns`, `typescript-expert`, `security-practices` |
|
|
186
|
+
| **Testing** | `testing-patterns`, `webapp-testing`, `eval-harness` |
|
|
187
|
+
| **DevOps** | `deployment-procedures`, `git-workflow`, `shell-conventions` |
|
|
188
|
+
| **AI & Orchestration** | `intelligent-routing`, `parallel-agents`, `mcp-integration`, `context-budget`, `behavioral-modes` |
|
|
189
|
+
| **Planning** | `brainstorming`, `plan-writing`, `strategic-compact`, `continuous-learning` |
|
|
190
|
+
| **Performance** | `performance-profiling` |
|
|
191
|
+
| **Scaffolding** | `app-builder` |
|
|
192
|
+
| **Debugging** | `debugging-strategies` |
|
|
193
|
+
| **Verification** | `verification-loop` |
|
|
194
|
+
|
|
195
|
+
---
|
|
196
|
+
|
|
197
|
+
## Rules (4)
|
|
198
|
+
|
|
199
|
+
Rules are immutable governance constraints that all agents must follow.
|
|
200
|
+
|
|
201
|
+
| Rule | Purpose |
|
|
202
|
+
|:-----|:--------|
|
|
203
|
+
| `coding-style` | Naming conventions, file limits, type safety |
|
|
204
|
+
| `git-workflow` | Conventional commits, atomic changes, branch strategy |
|
|
205
|
+
| `security` | Secret management, input validation, OWASP |
|
|
206
|
+
| `testing` | Test-first, coverage targets, test naming |
|
|
207
|
+
|
|
208
|
+
---
|
|
209
|
+
|
|
210
|
+
## Checklists (3)
|
|
211
|
+
|
|
212
|
+
Checklists are quality gates run at specific lifecycle moments.
|
|
213
|
+
|
|
214
|
+
| Checklist | When | Key Checks |
|
|
215
|
+
|:----------|:-----|:-----------|
|
|
216
|
+
| `session-start` | Beginning of each session | Read context, verify git, check dependencies |
|
|
217
|
+
| `session-end` | End of each session | Update ROADMAP, CHANGELOG, commit tracking files |
|
|
218
|
+
| `pre-commit` | Before git commit | Tests pass, lint clean, no secrets, build succeeds |
|
|
219
|
+
|
|
220
|
+
---
|
|
221
|
+
|
|
222
|
+
## CLI Commands (ag-kit)
|
|
223
|
+
|
|
224
|
+
Terminal commands available after installing the kit:
|
|
225
|
+
|
|
226
|
+
| Command | Description |
|
|
227
|
+
|:--------|:------------|
|
|
228
|
+
| `ag-kit init` | Install .agent/ into your project |
|
|
229
|
+
| `ag-kit status` | Show project health dashboard |
|
|
230
|
+
| `ag-kit verify` | Run manifest integrity checks (90 checks) |
|
|
231
|
+
| `ag-kit scan` | Enhanced security scanning |
|
|
232
|
+
| `ag-kit update` | Update to latest version (diff-based, preserves customizations) |
|
|
233
|
+
| `ag-kit heal` | Detect and diagnose CI failures |
|
|
234
|
+
| `ag-kit plugin list` | List installed plugins |
|
|
235
|
+
| `ag-kit plugin install <path>` | Install a plugin |
|
|
236
|
+
| `ag-kit plugin remove <name>` | Remove a plugin |
|
|
237
|
+
| `ag-kit market search <query>` | Search marketplace plugins |
|
|
238
|
+
| `ag-kit market info <name>` | Get marketplace plugin details |
|
|
239
|
+
| `ag-kit market install <name>` | Install from marketplace |
|
|
240
|
+
|
|
241
|
+
---
|
|
242
|
+
|
|
243
|
+
## Quick Reference Card
|
|
244
|
+
|
|
245
|
+
```
|
|
246
|
+
Start here: /status → /plan → /create → /review
|
|
247
|
+
Debug issues: /debug → /fix → /verify
|
|
248
|
+
Write tests: /tdd → /test → /verify
|
|
249
|
+
Deploy: /review → /deploy
|
|
250
|
+
Learn more: /help <topic>
|
|
251
|
+
Terminal: ag-kit verify | ag-kit scan | ag-kit status
|
|
252
|
+
```
|
package/README.md
CHANGED
|
@@ -132,7 +132,7 @@ ag-kit scan # Security scan
|
|
|
132
132
|
graph TB
|
|
133
133
|
subgraph "User Interface Layer"
|
|
134
134
|
CMD["Slash Commands<br/>31 commands"]
|
|
135
|
-
WF["Workflows<br/>
|
|
135
|
+
WF["Workflows<br/>14 templates"]
|
|
136
136
|
end
|
|
137
137
|
|
|
138
138
|
subgraph "Intelligence Layer"
|
|
@@ -300,7 +300,7 @@ EXPLORE → PLAN → IMPLEMENT → VERIFY → REVIEW → DEPLOY
|
|
|
300
300
|
| `/compact` | Compress context |
|
|
301
301
|
| `/eval` | Evaluate metrics |
|
|
302
302
|
| `/setup` | Configure project |
|
|
303
|
-
| `/help` |
|
|
303
|
+
| `/help` | **Comprehensive reference** — commands, workflows, agents, skills, rules, checklists |
|
|
304
304
|
|
|
305
305
|
---
|
|
306
306
|
|
package/bin/ag-kit.js
CHANGED
|
@@ -87,6 +87,10 @@ ${colors.bright}Examples:${colors.reset}
|
|
|
87
87
|
ag-kit init --force
|
|
88
88
|
ag-kit scan
|
|
89
89
|
ag-kit plugin list
|
|
90
|
+
|
|
91
|
+
${colors.bright}IDE Reference:${colors.reset}
|
|
92
|
+
Type ${colors.cyan}/help${colors.reset} in your AI-powered IDE for the full reference:
|
|
93
|
+
commands, workflows, agents, skills, rules, and checklists.
|
|
90
94
|
`);
|
|
91
95
|
}
|
|
92
96
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "antigravity-ai-kit",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "🚀 Trust-Grade AI development framework with a 21-module runtime engine — 19 Agents, 31 Skills, 31 Commands, 14 Workflows, 261 Tests. Workflow enforcement, task governance, agent reputation, self-healing, and skill marketplace.",
|
|
5
5
|
"main": "bin/ag-kit.js",
|
|
6
6
|
"bin": {
|