gsd-antigravity-kit 2.0.0 → 2.1.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/skills/gsd/SKILL.md +26 -4
- package/.agent/skills/gsd/VERSION +1 -1
- package/.agent/skills/gsd/assets/templates/AI-SPEC.md +246 -0
- package/.agent/skills/gsd/assets/templates/DEBUG.md +7 -2
- package/.agent/skills/gsd/assets/templates/config.json +56 -48
- package/.agent/skills/gsd/assets/templates/research.md +40 -0
- package/.agent/skills/gsd/assets/templates/spec.md +307 -0
- package/.agent/skills/gsd/assets/templates/state.md +8 -0
- package/.agent/skills/gsd/bin/gsd-tools.cjs +212 -11
- package/.agent/skills/gsd/bin/help-manifest.json +8 -2
- package/.agent/skills/gsd/bin/hooks/gsd-check-update-worker.js +108 -0
- package/.agent/skills/gsd/bin/hooks/gsd-check-update.js +14 -89
- package/.agent/skills/gsd/bin/hooks/gsd-context-monitor.js +34 -5
- package/.agent/skills/gsd/bin/hooks/gsd-phase-boundary.sh +1 -0
- package/.agent/skills/gsd/bin/hooks/gsd-prompt-guard.js +1 -1
- package/.agent/skills/gsd/bin/hooks/gsd-read-guard.js +6 -1
- package/.agent/skills/gsd/bin/hooks/gsd-session-state.sh +1 -0
- package/.agent/skills/gsd/bin/hooks/gsd-statusline.js +150 -16
- package/.agent/skills/gsd/bin/hooks/gsd-validate-commit.sh +1 -0
- package/.agent/skills/gsd/bin/hooks/gsd-workflow-guard.js +1 -1
- package/.agent/skills/gsd/bin/lib/audit.cjs +757 -0
- package/.agent/skills/gsd/bin/lib/commands.cjs +17 -7
- package/.agent/skills/gsd/bin/lib/config.cjs +66 -20
- package/.agent/skills/gsd/bin/lib/core.cjs +212 -12
- package/.agent/skills/gsd/bin/lib/frontmatter.cjs +6 -8
- package/.agent/skills/gsd/bin/lib/graphify.cjs +494 -0
- package/.agent/skills/gsd/bin/lib/gsd2-import.cjs +511 -0
- package/.agent/skills/gsd/bin/lib/init.cjs +371 -18
- package/.agent/skills/gsd/bin/lib/intel.cjs +9 -30
- package/.agent/skills/gsd/bin/lib/milestone.cjs +18 -17
- package/.agent/skills/gsd/bin/lib/model-profiles.cjs +1 -0
- package/.agent/skills/gsd/bin/lib/phase.cjs +225 -98
- package/.agent/skills/gsd/bin/lib/profile-output.cjs +17 -5
- package/.agent/skills/gsd/bin/lib/roadmap.cjs +12 -5
- package/.agent/skills/gsd/bin/lib/state.cjs +394 -129
- package/.agent/skills/gsd/bin/lib/template.cjs +8 -4
- package/.agent/skills/gsd/bin/lib/uat.cjs +2 -1
- package/.agent/skills/gsd/bin/lib/verify.cjs +111 -42
- package/.agent/skills/gsd/migration_report.md +2 -2
- package/.agent/skills/gsd/references/agents/gsd-advisor-researcher.md +23 -0
- package/.agent/skills/gsd/references/agents/gsd-ai-researcher.md +133 -0
- package/.agent/skills/gsd/references/agents/gsd-code-fixer.md +11 -10
- package/.agent/skills/gsd/references/agents/gsd-code-reviewer.md +2 -2
- package/.agent/skills/gsd/references/agents/gsd-codebase-mapper.md +13 -2
- package/.agent/skills/gsd/references/agents/gsd-debug-session-manager.md +314 -0
- package/.agent/skills/gsd/references/agents/gsd-debugger.md +147 -76
- package/.agent/skills/gsd/references/agents/gsd-doc-verifier.md +1 -1
- package/.agent/skills/gsd/references/agents/gsd-doc-writer.md +615 -602
- package/.agent/skills/gsd/references/agents/gsd-domain-researcher.md +153 -0
- package/.agent/skills/gsd/references/agents/gsd-eval-auditor.md +175 -0
- package/.agent/skills/gsd/references/agents/gsd-eval-planner.md +154 -0
- package/.agent/skills/gsd/references/agents/gsd-executor.md +108 -38
- package/.agent/skills/gsd/references/agents/gsd-framework-selector.md +160 -0
- package/.agent/skills/gsd/references/agents/gsd-integration-checker.md +454 -443
- package/.agent/skills/gsd/references/agents/gsd-intel-updater.md +40 -20
- package/.agent/skills/gsd/references/agents/gsd-nyquist-auditor.md +187 -176
- package/.agent/skills/gsd/references/agents/gsd-pattern-mapper.md +335 -0
- package/.agent/skills/gsd/references/agents/gsd-phase-researcher.md +112 -13
- package/.agent/skills/gsd/references/agents/gsd-plan-checker.md +104 -10
- package/.agent/skills/gsd/references/agents/gsd-planner.md +125 -167
- package/.agent/skills/gsd/references/agents/gsd-project-researcher.md +25 -2
- package/.agent/skills/gsd/references/agents/gsd-research-synthesizer.md +3 -3
- package/.agent/skills/gsd/references/agents/gsd-roadmapper.md +12 -1
- package/.agent/skills/gsd/references/agents/gsd-security-auditor.md +139 -128
- package/.agent/skills/gsd/references/agents/gsd-ui-auditor.md +3 -3
- package/.agent/skills/gsd/references/agents/gsd-ui-checker.md +11 -2
- package/.agent/skills/gsd/references/agents/gsd-ui-researcher.md +27 -4
- package/.agent/skills/gsd/references/agents/gsd-verifier.md +13 -19
- package/.agent/skills/gsd/references/commands/atomic/add-todo.md +2 -2
- package/.agent/skills/gsd/references/commands/atomic/check-todos.md +2 -2
- package/.agent/skills/gsd/references/commands/atomic/cleanup.md +2 -2
- package/.agent/skills/gsd/references/commands/atomic/do.md +2 -2
- package/.agent/skills/gsd/references/commands/atomic/help.md +2 -2
- package/.agent/skills/gsd/references/commands/atomic/join-discord.md +2 -2
- package/.agent/skills/gsd/references/commands/atomic/note.md +2 -2
- package/.agent/skills/gsd/references/commands/atomic/session-report.md +2 -2
- package/.agent/skills/gsd/references/commands/atomic/ship.md +2 -2
- package/.agent/skills/gsd/references/commands/atomic/stats.md +2 -2
- package/.agent/skills/gsd/references/commands/atomic/thread.md +141 -41
- package/.agent/skills/gsd/references/commands/atomic/undo.md +2 -2
- package/.agent/skills/gsd/references/commands/milestone/add-backlog.md +15 -12
- package/.agent/skills/gsd/references/commands/milestone/audit-milestone.md +2 -2
- package/.agent/skills/gsd/references/commands/milestone/complete-milestone.md +2 -2
- package/.agent/skills/gsd/references/commands/milestone/milestone-summary.md +2 -2
- package/.agent/skills/gsd/references/commands/milestone/new-milestone.md +2 -2
- package/.agent/skills/gsd/references/commands/milestone/plan-milestone-gaps.md +2 -2
- package/.agent/skills/gsd/references/commands/milestone/plant-seed.md +2 -2
- package/.agent/skills/gsd/references/commands/milestone/review-backlog.md +4 -4
- package/.agent/skills/gsd/references/commands/misc/ai-integration-phase.md +38 -0
- package/.agent/skills/gsd/references/commands/misc/audit-fix.md +2 -2
- package/.agent/skills/gsd/references/commands/misc/audit-uat.md +2 -2
- package/.agent/skills/gsd/references/commands/misc/eval-review.md +34 -0
- package/.agent/skills/gsd/references/commands/misc/extract_learnings.md +24 -0
- package/.agent/skills/gsd/references/commands/misc/from-gsd2.md +49 -0
- package/.agent/skills/gsd/references/commands/misc/graphify.md +203 -0
- package/.agent/skills/gsd/references/commands/misc/inbox.md +40 -0
- package/.agent/skills/gsd/references/commands/misc/next.md +5 -3
- package/.agent/skills/gsd/references/commands/misc/progress.md +4 -3
- package/.agent/skills/gsd/references/commands/misc/sketch-wrap-up.md +33 -0
- package/.agent/skills/gsd/references/commands/misc/sketch.md +47 -0
- package/.agent/skills/gsd/references/commands/misc/spec-phase.md +64 -0
- package/.agent/skills/gsd/references/commands/misc/spike-wrap-up.md +33 -0
- package/.agent/skills/gsd/references/commands/misc/spike.md +43 -0
- package/.agent/skills/gsd/references/commands/misc/verify-work.md +2 -2
- package/.agent/skills/gsd/references/commands/phase/add-phase.md +2 -2
- package/.agent/skills/gsd/references/commands/phase/add-tests.md +2 -2
- package/.agent/skills/gsd/references/commands/phase/discuss-phase.md +5 -5
- package/.agent/skills/gsd/references/commands/phase/execute-phase.md +4 -4
- package/.agent/skills/gsd/references/commands/phase/insert-phase.md +2 -2
- package/.agent/skills/gsd/references/commands/phase/list-phase-assumptions.md +2 -2
- package/.agent/skills/gsd/references/commands/phase/plan-phase.md +3 -3
- package/.agent/skills/gsd/references/commands/phase/remove-phase.md +2 -2
- package/.agent/skills/gsd/references/commands/phase/research-phase.md +5 -5
- package/.agent/skills/gsd/references/commands/phase/secure-phase.md +2 -2
- package/.agent/skills/gsd/references/commands/phase/ui-phase.md +2 -2
- package/.agent/skills/gsd/references/commands/phase/ui-review.md +2 -2
- package/.agent/skills/gsd/references/commands/phase/validate-phase.md +2 -2
- package/.agent/skills/gsd/references/commands/phase/workstreams.md +9 -9
- package/.agent/skills/gsd/references/commands/project/analyze-dependencies.md +2 -2
- package/.agent/skills/gsd/references/commands/project/explore.md +2 -2
- package/.agent/skills/gsd/references/commands/project/import.md +2 -2
- package/.agent/skills/gsd/references/commands/project/intel.md +10 -10
- package/.agent/skills/gsd/references/commands/project/list-workspaces.md +2 -2
- package/.agent/skills/gsd/references/commands/project/map-codebase.md +2 -2
- package/.agent/skills/gsd/references/commands/project/new-project.md +2 -2
- package/.agent/skills/gsd/references/commands/project/new-workspace.md +2 -2
- package/.agent/skills/gsd/references/commands/project/remove-workspace.md +2 -2
- package/.agent/skills/gsd/references/commands/project/scan.md +2 -2
- package/.agent/skills/gsd/references/commands/system/autonomous.md +4 -3
- package/.agent/skills/gsd/references/commands/system/code-review-fix.md +3 -3
- package/.agent/skills/gsd/references/commands/system/code-review.md +3 -3
- package/.agent/skills/gsd/references/commands/system/debug.md +177 -100
- package/.agent/skills/gsd/references/commands/system/docs-update.md +2 -2
- package/.agent/skills/gsd/references/commands/system/fast.md +2 -2
- package/.agent/skills/gsd/references/commands/system/forensics.md +2 -2
- package/.agent/skills/gsd/references/commands/system/gsd-tools.md +153 -6
- package/.agent/skills/gsd/references/commands/system/health.md +2 -2
- package/.agent/skills/gsd/references/commands/system/manager.md +3 -3
- package/.agent/skills/gsd/references/commands/system/pause-work.md +2 -2
- package/.agent/skills/gsd/references/commands/system/pr-branch.md +2 -2
- package/.agent/skills/gsd/references/commands/system/profile-user.md +2 -2
- package/.agent/skills/gsd/references/commands/system/quick.md +127 -3
- package/.agent/skills/gsd/references/commands/system/reapply-patches.md +45 -6
- package/.agent/skills/gsd/references/commands/system/resume-work.md +2 -2
- package/.agent/skills/gsd/references/commands/system/review.md +6 -4
- package/.agent/skills/gsd/references/commands/system/set-profile.md +3 -3
- package/.agent/skills/gsd/references/commands/system/settings.md +2 -2
- package/.agent/skills/gsd/references/commands/system/update.md +2 -2
- package/.agent/skills/gsd/references/docs/ai-evals.md +156 -0
- package/.agent/skills/gsd/references/docs/ai-frameworks.md +186 -0
- package/.agent/skills/gsd/references/docs/artifact-types.md +18 -0
- package/.agent/skills/gsd/references/docs/autonomous-smart-discuss.md +277 -0
- package/.agent/skills/gsd/references/docs/checkpoints.md +30 -0
- package/.agent/skills/gsd/references/docs/common-bug-patterns.md +49 -49
- package/.agent/skills/gsd/references/docs/continuation-format.md +11 -7
- package/.agent/skills/gsd/references/docs/debugger-philosophy.md +76 -0
- package/.agent/skills/gsd/references/docs/decimal-phase-calculation.md +64 -64
- package/.agent/skills/gsd/references/docs/executor-examples.md +110 -0
- package/.agent/skills/gsd/references/docs/git-integration.md +4 -4
- package/.agent/skills/gsd/references/docs/git-planning-commit.md +40 -38
- package/.agent/skills/gsd/references/docs/ios-scaffold.md +123 -0
- package/.agent/skills/gsd/references/docs/mandatory-initial-read.md +2 -0
- package/.agent/skills/gsd/references/docs/phase-argument-parsing.md +61 -61
- package/.agent/skills/gsd/references/docs/planner-antipatterns.md +89 -0
- package/.agent/skills/gsd/references/docs/planner-revision.md +87 -87
- package/.agent/skills/gsd/references/docs/planner-source-audit.md +73 -0
- package/.agent/skills/gsd/references/docs/planning-config.md +33 -8
- package/.agent/skills/gsd/references/docs/project-skills-discovery.md +19 -0
- package/.agent/skills/gsd/references/docs/sketch-interactivity.md +41 -0
- package/.agent/skills/gsd/references/docs/sketch-theme-system.md +94 -0
- package/.agent/skills/gsd/references/docs/sketch-tooling.md +45 -0
- package/.agent/skills/gsd/references/docs/sketch-variant-patterns.md +81 -0
- package/.agent/skills/gsd/references/docs/tdd.md +67 -0
- package/.agent/skills/gsd/references/docs/universal-anti-patterns.md +5 -0
- package/.agent/skills/gsd/references/docs/workstream-flag.md +11 -11
- package/.agent/skills/gsd/references/mapping.md +1 -1
- package/.agent/skills/gsd/references/workflows/add-phase.md +112 -112
- package/.agent/skills/gsd/references/workflows/add-tests.md +6 -3
- package/.agent/skills/gsd/references/workflows/add-todo.md +5 -3
- package/.agent/skills/gsd/references/workflows/ai-integration-phase.md +284 -0
- package/.agent/skills/gsd/references/workflows/audit-fix.md +157 -157
- package/.agent/skills/gsd/references/workflows/audit-milestone.md +340 -340
- package/.agent/skills/gsd/references/workflows/audit-uat.md +109 -109
- package/.agent/skills/gsd/references/workflows/autonomous.md +20 -288
- package/.agent/skills/gsd/references/workflows/check-todos.md +4 -2
- package/.agent/skills/gsd/references/workflows/cleanup.md +3 -1
- package/.agent/skills/gsd/references/workflows/code-review-fix.md +497 -497
- package/.agent/skills/gsd/references/workflows/code-review.md +515 -515
- package/.agent/skills/gsd/references/workflows/complete-milestone.md +97 -24
- package/.agent/skills/gsd/references/workflows/diagnose-issues.md +238 -238
- package/.agent/skills/gsd/references/workflows/discovery-phase.md +2 -0
- package/.agent/skills/gsd/references/workflows/discuss-phase-assumptions.md +11 -11
- package/.agent/skills/gsd/references/workflows/discuss-phase.md +143 -19
- package/.agent/skills/gsd/references/workflows/do.md +8 -2
- package/.agent/skills/gsd/references/workflows/docs-update.md +5 -3
- package/.agent/skills/gsd/references/workflows/eval-review.md +155 -0
- package/.agent/skills/gsd/references/workflows/execute-phase.md +338 -54
- package/.agent/skills/gsd/references/workflows/execute-plan.md +80 -104
- package/.agent/skills/gsd/references/workflows/explore.md +3 -1
- package/.agent/skills/gsd/references/workflows/extract_learnings.md +232 -0
- package/.agent/skills/gsd/references/workflows/forensics.md +3 -3
- package/.agent/skills/gsd/references/workflows/health.md +2 -2
- package/.agent/skills/gsd/references/workflows/help.md +59 -1
- package/.agent/skills/gsd/references/workflows/import.md +3 -1
- package/.agent/skills/gsd/references/workflows/inbox.md +387 -384
- package/.agent/skills/gsd/references/workflows/insert-phase.md +130 -130
- package/.agent/skills/gsd/references/workflows/list-workspaces.md +56 -56
- package/.agent/skills/gsd/references/workflows/manager.md +5 -3
- package/.agent/skills/gsd/references/workflows/map-codebase.md +19 -5
- package/.agent/skills/gsd/references/workflows/milestone-summary.md +6 -6
- package/.agent/skills/gsd/references/workflows/new-milestone.md +63 -9
- package/.agent/skills/gsd/references/workflows/new-project.md +126 -22
- package/.agent/skills/gsd/references/workflows/new-workspace.md +6 -4
- package/.agent/skills/gsd/references/workflows/next.md +220 -153
- package/.agent/skills/gsd/references/workflows/note.md +2 -0
- package/.agent/skills/gsd/references/workflows/pause-work.md +11 -7
- package/.agent/skills/gsd/references/workflows/plan-milestone-gaps.md +273 -273
- package/.agent/skills/gsd/references/workflows/plan-phase.md +281 -62
- package/.agent/skills/gsd/references/workflows/plant-seed.md +4 -1
- package/.agent/skills/gsd/references/workflows/pr-branch.md +41 -13
- package/.agent/skills/gsd/references/workflows/profile-user.md +15 -13
- package/.agent/skills/gsd/references/workflows/progress.md +133 -21
- package/.agent/skills/gsd/references/workflows/quick.md +67 -27
- package/.agent/skills/gsd/references/workflows/remove-phase.md +155 -155
- package/.agent/skills/gsd/references/workflows/remove-workspace.md +4 -2
- package/.agent/skills/gsd/references/workflows/research-phase.md +3 -3
- package/.agent/skills/gsd/references/workflows/resume-project.md +3 -3
- package/.agent/skills/gsd/references/workflows/review.md +71 -8
- package/.agent/skills/gsd/references/workflows/scan.md +102 -102
- package/.agent/skills/gsd/references/workflows/secure-phase.md +7 -5
- package/.agent/skills/gsd/references/workflows/settings.md +24 -7
- package/.agent/skills/gsd/references/workflows/ship.md +71 -6
- package/.agent/skills/gsd/references/workflows/sketch-wrap-up.md +283 -0
- package/.agent/skills/gsd/references/workflows/sketch.md +263 -0
- package/.agent/skills/gsd/references/workflows/spec-phase.md +262 -0
- package/.agent/skills/gsd/references/workflows/spike-wrap-up.md +273 -0
- package/.agent/skills/gsd/references/workflows/spike.md +270 -0
- package/.agent/skills/gsd/references/workflows/stats.md +60 -60
- package/.agent/skills/gsd/references/workflows/transition.md +671 -671
- package/.agent/skills/gsd/references/workflows/ui-phase.md +33 -12
- package/.agent/skills/gsd/references/workflows/ui-review.md +6 -4
- package/.agent/skills/gsd/references/workflows/undo.md +3 -1
- package/.agent/skills/gsd/references/workflows/update.md +113 -2
- package/.agent/skills/gsd/references/workflows/validate-phase.md +7 -5
- package/.agent/skills/gsd/references/workflows/verify-phase.md +93 -10
- package/.agent/skills/gsd/references/workflows/verify-work.md +50 -10
- package/.agent/skills/gsd-converter/references/mapping.md +1 -1
- package/.agent/skills/gsd-converter/scripts/convert.py +36 -17
- package/.agent/skills/gsd-converter/scripts/regression_test.py +68 -33
- package/README.md +3 -2
- package/package.json +4 -2
- package/.agent/skills/release-manager/SKILL.md +0 -162
- package/.agent/skills/release-manager/bin/LICENSE +0 -21
- package/.agent/skills/release-manager/bin/gh.exe +0 -0
- package/.agent/skills/release-manager/references/update_kb_from_fixes.md +0 -29
- package/.agent/skills/release-manager/scripts/release.ps1 +0 -222
- package/.agent/skills/selectpaste-update/SKILL.md +0 -46
- package/.agent/skills/selectpaste-update/scripts/sync-commands.py +0 -317
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: gsd:graphify
|
|
3
|
+
description: "Build, query, and inspect the project knowledge graph in .planning/graphs/"
|
|
4
|
+
argument-hint: "[build|query <term>|status|diff]"
|
|
5
|
+
allowed-tools:
|
|
6
|
+
- Read
|
|
7
|
+
- Bash
|
|
8
|
+
- Task
|
|
9
|
+
gsd-source-version: 1.37.1
|
|
10
|
+
migration-date: 2026-04-18
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
**STOP -- DO NOT READ THIS FILE. You are already reading it. This prompt was injected into your context by Antigravity's command system. Using the Read tool on this file wastes tokens. Begin executing Step 0 immediately.**
|
|
14
|
+
|
|
15
|
+
.agent/skills/gsd/bin/gsd-tools.cjs graphify …` as documented in this command and in `docs/CLI-TOOLS.md`. Other tooling may still use `gsd-sdk query` where a handler exists.
|
|
16
|
+
|
|
17
|
+
## Step 0 -- Banner
|
|
18
|
+
|
|
19
|
+
**Before ANY tool calls**, display this banner:
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
GSD > GRAPHIFY
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Then proceed to Step 1.
|
|
26
|
+
|
|
27
|
+
## Step 1 -- Config Gate
|
|
28
|
+
|
|
29
|
+
Check if graphify is enabled by reading `.planning/config.json` directly using the Read tool.
|
|
30
|
+
|
|
31
|
+
**DO NOT use the gsd-tools config get-value command** -- it hard-exits on missing keys.
|
|
32
|
+
|
|
33
|
+
1. Read `.planning/config.json` using the Read tool
|
|
34
|
+
2. If the file does not exist: display the disabled message below and **STOP**
|
|
35
|
+
3. Parse the JSON content. Check if `config.graphify && config.graphify.enabled === true`
|
|
36
|
+
4. If `graphify.enabled` is NOT explicitly `true`: display the disabled message below and **STOP**
|
|
37
|
+
5. If `graphify.enabled` is `true`: proceed to Step 2
|
|
38
|
+
|
|
39
|
+
**Disabled message:**
|
|
40
|
+
|
|
41
|
+
```
|
|
42
|
+
GSD > GRAPHIFY
|
|
43
|
+
|
|
44
|
+
Knowledge graph is disabled. To activate:
|
|
45
|
+
|
|
46
|
+
.agent/skills/gsd/bin/gsd-tools.cjs config-set graphify.enabled true
|
|
47
|
+
|
|
48
|
+
Then run /gsd-graphify build to create the initial graph.
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
---
|
|
52
|
+
|
|
53
|
+
## Step 2 -- Parse Argument
|
|
54
|
+
|
|
55
|
+
Parse `$ARGUMENTS` to determine the operation mode:
|
|
56
|
+
|
|
57
|
+
| Argument | Action |
|
|
58
|
+
|----------|--------|
|
|
59
|
+
| `build` | Spawn graphify-builder agent (Step 3) |
|
|
60
|
+
| `query <term>` | Run inline query (Step 2a) |
|
|
61
|
+
| `status` | Run inline status check (Step 2b) |
|
|
62
|
+
| `diff` | Run inline diff check (Step 2c) |
|
|
63
|
+
| No argument or unknown | Show usage message |
|
|
64
|
+
|
|
65
|
+
**Usage message** (shown when no argument or unrecognized argument):
|
|
66
|
+
|
|
67
|
+
```
|
|
68
|
+
GSD > GRAPHIFY
|
|
69
|
+
|
|
70
|
+
Usage: /gsd-graphify <mode>
|
|
71
|
+
|
|
72
|
+
Modes:
|
|
73
|
+
build Build or rebuild the knowledge graph
|
|
74
|
+
query <term> Search the graph for a term
|
|
75
|
+
status Show graph freshness and statistics
|
|
76
|
+
diff Show changes since last build
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
### Step 2a -- Query
|
|
80
|
+
|
|
81
|
+
Run:
|
|
82
|
+
|
|
83
|
+
```bash
|
|
84
|
+
.agent/skills/gsd/bin/gsd-tools.cjs graphify query <term>
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
Parse the JSON output and display results:
|
|
88
|
+
- If the output contains `"disabled": true`, display the disabled message from Step 1 and **STOP**
|
|
89
|
+
- If the output contains `"error"` field, display the error message and **STOP**
|
|
90
|
+
- If no nodes found, display: `No graph matches for '<term>'. Try /gsd-graphify build to create or rebuild the graph.`
|
|
91
|
+
- Otherwise, display matched nodes grouped by type, with edge relationships and confidence tiers (EXTRACTED/INFERRED/AMBIGUOUS)
|
|
92
|
+
|
|
93
|
+
**STOP** after displaying results. Do not spawn an agent.
|
|
94
|
+
|
|
95
|
+
### Step 2b -- Status
|
|
96
|
+
|
|
97
|
+
Run:
|
|
98
|
+
|
|
99
|
+
```bash
|
|
100
|
+
.agent/skills/gsd/bin/gsd-tools.cjs graphify status
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
Parse the JSON output and display:
|
|
104
|
+
- If `exists: false`, display the message field
|
|
105
|
+
- Otherwise show last build time, node/edge/hyperedge counts, and STALE or FRESH indicator
|
|
106
|
+
|
|
107
|
+
**STOP** after displaying status. Do not spawn an agent.
|
|
108
|
+
|
|
109
|
+
### Step 2c -- Diff
|
|
110
|
+
|
|
111
|
+
Run:
|
|
112
|
+
|
|
113
|
+
```bash
|
|
114
|
+
.agent/skills/gsd/bin/gsd-tools.cjs graphify diff
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
Parse the JSON output and display:
|
|
118
|
+
- If `no_baseline: true`, display the message field
|
|
119
|
+
- Otherwise show node and edge change counts (added/removed/changed)
|
|
120
|
+
|
|
121
|
+
If no snapshot exists, suggest running `build` twice (first to create, second to generate a diff baseline).
|
|
122
|
+
|
|
123
|
+
**STOP** after displaying diff. Do not spawn an agent.
|
|
124
|
+
|
|
125
|
+
---
|
|
126
|
+
|
|
127
|
+
## Step 3 -- Build (Agent Spawn)
|
|
128
|
+
|
|
129
|
+
Run pre-flight check first:
|
|
130
|
+
|
|
131
|
+
```
|
|
132
|
+
.agent/skills/gsd/bin/gsd-tools.cjs" graphify build)
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
If pre-flight returns `disabled: true` or `error`, display the message and **STOP**.
|
|
136
|
+
|
|
137
|
+
If pre-flight returns `action: "spawn_agent"`, display:
|
|
138
|
+
|
|
139
|
+
```
|
|
140
|
+
GSD > Spawning graphify-builder agent...
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
Spawn a Task:
|
|
144
|
+
|
|
145
|
+
```
|
|
146
|
+
Task(
|
|
147
|
+
description="Build or rebuild the project knowledge graph",
|
|
148
|
+
prompt="You are the graphify-builder agent. Your job is to build or rebuild the project knowledge graph using the graphify CLI.
|
|
149
|
+
|
|
150
|
+
Project root: ${CWD}
|
|
151
|
+
.agent/skills/gsd/bin/gsd-tools.cjs
|
|
152
|
+
|
|
153
|
+
## Instructions
|
|
154
|
+
|
|
155
|
+
1. **Invoke graphify:**
|
|
156
|
+
Run from the project root:
|
|
157
|
+
```
|
|
158
|
+
graphify . --update
|
|
159
|
+
```
|
|
160
|
+
This builds the knowledge graph with SHA256 incremental caching.
|
|
161
|
+
Timeout: up to 5 minutes (or as configured via graphify.build_timeout).
|
|
162
|
+
|
|
163
|
+
2. **Validate output:**
|
|
164
|
+
Check that graphify-out/graph.json exists and is valid JSON with nodes[] and edges[] arrays.
|
|
165
|
+
If graphify exited non-zero or graph.json is not parseable, output:
|
|
166
|
+
## GRAPHIFY BUILD FAILED
|
|
167
|
+
Include the stderr output for debugging. Do NOT delete .planning/graphs/ -- prior valid graph remains available.
|
|
168
|
+
|
|
169
|
+
3. **Copy artifacts to .planning/graphs/:**
|
|
170
|
+
```
|
|
171
|
+
cp graphify-out/graph.json .planning/graphs/graph.json
|
|
172
|
+
cp graphify-out/graph.html .planning/graphs/graph.html
|
|
173
|
+
cp graphify-out/GRAPH_REPORT.md .planning/graphs/GRAPH_REPORT.md
|
|
174
|
+
```
|
|
175
|
+
These three files are the build output consumed by query, status, and diff commands.
|
|
176
|
+
|
|
177
|
+
4. **Write diff snapshot:**
|
|
178
|
+
```
|
|
179
|
+
.agent/skills/gsd/bin/gsd-tools.cjs\" graphify build snapshot
|
|
180
|
+
```
|
|
181
|
+
This creates .planning/graphs/.last-build-snapshot.json for future diff comparisons.
|
|
182
|
+
|
|
183
|
+
5. **Report build summary:**
|
|
184
|
+
```
|
|
185
|
+
.agent/skills/gsd/bin/gsd-tools.cjs\" graphify status
|
|
186
|
+
```
|
|
187
|
+
Display the node count, edge count, and hyperedge count from the status output.
|
|
188
|
+
|
|
189
|
+
When complete, output: ## GRAPHIFY BUILD COMPLETE with the summary counts.
|
|
190
|
+
If something fails at any step, output: ## GRAPHIFY BUILD FAILED with details."
|
|
191
|
+
)
|
|
192
|
+
```
|
|
193
|
+
|
|
194
|
+
Wait for the agent to complete.
|
|
195
|
+
|
|
196
|
+
---
|
|
197
|
+
|
|
198
|
+
## Anti-Patterns
|
|
199
|
+
|
|
200
|
+
1. DO NOT spawn an agent for query/status/diff operations -- these are inline CLI calls
|
|
201
|
+
2. DO NOT modify graph files directly -- the build agent handles writes
|
|
202
|
+
3. DO NOT skip the config gate check
|
|
203
|
+
4. DO NOT use gsd-tools config get-value for the config gate -- it exits on missing keys
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: gsd:inbox
|
|
3
|
+
description: Triage and review all open GitHub issues and PRs against project templates and contribution guidelines
|
|
4
|
+
argument-hint: "[--issues] [--prs] [--label] [--close-incomplete] [--repo owner/repo]"
|
|
5
|
+
allowed-tools:
|
|
6
|
+
- Read
|
|
7
|
+
- Bash
|
|
8
|
+
- Write
|
|
9
|
+
- Grep
|
|
10
|
+
- Glob
|
|
11
|
+
- AskUserQuestion
|
|
12
|
+
gsd-source-version: 1.37.1
|
|
13
|
+
migration-date: 2026-04-18
|
|
14
|
+
---
|
|
15
|
+
<objective>
|
|
16
|
+
One-command triage of the project's GitHub inbox. Fetches all open issues and PRs,
|
|
17
|
+
reviews each against the corresponding template requirements (feature, enhancement,
|
|
18
|
+
bug, chore, fix PR, enhancement PR, feature PR), reports completeness and compliance,
|
|
19
|
+
and optionally applies labels or closes non-compliant submissions.
|
|
20
|
+
|
|
21
|
+
**Flow:** Detect repo → Fetch open issues + PRs → Classify each by type → Review against template → Report findings → Optionally act (label, comment, close)
|
|
22
|
+
</objective>
|
|
23
|
+
|
|
24
|
+
<execution_context>
|
|
25
|
+
@references/workflows/inbox.md
|
|
26
|
+
</execution_context>
|
|
27
|
+
|
|
28
|
+
<context>
|
|
29
|
+
**Flags:**
|
|
30
|
+
- `--issues` — Review only issues (skip PRs)
|
|
31
|
+
- `--prs` — Review only PRs (skip issues)
|
|
32
|
+
- `--label` — Auto-apply recommended labels after review
|
|
33
|
+
- `--close-incomplete` — Close issues/PRs that fail template compliance (with comment explaining why)
|
|
34
|
+
- `--repo owner/repo` — Override auto-detected repository (defaults to current git remote)
|
|
35
|
+
</context>
|
|
36
|
+
|
|
37
|
+
<process>
|
|
38
|
+
Execute the inbox workflow from @references/workflows/inbox.md end-to-end.
|
|
39
|
+
Parse flags from arguments and pass to workflow.
|
|
40
|
+
</process>
|
|
@@ -7,8 +7,8 @@ allowed-tools:
|
|
|
7
7
|
- Grep
|
|
8
8
|
- Glob
|
|
9
9
|
- SlashCommand
|
|
10
|
-
gsd-source-version: 1.
|
|
11
|
-
migration-date: 2026-04-
|
|
10
|
+
gsd-source-version: 1.37.1
|
|
11
|
+
migration-date: 2026-04-18
|
|
12
12
|
---
|
|
13
13
|
<objective>
|
|
14
14
|
Detect the current project state and automatically invoke the next logical GSD workflow step.
|
|
@@ -16,7 +16,9 @@ No arguments needed — reads STATE.md, ROADMAP.md, and phase directories to det
|
|
|
16
16
|
|
|
17
17
|
Designed for rapid multi-project workflows where remembering which phase/step you're on is overhead.
|
|
18
18
|
|
|
19
|
-
Supports `--force` flag to bypass safety gates (checkpoint, error state, verification failures).
|
|
19
|
+
Supports `--force` flag to bypass safety gates (checkpoint, error state, verification failures, and prior-phase completeness scan).
|
|
20
|
+
|
|
21
|
+
Before routing to the next step, scans all prior phases for incomplete work: plans that ran without producing summaries, verification failures without overrides, and phases where discussion happened but planning never ran. When incomplete work is found, shows a structured report and offers three options: defer the gaps to the backlog and continue, stop and resolve manually, or force advance without recording. When prior phases are clean, routes silently with no interruption.
|
|
20
22
|
</objective>
|
|
21
23
|
|
|
22
24
|
<execution_context>
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: gsd:progress
|
|
3
|
-
description: Check project progress, show context, and route to next action (execute or plan)
|
|
3
|
+
description: Check project progress, show context, and route to next action (execute or plan). Use --forensic to append a 6-check integrity audit after the standard report.
|
|
4
|
+
argument-hint: "[--forensic]"
|
|
4
5
|
allowed-tools:
|
|
5
6
|
- Read
|
|
6
7
|
- Bash
|
|
7
8
|
- Grep
|
|
8
9
|
- Glob
|
|
9
10
|
- SlashCommand
|
|
10
|
-
gsd-source-version: 1.
|
|
11
|
-
migration-date: 2026-04-
|
|
11
|
+
gsd-source-version: 1.37.1
|
|
12
|
+
migration-date: 2026-04-18
|
|
12
13
|
---
|
|
13
14
|
<objective>
|
|
14
15
|
Check project progress, summarize recent work and what's ahead, then intelligently route to the next action - either executing an existing plan or creating the next one.
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: gsd:sketch-wrap-up
|
|
3
|
+
description: Package sketch design findings into a persistent project skill for future build conversations
|
|
4
|
+
allowed-tools:
|
|
5
|
+
- Read
|
|
6
|
+
- Write
|
|
7
|
+
- Edit
|
|
8
|
+
- Bash
|
|
9
|
+
- Grep
|
|
10
|
+
- Glob
|
|
11
|
+
- AskUserQuestion
|
|
12
|
+
gsd-source-version: 1.37.1
|
|
13
|
+
migration-date: 2026-04-18
|
|
14
|
+
---
|
|
15
|
+
<objective>
|
|
16
|
+
Curate sketch design findings and package them into a persistent project skill that Antigravity
|
|
17
|
+
auto-loads when building the real UI. Also writes a summary to `.planning/sketches/` for
|
|
18
|
+
project history. Output skill goes to `./.antigravity/skills/sketch-findings-[project]/` (project-local).
|
|
19
|
+
</objective>
|
|
20
|
+
|
|
21
|
+
<execution_context>
|
|
22
|
+
@references/workflows/sketch-wrap-up.md
|
|
23
|
+
@references/docs/ui-brand.md
|
|
24
|
+
</execution_context>
|
|
25
|
+
|
|
26
|
+
<runtime_note>
|
|
27
|
+
**Copilot (VS Code):** Use `vscode_askquestions` wherever this workflow calls `AskUserQuestion`.
|
|
28
|
+
</runtime_note>
|
|
29
|
+
|
|
30
|
+
<process>
|
|
31
|
+
Execute the sketch-wrap-up workflow from @references/workflows/sketch-wrap-up.md end-to-end.
|
|
32
|
+
Preserve all curation gates (per-sketch review, grouping approval, ANTIGRAVITY.md routing line).
|
|
33
|
+
</process>
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: gsd:sketch
|
|
3
|
+
description: Rapidly sketch UI/design ideas using throwaway HTML mockups with multi-variant exploration
|
|
4
|
+
argument-hint: "<design idea to explore> [--quick]"
|
|
5
|
+
allowed-tools:
|
|
6
|
+
- Read
|
|
7
|
+
- Write
|
|
8
|
+
- Edit
|
|
9
|
+
- Bash
|
|
10
|
+
- Grep
|
|
11
|
+
- Glob
|
|
12
|
+
- AskUserQuestion
|
|
13
|
+
gsd-source-version: 1.37.1
|
|
14
|
+
migration-date: 2026-04-18
|
|
15
|
+
---
|
|
16
|
+
<objective>
|
|
17
|
+
Explore design directions through throwaway HTML mockups before committing to implementation.
|
|
18
|
+
Each sketch produces 2-3 variants for comparison. Sketches live in `.planning/sketches/` and
|
|
19
|
+
integrate with GSD commit patterns, state tracking, and handoff workflows.
|
|
20
|
+
|
|
21
|
+
Does not require `/gsd-new-project` — auto-creates `.planning/sketches/` if needed.
|
|
22
|
+
</objective>
|
|
23
|
+
|
|
24
|
+
<execution_context>
|
|
25
|
+
@references/workflows/sketch.md
|
|
26
|
+
@references/docs/ui-brand.md
|
|
27
|
+
@references/docs/sketch-theme-system.md
|
|
28
|
+
@references/docs/sketch-interactivity.md
|
|
29
|
+
@references/docs/sketch-tooling.md
|
|
30
|
+
@references/docs/sketch-variant-patterns.md
|
|
31
|
+
</execution_context>
|
|
32
|
+
|
|
33
|
+
<runtime_note>
|
|
34
|
+
**Copilot (VS Code):** Use `vscode_askquestions` wherever this workflow calls `AskUserQuestion`.
|
|
35
|
+
</runtime_note>
|
|
36
|
+
|
|
37
|
+
<context>
|
|
38
|
+
Design idea: $ARGUMENTS
|
|
39
|
+
|
|
40
|
+
**Available flags:**
|
|
41
|
+
- `--quick` — Skip mood/direction intake, jump straight to decomposition and building. Use when the design direction is already clear.
|
|
42
|
+
</context>
|
|
43
|
+
|
|
44
|
+
<process>
|
|
45
|
+
Execute the sketch workflow from @references/workflows/sketch.md end-to-end.
|
|
46
|
+
Preserve all workflow gates (intake, decomposition, variant evaluation, MANIFEST updates, commit patterns).
|
|
47
|
+
</process>
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: gsd:spec-phase
|
|
3
|
+
description: Socratic spec refinement — clarify WHAT a phase delivers with ambiguity scoring before discuss-phase. Produces a SPEC.md with falsifiable requirements locked before implementation decisions begin.
|
|
4
|
+
argument-hint: "<phase> [--auto] [--text]"
|
|
5
|
+
allowed-tools:
|
|
6
|
+
- Read
|
|
7
|
+
- Write
|
|
8
|
+
- Bash
|
|
9
|
+
- Glob
|
|
10
|
+
- Grep
|
|
11
|
+
- AskUserQuestion
|
|
12
|
+
gsd-source-version: 1.37.1
|
|
13
|
+
migration-date: 2026-04-18
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
<objective>
|
|
17
|
+
Clarify phase requirements through structured Socratic questioning with quantitative ambiguity scoring.
|
|
18
|
+
|
|
19
|
+
**Position in workflow:** `spec-phase → discuss-phase → plan-phase → execute-phase → verify`
|
|
20
|
+
|
|
21
|
+
**How it works:**
|
|
22
|
+
1. Load phase context (PROJECT.md, REQUIREMENTS.md, ROADMAP.md, STATE.md)
|
|
23
|
+
2. Scout the codebase — understand current state before asking questions
|
|
24
|
+
3. Run Socratic interview loop (up to 6 rounds, rotating perspectives)
|
|
25
|
+
4. Score ambiguity across 4 weighted dimensions after each round
|
|
26
|
+
5. Gate: ambiguity ≤ 0.20 AND all dimensions meet minimums → write SPEC.md
|
|
27
|
+
6. Commit SPEC.md — discuss-phase picks it up automatically on next run
|
|
28
|
+
|
|
29
|
+
**Output:** `{phase_dir}/{padded_phase}-SPEC.md` — falsifiable requirements that lock "what/why" before discuss-phase handles "how"
|
|
30
|
+
</objective>
|
|
31
|
+
|
|
32
|
+
<execution_context>
|
|
33
|
+
@references/workflows/spec-phase.md
|
|
34
|
+
@assets/templates/spec.md
|
|
35
|
+
</execution_context>
|
|
36
|
+
|
|
37
|
+
<runtime_note>
|
|
38
|
+
**Copilot (VS Code):** Use `vscode_askquestions` wherever this workflow calls `AskUserQuestion`. They are equivalent.
|
|
39
|
+
</runtime_note>
|
|
40
|
+
|
|
41
|
+
<context>
|
|
42
|
+
Phase number: $ARGUMENTS (required)
|
|
43
|
+
|
|
44
|
+
**Flags:**
|
|
45
|
+
- `--auto` — Skip interactive questions; Antigravity selects recommended defaults and writes SPEC.md
|
|
46
|
+
- `--text` — Use plain-text numbered lists instead of TUI menus (required for `/rc` remote sessions)
|
|
47
|
+
|
|
48
|
+
Context files are resolved in-workflow using `init phase-op`.
|
|
49
|
+
</context>
|
|
50
|
+
|
|
51
|
+
<process>
|
|
52
|
+
Execute the spec-phase workflow from @references/workflows/spec-phase.md end-to-end.
|
|
53
|
+
|
|
54
|
+
**MANDATORY:** Read the workflow file BEFORE taking any action. The workflow contains the complete step-by-step process including the Socratic interview loop, ambiguity scoring gate, and SPEC.md generation. Do not improvise from the objective summary above.
|
|
55
|
+
</process>
|
|
56
|
+
|
|
57
|
+
<success_criteria>
|
|
58
|
+
- Codebase scouted for current state before questioning begins
|
|
59
|
+
- All 4 ambiguity dimensions scored after each interview round
|
|
60
|
+
- Gate passed: ambiguity ≤ 0.20 AND all dimension minimums met
|
|
61
|
+
- SPEC.md written with falsifiable requirements, explicit boundaries, and acceptance criteria
|
|
62
|
+
- SPEC.md committed atomically
|
|
63
|
+
- User knows they can now run /gsd-discuss-phase which will load SPEC.md automatically
|
|
64
|
+
</success_criteria>
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: gsd:spike-wrap-up
|
|
3
|
+
description: Package spike findings into a persistent project skill for future build conversations
|
|
4
|
+
allowed-tools:
|
|
5
|
+
- Read
|
|
6
|
+
- Write
|
|
7
|
+
- Edit
|
|
8
|
+
- Bash
|
|
9
|
+
- Grep
|
|
10
|
+
- Glob
|
|
11
|
+
- AskUserQuestion
|
|
12
|
+
gsd-source-version: 1.37.1
|
|
13
|
+
migration-date: 2026-04-18
|
|
14
|
+
---
|
|
15
|
+
<objective>
|
|
16
|
+
Curate spike experiment findings and package them into a persistent project skill that Antigravity
|
|
17
|
+
auto-loads in future build conversations. Also writes a summary to `.planning/spikes/` for
|
|
18
|
+
project history. Output skill goes to `./.antigravity/skills/spike-findings-[project]/` (project-local).
|
|
19
|
+
</objective>
|
|
20
|
+
|
|
21
|
+
<execution_context>
|
|
22
|
+
@references/workflows/spike-wrap-up.md
|
|
23
|
+
@references/docs/ui-brand.md
|
|
24
|
+
</execution_context>
|
|
25
|
+
|
|
26
|
+
<runtime_note>
|
|
27
|
+
**Copilot (VS Code):** Use `vscode_askquestions` wherever this workflow calls `AskUserQuestion`.
|
|
28
|
+
</runtime_note>
|
|
29
|
+
|
|
30
|
+
<process>
|
|
31
|
+
Execute the spike-wrap-up workflow from @references/workflows/spike-wrap-up.md end-to-end.
|
|
32
|
+
Preserve all curation gates (per-spike review, grouping approval, ANTIGRAVITY.md routing line).
|
|
33
|
+
</process>
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: gsd:spike
|
|
3
|
+
description: Rapidly spike an idea with throwaway experiments to validate feasibility before planning
|
|
4
|
+
argument-hint: "<idea to validate> [--quick]"
|
|
5
|
+
allowed-tools:
|
|
6
|
+
- Read
|
|
7
|
+
- Write
|
|
8
|
+
- Edit
|
|
9
|
+
- Bash
|
|
10
|
+
- Grep
|
|
11
|
+
- Glob
|
|
12
|
+
- AskUserQuestion
|
|
13
|
+
gsd-source-version: 1.37.1
|
|
14
|
+
migration-date: 2026-04-18
|
|
15
|
+
---
|
|
16
|
+
<objective>
|
|
17
|
+
Rapid feasibility validation through focused, throwaway experiments. Each spike answers one
|
|
18
|
+
specific question with observable evidence. Spikes live in `.planning/spikes/` and integrate
|
|
19
|
+
with GSD commit patterns, state tracking, and handoff workflows.
|
|
20
|
+
|
|
21
|
+
Does not require `/gsd-new-project` — auto-creates `.planning/spikes/` if needed.
|
|
22
|
+
</objective>
|
|
23
|
+
|
|
24
|
+
<execution_context>
|
|
25
|
+
@references/workflows/spike.md
|
|
26
|
+
@references/docs/ui-brand.md
|
|
27
|
+
</execution_context>
|
|
28
|
+
|
|
29
|
+
<runtime_note>
|
|
30
|
+
**Copilot (VS Code):** Use `vscode_askquestions` wherever this workflow calls `AskUserQuestion`.
|
|
31
|
+
</runtime_note>
|
|
32
|
+
|
|
33
|
+
<context>
|
|
34
|
+
Idea: $ARGUMENTS
|
|
35
|
+
|
|
36
|
+
**Available flags:**
|
|
37
|
+
- `--quick` — Skip decomposition/alignment, jump straight to building. Use when you already know what to spike.
|
|
38
|
+
</context>
|
|
39
|
+
|
|
40
|
+
<process>
|
|
41
|
+
Execute the spike workflow from @references/workflows/spike.md end-to-end.
|
|
42
|
+
Preserve all workflow gates (decomposition, risk ordering, verification, MANIFEST updates, commit patterns).
|
|
43
|
+
</process>
|
|
@@ -10,8 +10,8 @@ allowed-tools:
|
|
|
10
10
|
- Edit
|
|
11
11
|
- Write
|
|
12
12
|
- Task
|
|
13
|
-
gsd-source-version: 1.
|
|
14
|
-
migration-date: 2026-04-
|
|
13
|
+
gsd-source-version: 1.37.1
|
|
14
|
+
migration-date: 2026-04-18
|
|
15
15
|
---
|
|
16
16
|
<objective>
|
|
17
17
|
Validate built features through conversational testing with persistent state.
|
|
@@ -15,8 +15,8 @@ argument-instructions: |
|
|
|
15
15
|
Parse the argument as a phase number (integer, decimal, or letter-suffix), plus optional free-text instructions.
|
|
16
16
|
Example: /gsd-add-tests 12
|
|
17
17
|
Example: /gsd-add-tests 12 focus on edge cases in the pricing module
|
|
18
|
-
gsd-source-version: 1.
|
|
19
|
-
migration-date: 2026-04-
|
|
18
|
+
gsd-source-version: 1.37.1
|
|
19
|
+
migration-date: 2026-04-18
|
|
20
20
|
---
|
|
21
21
|
<objective>
|
|
22
22
|
Generate unit and E2E tests for a completed phase, using its SUMMARY.md, CONTEXT.md, and VERIFICATION.md as specifications.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: gsd:discuss-phase
|
|
3
|
-
description: Gather phase context through adaptive questioning before planning. Use --auto to skip interactive questions (Antigravity picks recommended defaults). Use --chain for interactive discuss followed by automatic plan+execute. Use --power for bulk question generation into a file-based UI (answer at your own pace).
|
|
4
|
-
argument-hint: "<phase> [--auto] [--chain] [--batch] [--analyze] [--text] [--power]"
|
|
3
|
+
description: Gather phase context through adaptive questioning before planning. Use --all to skip area selection and discuss all gray areas interactively. Use --auto to skip interactive questions (Antigravity picks recommended defaults). Use --chain for interactive discuss followed by automatic plan+execute. Use --power for bulk question generation into a file-based UI (answer at your own pace).
|
|
4
|
+
argument-hint: "<phase> [--all] [--auto] [--chain] [--batch] [--analyze] [--text] [--power]"
|
|
5
5
|
allowed-tools:
|
|
6
6
|
- Read
|
|
7
7
|
- Write
|
|
@@ -12,8 +12,8 @@ allowed-tools:
|
|
|
12
12
|
- Task
|
|
13
13
|
- mcp__context7__resolve-library-id
|
|
14
14
|
- mcp__context7__query-docs
|
|
15
|
-
gsd-source-version: 1.
|
|
16
|
-
migration-date: 2026-04-
|
|
15
|
+
gsd-source-version: 1.37.1
|
|
16
|
+
migration-date: 2026-04-18
|
|
17
17
|
---
|
|
18
18
|
|
|
19
19
|
<objective>
|
|
@@ -50,7 +50,7 @@ Context files are resolved in-workflow using `init phase-op` and roadmap/state t
|
|
|
50
50
|
<process>
|
|
51
51
|
**Mode routing:**
|
|
52
52
|
```bash
|
|
53
|
-
|
|
53
|
+
DISCUSS_MODE=$(gsd-sdk query config-get workflow.discuss_mode 2>/dev/null || echo "discuss")
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
If `DISCUSS_MODE` is `"assumptions"`: Read and execute @references/workflows/discuss-phase-assumptions.md end-to-end.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: gsd:execute-phase
|
|
3
3
|
description: Execute all plans in a phase with wave-based parallelization
|
|
4
|
-
argument-hint: "<phase-number> [--wave N] [--gaps-only] [--interactive]"
|
|
4
|
+
argument-hint: "<phase-number> [--wave N] [--gaps-only] [--interactive] [--tdd]"
|
|
5
5
|
allowed-tools:
|
|
6
6
|
- Read
|
|
7
7
|
- Write
|
|
@@ -12,8 +12,8 @@ allowed-tools:
|
|
|
12
12
|
- Task
|
|
13
13
|
- TodoWrite
|
|
14
14
|
- AskUserQuestion
|
|
15
|
-
gsd-source-version: 1.
|
|
16
|
-
migration-date: 2026-04-
|
|
15
|
+
gsd-source-version: 1.37.1
|
|
16
|
+
migration-date: 2026-04-18
|
|
17
17
|
---
|
|
18
18
|
<objective>
|
|
19
19
|
Execute all plans in a phase using wave-based parallel execution.
|
|
@@ -56,7 +56,7 @@ Phase: $ARGUMENTS
|
|
|
56
56
|
- If none of these tokens appear, run the standard full-phase execution flow with no flag-specific filtering
|
|
57
57
|
- Do not infer that a flag is active just because it is documented in this prompt
|
|
58
58
|
|
|
59
|
-
Context files are resolved inside the workflow via `gsd-
|
|
59
|
+
Context files are resolved inside the workflow via `gsd-sdk query init.execute-phase` and per-subagent `<files_to_read>` blocks.
|
|
60
60
|
</context>
|
|
61
61
|
|
|
62
62
|
<process>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: gsd:plan-phase
|
|
3
3
|
description: Create detailed phase plan (PLAN.md) with verification loop
|
|
4
|
-
argument-hint: "[phase] [--auto] [--research] [--skip-research] [--gaps] [--skip-verify] [--prd <file>] [--reviews] [--text]"
|
|
4
|
+
argument-hint: "[phase] [--auto] [--research] [--skip-research] [--gaps] [--skip-verify] [--prd <file>] [--reviews] [--text] [--tdd]"
|
|
5
5
|
agent: gsd-planner
|
|
6
6
|
allowed-tools:
|
|
7
7
|
- Read
|
|
@@ -13,8 +13,8 @@ allowed-tools:
|
|
|
13
13
|
- AskUserQuestion
|
|
14
14
|
- WebFetch
|
|
15
15
|
- mcp__context7__*
|
|
16
|
-
gsd-source-version: 1.
|
|
17
|
-
migration-date: 2026-04-
|
|
16
|
+
gsd-source-version: 1.37.1
|
|
17
|
+
migration-date: 2026-04-18
|
|
18
18
|
---
|
|
19
19
|
<objective>
|
|
20
20
|
Create executable phase prompts (PLAN.md files) for a roadmap phase with integrated research and verification.
|
|
@@ -7,8 +7,8 @@ allowed-tools:
|
|
|
7
7
|
- Write
|
|
8
8
|
- Bash
|
|
9
9
|
- Glob
|
|
10
|
-
gsd-source-version: 1.
|
|
11
|
-
migration-date: 2026-04-
|
|
10
|
+
gsd-source-version: 1.37.1
|
|
11
|
+
migration-date: 2026-04-18
|
|
12
12
|
---
|
|
13
13
|
<objective>
|
|
14
14
|
Remove an unstarted future phase from the roadmap and renumber all subsequent phases to maintain a clean, linear sequence.
|