v0.3.0: Fix slash commands — add 9 workflows for Antigravity IDE

- Fix workflow frontmatter: remove 'name:' field (Antigravity uses
  filename as command name), add numbered steps format
- Add 6 new workflows: /debug, /tdd, /review, /verify, /finish-branch,
  /worktree — now 9 slash commands total
- Add workflow frontmatter validation to validate command
- Update check-pack.mjs for new workflow files
- Bump version to 0.3.0

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-19 08:26:12 +07:00
parent f411f52515
commit 208358e5bb
13 changed files with 123 additions and 16 deletions

View File

@@ -35,17 +35,19 @@ node bin/antigravity-superpowers.js init
---
## What's New in v0.2.0
## What's New in v0.3.0
| Feature | Description |
| --- | --- |
| `validate` command | Run 78 automated checks on your `.agent` profile (files, skills, frontmatter, legacy patterns, AGENTS mapping) |
| 9 slash commands | `/brainstorm`, `/write-plan`, `/execute-plan`, `/debug`, `/tdd`, `/review`, `/verify`, `/finish-branch`, `/worktree` |
| Workflow format fix | Fixed workflow frontmatter to follow Antigravity convention (no `name:` field, numbered steps) |
| `add-azure-skills` | Integrate 192 Microsoft Azure skills with curated bundles |
| `validate` command | Run automated checks on your `.agent` profile (files, skills, workflows, frontmatter, legacy patterns, AGENTS mapping) |
| `list` command | List all 13 bundled skills with names and descriptions |
| `--version` / `-v` | Show CLI version |
| `--dry-run` / `-n` | Preview files that would be copied without making changes |
| `--backup` / `-b` | Backup existing `.agent` to `.agent-backup-<timestamp>` before overwrite |
| 20 automated tests | Expanded from 3 to 20 tests covering CLI, init, and validate |
| Node >= 21 fix | Fixed `npm test` compatibility with newer Node.js versions |
---
@@ -132,7 +134,7 @@ antigravity-superpowers init
antigravity-superpowers init /path/to/project
```
This copies the complete `.agent` profile (13 skills, 3 workflows, validation tests) into your project root.
This copies the complete `.agent` profile (13 skills, 9 workflows/slash commands, validation tests) into your project root.
### 2. Validate the profile
@@ -174,7 +176,7 @@ Antigravity Superpowers — 13 skills available:
antigravity-superpowers init --dry-run
```
Shows all 43 files that would be copied, without making any changes.
Shows all 49 files that would be copied, without making any changes.
### 5. Update an existing profile
@@ -274,7 +276,21 @@ Global options:
| `using-superpowers` | Skill routing and session bootstrap |
| `writing-skills` | Create new skills that follow the system's conventions |
Plus supporting infrastructure: 3 workflows, 1 reviewer agent, validation tests, and an `AGENTS.md` contract that ties it all together.
**9 slash commands** (workflows) — type `/` in Antigravity chat to invoke:
| Command | Action |
| --- | --- |
| `/brainstorm` | Explore ideas before creative work |
| `/write-plan` | Create detailed implementation plan |
| `/execute-plan` | Execute plan step by step |
| `/debug` | Systematic debugging workflow |
| `/tdd` | Test-driven development |
| `/review` | Request structured code review |
| `/verify` | Verify work before claiming done |
| `/finish-branch` | Clean branch wrap-up |
| `/worktree` | Create isolated git worktree |
Plus supporting infrastructure: 1 reviewer agent, validation tests, and an `AGENTS.md` contract that ties it all together.
---