@hegemonart/get-design-done 1.45.0 → 1.47.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/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/CHANGELOG.md +97 -0
- package/README.md +4 -0
- package/SKILL.md +5 -1
- package/dist/claude-code/.claude/skills/figma-extract/SKILL.md +1 -1
- package/dist/claude-code/.claude/skills/graphify/SKILL.md +1 -1
- package/dist/claude-code/.claude/skills/list-pins/SKILL.md +27 -0
- package/dist/claude-code/.claude/skills/live/SKILL.md +98 -0
- package/dist/claude-code/.claude/skills/pin/SKILL.md +37 -0
- package/dist/claude-code/.claude/skills/unpin/SKILL.md +31 -0
- package/package.json +3 -1
- package/reference/live-mode-integration.md +80 -0
- package/reference/registry.json +14 -0
- package/reference/schemas/events.schema.json +1 -1
- package/reference/schemas/live-session.schema.json +64 -0
- package/reference/skill-metadata.md +117 -0
- package/scripts/lib/live/bandit-feed.cjs +64 -0
- package/scripts/lib/live/events.cjs +86 -0
- package/scripts/lib/live/harness-mode.cjs +93 -0
- package/scripts/lib/live/postcheck.cjs +158 -0
- package/scripts/lib/live/runtime.cjs +233 -0
- package/scripts/lib/live/scope-guard.cjs +145 -0
- package/scripts/lib/live/session-store.cjs +364 -0
- package/scripts/lib/manifest/schemas/skills.schema.json +42 -1
- package/scripts/lib/manifest/skills.json +415 -83
- package/scripts/lib/pin/cli.cjs +145 -0
- package/scripts/lib/pin/harness-detect.cjs +75 -0
- package/scripts/lib/pin/store.cjs +288 -0
- package/skills/figma-extract/SKILL.md +1 -1
- package/skills/graphify/SKILL.md +1 -1
- package/skills/list-pins/SKILL.md +27 -0
- package/skills/live/SKILL.md +98 -0
- package/skills/pin/SKILL.md +37 -0
- package/skills/unpin/SKILL.md +31 -0
|
@@ -3,253 +3,585 @@
|
|
|
3
3
|
"note": "Skill metadata SoT (Phase 41.5 seed = the live skills/ dir names). Phase 47 enriches each record (aliases, pin, description budget).",
|
|
4
4
|
"skills": [
|
|
5
5
|
{
|
|
6
|
-
"name": "add-backlog"
|
|
6
|
+
"name": "add-backlog",
|
|
7
|
+
"description": "Park a design idea for a future cycle. Writes to .design/backlog/BACKLOG.md.",
|
|
8
|
+
"argument_hint": "[text]",
|
|
9
|
+
"tools": "Read, Write, AskUserQuestion",
|
|
10
|
+
"disable_model_invocation": true
|
|
7
11
|
},
|
|
8
12
|
{
|
|
9
|
-
"name": "analyze-dependencies"
|
|
13
|
+
"name": "analyze-dependencies",
|
|
14
|
+
"description": "Queries the intel store to surface token fan-out, component call-graphs, decision traceability, and circular dependency detection. Requires .design/intel/ to exist (run build-intel.cjs first).",
|
|
15
|
+
"tools": "Bash, Read, Glob, Grep"
|
|
10
16
|
},
|
|
11
17
|
{
|
|
12
|
-
"name": "apply-reflections"
|
|
18
|
+
"name": "apply-reflections",
|
|
19
|
+
"description": "Review and selectively apply proposals from .design/reflections/<cycle-slug>.md. Diffs each proposal, prompts user to accept/skip/edit, then writes changes.",
|
|
20
|
+
"argument_hint": "[--cycle <slug>] [--filter <FRONTMATTER|REFERENCE|BUDGET|QUESTION|GLOBAL-SKILL>] [--dry-run]",
|
|
21
|
+
"tools": "Read, Write, Edit, Bash, Glob"
|
|
13
22
|
},
|
|
14
23
|
{
|
|
15
|
-
"name": "audit"
|
|
24
|
+
"name": "audit",
|
|
25
|
+
"description": "Run a design audit by spawning design-auditor, design-integration-checker, and (optionally) design-verifier + design-reflector agents, then printing a consolidated 6-pillar score summary. Use when the user wants to score the current design, retroactively verify a completed cycle, or quickly re-check after a fix.",
|
|
26
|
+
"argument_hint": "[--retroactive] [--quick] [--no-reflect]",
|
|
27
|
+
"tools": "Read, Write, Task, Glob, Bash"
|
|
16
28
|
},
|
|
17
29
|
{
|
|
18
|
-
"name": "bandit-status"
|
|
30
|
+
"name": "bandit-status",
|
|
31
|
+
"description": "Surface read-only per-(agent, bin, delegate) bandit posterior snapshot - alpha/beta/mean/stddev/count/last-used per arm. Phase 27.5 (v1.27.5) diagnostic. Use when investigating 'why did the bandit pick tier X for agent Y?' or when verifying posterior convergence after enabling adaptive_mode: full.",
|
|
32
|
+
"argument_hint": "",
|
|
33
|
+
"tools": "Read, Bash"
|
|
19
34
|
},
|
|
20
35
|
{
|
|
21
|
-
"name": "benchmark"
|
|
36
|
+
"name": "benchmark",
|
|
37
|
+
"description": "Harvest and synthesize per-component design benchmarks from 18 design systems and produce canonical component specs at `reference/components/<name>.md`. Use when adding a new component spec, running a benchmark wave, listing corpus coverage, or refreshing a spec after a design-system version bump.",
|
|
38
|
+
"argument_hint": "<component> | --wave <N> | --list | --refresh <component>",
|
|
39
|
+
"tools": "Read, Write, Bash, Grep, Glob, Task, WebFetch"
|
|
22
40
|
},
|
|
23
41
|
{
|
|
24
|
-
"name": "bootstrap-ds"
|
|
42
|
+
"name": "bootstrap-ds",
|
|
43
|
+
"description": "Bootstraps a design system for a GREENFIELD project that has none - no Figma, no tokens, no component library. Takes a brand input (primary color + optional secondary + tone tags + target framework) and emits a coherent OKLCH token system (color tints, modular type scale, 4pt/8pt spacing, radius + motion defaults) in 3 variants to pick from, then scaffolds proof components (button/input/card). Use at the start of a brand-new project, or when {{command_prefix}}discover finds no existing design system. Never invents a brand; never overwrites an existing DS.",
|
|
44
|
+
"argument_hint": "[--primary <color>] [--secondary <color>] [--tone <tags>] [--framework web|native-ios|native-android|flutter]",
|
|
45
|
+
"user_invocable": true,
|
|
46
|
+
"tools": "Read, Write, Bash, Glob, Grep, AskUserQuestion, Task"
|
|
25
47
|
},
|
|
26
48
|
{
|
|
27
|
-
"name": "brief"
|
|
49
|
+
"name": "brief",
|
|
50
|
+
"description": "Stage 1 of 5 design intake that captures problem statement, audience, constraints, success metrics, and scope into .design/BRIEF.md, and bootstraps .design/STATE.md if missing. Use when starting a new design cycle and before {{command_prefix}}explore.",
|
|
51
|
+
"argument_hint": "[--re-brief to redo intake on existing project]",
|
|
52
|
+
"tools": "Read, Write, AskUserQuestion, mcp__gdd_state__frontmatter_update, mcp__gdd_state__set_status, mcp__gdd_state__update_progress, mcp__gdd_state__get"
|
|
28
53
|
},
|
|
29
54
|
{
|
|
30
|
-
"name": "budget"
|
|
55
|
+
"name": "budget",
|
|
56
|
+
"description": "Forecasts GDD design-cycle spend before the bill arrives. Reads .design/telemetry/costs.jsonl (cost per cycle) + .design/budget.json (the project_cap), runs the pure cost-forecast model via agents/cost-forecaster.md, and projects the next N cycles - surfacing 'at the current rate you'll hit your $X project cap in Y cycles.' Supports --scenario best|typical|worst and --cycles N. Read-only - it forecasts and warns; it never spends, edits budget.json, or halts (the budget-enforcer hook halts). Use to sanity-check spend trajectory before a long run.",
|
|
57
|
+
"argument_hint": "[--cycles N] [--scenario best|typical|worst]",
|
|
58
|
+
"user_invocable": true,
|
|
59
|
+
"tools": "Read, Bash, Grep, Glob, ToolSearch, Task"
|
|
31
60
|
},
|
|
32
61
|
{
|
|
33
|
-
"name": "cache-manager"
|
|
62
|
+
"name": "cache-manager",
|
|
63
|
+
"description": "Maintains .design/cache-manifest.json for Layer B explicit cache per D-08. Computes deterministic SHA-256 input-hash from (agent-path + sorted-input-file-paths + input-content-hashes). On spawn: lookup key → return cached blob if within TTL, else miss. On completion: write result + TTL. Consulted by hooks/budget-enforcer.js before every Agent spawn.",
|
|
64
|
+
"user_invocable": false,
|
|
65
|
+
"tools": "Read, Bash, Write",
|
|
66
|
+
"disable_model_invocation": true
|
|
34
67
|
},
|
|
35
68
|
{
|
|
36
|
-
"name": "check-update"
|
|
69
|
+
"name": "check-update",
|
|
70
|
+
"description": "Manual plugin-update check. Shows cached state by default; --refresh bypasses the 24h TTL; --dismiss hides the nudge until a newer release ships; --prompt spawns design-update-checker for a richer summary.",
|
|
71
|
+
"argument_hint": "[--refresh] [--dismiss] [--prompt]",
|
|
72
|
+
"tools": "Read, Write, Bash, Task"
|
|
37
73
|
},
|
|
38
74
|
{
|
|
39
|
-
"name": "compare"
|
|
75
|
+
"name": "compare",
|
|
76
|
+
"description": "Compute the delta between the `DESIGN.md` baseline (from scan) and the `DESIGN-VERIFICATION.md` result (from verify), reporting per-category score delta, anti-pattern delta (resolved vs new), must-have pass/fail change, and design drift (regressions without covering tasks in `DESIGN-PLAN.md`). Use after `verify` to measure whether a design pipeline cycle actually improved the design. Writes `.design/COMPARE-REPORT.md`.",
|
|
77
|
+
"argument_hint": "",
|
|
78
|
+
"user_invocable": true
|
|
40
79
|
},
|
|
41
80
|
{
|
|
42
|
-
"name": "complete-cycle"
|
|
81
|
+
"name": "complete-cycle",
|
|
82
|
+
"description": "Cycle closeout command that marks CYCLES.md entry complete, archives pipeline artifacts to .design/archive/cycle-N/, generates EXPERIENCE.md, rebuilds the search index, and resets STATE.md. Use when a design cycle has shipped and you're ready to start the next one.",
|
|
83
|
+
"argument_hint": "[<retrospective note>]",
|
|
84
|
+
"tools": "Read, Write, Bash, AskUserQuestion"
|
|
43
85
|
},
|
|
44
86
|
{
|
|
45
|
-
"name": "connections"
|
|
87
|
+
"name": "connections",
|
|
88
|
+
"description": "Interactive onboarding wizard for the 33 external integrations the pipeline supports - probes all (`figma`, `refero`, `preview`, `storybook`, `chromatic`, `graphify`, `pinterest`, `claude-design`, `paper-design`, `pencil-dev`, `21st-dev`, `magic-patterns`, `lazyweb`, `mobbin`, `slack`, `discord`, `linear`, `jira`, `notion`, `lottie`, `rive`, `framer`, `penpot`, `webflow`, `v0-dev`, `plasmic`, `builder-io`, `launchdarkly`, `statsig`, `growthbook`, `usertesting`, `maze`, `hotjar`), recommends based on project type, walks the user through setup (auto-run MCP install or copy-command fallback), writes results to `STATE.md <connections>`. Use after `{{command_prefix}}new-project` or whenever the user wants to add, inspect, or skip a connection. Re-runnable anytime.",
|
|
89
|
+
"argument_hint": "[list | <connection-name> | --auto]",
|
|
90
|
+
"user_invocable": true,
|
|
91
|
+
"tools": "Read, Write, Bash, Glob, Grep, AskUserQuestion, ToolSearch"
|
|
46
92
|
},
|
|
47
93
|
{
|
|
48
|
-
"name": "continue"
|
|
94
|
+
"name": "continue",
|
|
95
|
+
"description": "Alias for {{command_prefix}}resume - restore session context from the most recent checkpoint.",
|
|
96
|
+
"argument_hint": "[<checkpoint-N>]",
|
|
97
|
+
"tools": "Read, Write, Bash, Glob",
|
|
98
|
+
"disable_model_invocation": true
|
|
49
99
|
},
|
|
50
100
|
{
|
|
51
|
-
"name": "darkmode"
|
|
101
|
+
"name": "darkmode",
|
|
102
|
+
"description": "Audit a project's dark mode implementation - detects architecture (CSS custom props, Tailwind `dark:` prefix, or JS class toggle), runs architecture-specific contrast / token-override / anti-pattern / meta-property checks, and writes a prioritized fix list to `.design/DARKMODE-AUDIT.md`. Use when the user wants to verify dark mode quality without re-running the full design pipeline. Read-only - no score writeback to `DESIGN.md`.",
|
|
103
|
+
"argument_hint": "",
|
|
104
|
+
"user_invocable": true
|
|
52
105
|
},
|
|
53
106
|
{
|
|
54
|
-
"name": "debug"
|
|
107
|
+
"name": "debug",
|
|
108
|
+
"description": "Symptom-driven design debugger with persistent state. Phase 1 builds a feedback loop; Phase 2 hypothesizes. Writes findings to .design/DEBUG.md. Use when a symptom needs systematic, one-variable-at-a-time tracking.",
|
|
109
|
+
"argument_hint": "[<symptom description>]",
|
|
110
|
+
"tools": "Read, Write, Grep, Glob, AskUserQuestion, Task"
|
|
55
111
|
},
|
|
56
112
|
{
|
|
57
|
-
"name": "design"
|
|
113
|
+
"name": "design",
|
|
114
|
+
"frontmatter_name": "design",
|
|
115
|
+
"description": "Stage 4 of 5 orchestrator that reads DESIGN-PLAN.md, partitions tasks by wave + parallel-safe flag, and spawns design-executor agents with the appropriate isolation (worktree for parallel batches, in-place for sequential tail). Use when DESIGN-PLAN.md is approved and ready for implementation.",
|
|
116
|
+
"argument_hint": "[--auto] [--parallel] [--variants N]",
|
|
117
|
+
"user_invocable": true,
|
|
118
|
+
"tools": "Read, Write, Bash, Grep, Glob, Task, AskUserQuestion, mcp__gdd_state__get, mcp__gdd_state__transition_stage, mcp__gdd_state__update_progress, mcp__gdd_state__set_status, mcp__gdd_state__add_blocker, mcp__gdd_state__resolve_blocker, mcp__gdd_state__checkpoint"
|
|
58
119
|
},
|
|
59
120
|
{
|
|
60
|
-
"name": "discover"
|
|
121
|
+
"name": "discover",
|
|
122
|
+
"frontmatter_name": "discover",
|
|
123
|
+
"description": "Stage 1.5 of 4 orchestrator that probes Figma / Refero / Pinterest connections, spawns design-context-builder (auto-detect + interview) and (via lazy gate) design-context-checker (6-dimension validator), producing .design/DESIGN-CONTEXT.md. Use after {{command_prefix}}scan when a fast-path context build is wanted instead of the full {{command_prefix}}explore.",
|
|
124
|
+
"argument_hint": "[--auto]",
|
|
125
|
+
"user_invocable": true
|
|
61
126
|
},
|
|
62
127
|
{
|
|
63
|
-
"name": "discuss"
|
|
128
|
+
"name": "discuss",
|
|
129
|
+
"description": "Adaptive design interview command that spawns design-discussant in normal / --all / --spec mode to gather decisions via one-question-at-a-time AskUserQuestion, writing D-XX entries to STATE.md <decisions>. Use when locking design decisions outside the main pipeline or backfilling missing context.",
|
|
130
|
+
"argument_hint": "[topic] [--all] [--spec] [--cycle <name>]",
|
|
131
|
+
"tools": "Read, Write, Task"
|
|
64
132
|
},
|
|
65
133
|
{
|
|
66
|
-
"name": "do"
|
|
134
|
+
"name": "do",
|
|
135
|
+
"description": "Natural-language design task router. Parses your intent, maps to the right gdd command(s), confirms before executing.",
|
|
136
|
+
"argument_hint": "<natural language description>",
|
|
137
|
+
"tools": "Read, Write, AskUserQuestion"
|
|
67
138
|
},
|
|
68
139
|
{
|
|
69
|
-
"name": "explore"
|
|
140
|
+
"name": "explore",
|
|
141
|
+
"description": "Stage 2 of 5 - unified exploration merging inventory grep + design interview. Probes 6 connections, scans the codebase, conducts the AskUserQuestion interview, and writes .design/DESIGN.md + DESIGN-DEBT.md + DESIGN-CONTEXT.md. Use after {{command_prefix}}brief to map the existing system and lock decisions before planning.",
|
|
142
|
+
"argument_hint": "[--skip-interview] [--skip-scan]",
|
|
143
|
+
"tools": "Read, Write, Bash, Grep, Glob, Task, AskUserQuestion, mcp__gdd_state__get, mcp__gdd_state__transition_stage, mcp__gdd_state__probe_connections, mcp__gdd_state__update_progress, mcp__gdd_state__set_status, mcp__gdd_state__add_blocker, mcp__gdd_state__checkpoint, mcp__gdd_state__add_decision"
|
|
70
144
|
},
|
|
71
145
|
{
|
|
72
|
-
"name": "export"
|
|
146
|
+
"name": "export",
|
|
147
|
+
"description": "Packages a completed design cycle (.design artifacts + decisions + screenshots) into a stakeholder-shareable artifact - self-contained HTML, print-styled PDF (Paged.js-compatible), or a Notion page. Redacts secrets; --pseudonymize masks identity for external sharing; --pr posts the HTML preview as a PR comment. Use to hand a design-review packet to PMs/execs/brand who aren't in the repo.",
|
|
148
|
+
"argument_hint": "<cycle-id> --format html|pdf|notion [--pseudonymize] [--pr]",
|
|
149
|
+
"user_invocable": true,
|
|
150
|
+
"tools": "Read, Write, Bash, Glob, Grep, ToolSearch, Task"
|
|
73
151
|
},
|
|
74
152
|
{
|
|
75
|
-
"name": "extract-learnings"
|
|
153
|
+
"name": "extract-learnings",
|
|
154
|
+
"description": "Extracts project-specific design patterns and decisions from .design/ artifacts and writes them to .design/learnings/. Optionally proposes updates to reference/ files for user review.",
|
|
155
|
+
"tools": "Bash, Read, Write, Glob, Grep"
|
|
76
156
|
},
|
|
77
157
|
{
|
|
78
|
-
"name": "fast"
|
|
158
|
+
"name": "fast",
|
|
159
|
+
"description": "Trivial inline design task. No subagents, no planning documents, no pipeline stages. Just do the thing described.",
|
|
160
|
+
"argument_hint": "<task description>",
|
|
161
|
+
"tools": "Read, Write, Edit, Bash, Grep, Glob",
|
|
162
|
+
"disable_model_invocation": true
|
|
79
163
|
},
|
|
80
164
|
{
|
|
81
|
-
"name": "figma-extract"
|
|
165
|
+
"name": "figma-extract",
|
|
166
|
+
"description": "Off-context Figma design-system extraction into a compact local digest (DESIGN.md + tokens.json + components.json). Pulls the file via the Figma REST API and digests it without the raw JSON ever entering the model context."
|
|
82
167
|
},
|
|
83
168
|
{
|
|
84
|
-
"name": "figma-write"
|
|
169
|
+
"name": "figma-write",
|
|
170
|
+
"description": "Write design decisions from `.design/DESIGN-CONTEXT.md` back into the active Figma file by dispatching the `design-figma-writer` agent in one of three modes (annotate / tokenize / mappings). Use when the user has completed a design pipeline cycle and wants the decisions (layer comments, variable bindings, or Code Connect mappings) reflected in Figma. Operates proposal→confirm with `--dry-run` and `--confirm-shared` flags."
|
|
85
171
|
},
|
|
86
172
|
{
|
|
87
|
-
"name": "graphify"
|
|
173
|
+
"name": "graphify",
|
|
174
|
+
"description": "Manage the Graphify knowledge graph for the current project. Build, query, status, diff. When available, design-planner and design-integration-checker use the graph for pre-search consultation."
|
|
88
175
|
},
|
|
89
176
|
{
|
|
90
|
-
"name": "health"
|
|
177
|
+
"name": "health",
|
|
178
|
+
"description": "Reports .design/ artifact health - staleness, missing files, token drift, broken state transitions.",
|
|
179
|
+
"tools": "Read, Bash, Glob, Grep, mcp__gdd_state__get",
|
|
180
|
+
"disable_model_invocation": true
|
|
91
181
|
},
|
|
92
182
|
{
|
|
93
|
-
"name": "help"
|
|
183
|
+
"name": "help",
|
|
184
|
+
"description": "Lists all available get-design-done commands with one-line descriptions",
|
|
185
|
+
"tools": "Read",
|
|
186
|
+
"disable_model_invocation": true
|
|
94
187
|
},
|
|
95
188
|
{
|
|
96
|
-
"name": "list-assumptions"
|
|
189
|
+
"name": "list-assumptions",
|
|
190
|
+
"description": "Surfaces hidden design assumptions baked into the codebase before planning - pattern-based detection plus user-surfaced items.",
|
|
191
|
+
"argument_hint": "[--area typography|color|layout|motion|a11y]",
|
|
192
|
+
"tools": "Read, Grep, Glob",
|
|
193
|
+
"disable_model_invocation": true
|
|
97
194
|
},
|
|
98
195
|
{
|
|
99
|
-
"name": "
|
|
196
|
+
"name": "list-pins",
|
|
197
|
+
"description": "Lists pinned skill aliases per harness with their source skill and pin timestamp. Use when you want to see which gdd skills have been pinned as standalone shortcuts and where.",
|
|
198
|
+
"tools": "Read, Bash",
|
|
199
|
+
"registered_in_phase": "46"
|
|
100
200
|
},
|
|
101
201
|
{
|
|
102
|
-
"name": "
|
|
202
|
+
"name": "live",
|
|
203
|
+
"description": "Live in-browser design mode. The user picks a DOM element on a running dev server (via the Claude Preview MCP), the agent generates N design variants in one batch, they hot-swap in place through HMR or preview_eval using a data-gdd-variant marker, the user accepts or discards, and the whole pick-generate-accept loop persists to .design/live-sessions so it survives a crash or resume. Use when the user wants to iterate on the look of a live component against a real running server, asks to try variants on a page, or runs the live command with a url; falls back to a screenshot-only degraded mode on harnesses without MCP support.",
|
|
204
|
+
"argument_hint": "[--variants N] [--resume <session-id>] [url]",
|
|
205
|
+
"tools": "Read, Write, Edit, Bash, Glob, Grep, Task",
|
|
206
|
+
"user_invocable": true,
|
|
207
|
+
"registered_in_phase": "47"
|
|
103
208
|
},
|
|
104
209
|
{
|
|
105
|
-
"name": "
|
|
210
|
+
"name": "locale",
|
|
211
|
+
"description": "Inspects or sets the GDD CLI locale for this project. With no argument, reports the resolved locale (config.locale > env LANG > en), the fallback chain, and per-locale coverage (which message tables are complete vs placeholder). With a <code> (en/ru/uk/de/fr/zh/ja), sets .design/config.json#locale after previewing the change. Localizes --help, common error messages, and skill prompt headers via scripts/lib/i18n/; missing keys fall back to English, so a partial locale never breaks the CLI. Use to switch GDD's own output language.",
|
|
212
|
+
"argument_hint": "[<code>]",
|
|
213
|
+
"user_invocable": true,
|
|
214
|
+
"tools": "Read, Write, Bash, Grep, Glob"
|
|
106
215
|
},
|
|
107
216
|
{
|
|
108
|
-
"name": "
|
|
217
|
+
"name": "map",
|
|
218
|
+
"description": "Dispatches 5 specialist codebase mappers in parallel. Produces .design/map/*.md files consumed by the explore stage.",
|
|
219
|
+
"argument_hint": "[--only tokens|components|visual-hierarchy|a11y|motion]",
|
|
220
|
+
"tools": "Read, Write, Bash, Task",
|
|
221
|
+
"user_invocable": true
|
|
109
222
|
},
|
|
110
223
|
{
|
|
111
|
-
"name": "
|
|
224
|
+
"name": "migrate",
|
|
225
|
+
"description": "Migrates a project off GDD's own deprecated paths after an upgrade. Reads the machine-readable registry in reference/DEPRECATIONS.md (via scripts/lib/deprecation-registry.cjs), scans the project's .design/config.json + any local skill/agent references for paths that are now deprecated or removed at the installed version, and PREVIEWS a diff before changing anything. Interactive by default (confirm per change); --yes auto-applies; --dry-run previews only. Read-first, never silent. Use after {{command_prefix}}update flags a breaking change.",
|
|
226
|
+
"argument_hint": "[--yes] [--dry-run]",
|
|
227
|
+
"user_invocable": true,
|
|
228
|
+
"tools": "Read, Write, Bash, Grep, Glob"
|
|
112
229
|
},
|
|
113
230
|
{
|
|
114
|
-
"name": "
|
|
231
|
+
"name": "new-cycle",
|
|
232
|
+
"description": "Start a new design cycle. Creates cycle scope in STATE.md, initializes .design/CYCLES.md entry. Each cycle has its own goal and tracks its own decisions/tasks/pipeline runs.",
|
|
233
|
+
"argument_hint": "[<goal>]",
|
|
234
|
+
"tools": "Read, Write, AskUserQuestion"
|
|
115
235
|
},
|
|
116
236
|
{
|
|
117
|
-
"name": "
|
|
237
|
+
"name": "new-project",
|
|
238
|
+
"description": "Initialize a new get-design-done project. Gathers project context, creates PROJECT.md and STATE.md, initializes first cycle. Run once per project before any pipeline stage.",
|
|
239
|
+
"argument_hint": "[--name <project-name>]",
|
|
240
|
+
"tools": "Read, Write, AskUserQuestion, Bash, Glob"
|
|
118
241
|
},
|
|
119
242
|
{
|
|
120
|
-
"name": "
|
|
243
|
+
"name": "next",
|
|
244
|
+
"description": "Routes to the next pipeline stage based on current STATE.md position",
|
|
245
|
+
"tools": "Read, Write, mcp__gdd_status, mcp__gdd_phase_current, mcp__gdd_plans_list",
|
|
246
|
+
"disable_model_invocation": true
|
|
121
247
|
},
|
|
122
248
|
{
|
|
123
|
-
"name": "
|
|
249
|
+
"name": "note",
|
|
250
|
+
"description": "Zero-friction idea capture during any stage. Appends to .design/NOTES.md. Subcommands: add, list, promote.",
|
|
251
|
+
"argument_hint": "<add|list|promote> [text|line-number]",
|
|
252
|
+
"tools": "Read, Write",
|
|
253
|
+
"disable_model_invocation": true
|
|
124
254
|
},
|
|
125
255
|
{
|
|
126
|
-
"name": "
|
|
256
|
+
"name": "openrouter-status",
|
|
257
|
+
"description": "Read-only OpenRouter catalog + tier-mapping diagnostic - surfaces catalog freshness (fetched_at vs the 24h TTL), the last-fetch timestamp, the resolved opus/sonnet/haiku → model mappings (via the Phase-33.6 adapter), and a per-tier preview. Use when investigating which OpenRouter model a tier resolves to, or whether the catalog cache is fresh/stale. Phase 33.6 (v1.33.6) diagnostic - {{command_prefix}}openrouter-status.",
|
|
258
|
+
"argument_hint": "[--refresh]",
|
|
259
|
+
"tools": "Read, Bash",
|
|
260
|
+
"disable_model_invocation": true
|
|
127
261
|
},
|
|
128
262
|
{
|
|
129
|
-
"name": "
|
|
263
|
+
"name": "optimize",
|
|
264
|
+
"frontmatter_name": "optimize",
|
|
265
|
+
"description": "Reads .design/telemetry/costs.jsonl + .design/agent-metrics.json, runs rule-based analysis, writes .design/OPTIMIZE-RECOMMENDATIONS.md. Pure advisory - no auto-apply. User reviews + decides.",
|
|
266
|
+
"argument_hint": "[--refresh] [--min-spawns=N]",
|
|
267
|
+
"user_invocable": true,
|
|
268
|
+
"tools": "Read, Bash, Grep, Write"
|
|
130
269
|
},
|
|
131
270
|
{
|
|
132
|
-
"name": "
|
|
271
|
+
"name": "pause",
|
|
272
|
+
"description": "Write a numbered checkpoint so work can resume in a new session without re-running completed stages.",
|
|
273
|
+
"argument_hint": "[context note]",
|
|
274
|
+
"tools": "Read, Write, Bash, AskUserQuestion, mcp__gdd_state__get, mcp__gdd_state__set_status, mcp__gdd_state__add_blocker, mcp__gdd_state__checkpoint",
|
|
275
|
+
"disable_model_invocation": true
|
|
133
276
|
},
|
|
134
277
|
{
|
|
135
|
-
"name": "
|
|
278
|
+
"name": "peer-cli-add",
|
|
279
|
+
"frontmatter_name": "peer-cli-add",
|
|
280
|
+
"description": "Guided ladder for adding a brand-new peer (not in the v1.27 capability matrix) to gdd's peer-CLI delegation layer. Walks the verification ladder, scaffolds an adapter, updates the capability matrix, and handles Windows quirks. Run when you discover a new peer CLI you want gdd to delegate to.",
|
|
281
|
+
"argument_hint": "<new-peer-id> <peer-binary> <protocol: acp|asp>",
|
|
282
|
+
"tools": "Read, Edit, Write, Bash, Grep"
|
|
136
283
|
},
|
|
137
284
|
{
|
|
138
|
-
"name": "
|
|
285
|
+
"name": "peer-cli-customize",
|
|
286
|
+
"frontmatter_name": "peer-cli-customize",
|
|
287
|
+
"description": "Rewire role->peer mappings on a per-agent basis. File-edit-driven (touches frontmatter delegate_to: per agent), no runtime config layer. Run when you want a specific agent to delegate to a different peer than the default capability-matrix mapping suggests.",
|
|
288
|
+
"argument_hint": "[<agent-name>] [<new-delegate-target>]",
|
|
289
|
+
"tools": "Read, Edit, Bash, Grep"
|
|
139
290
|
},
|
|
140
291
|
{
|
|
141
|
-
"name": "
|
|
292
|
+
"name": "peers",
|
|
293
|
+
"description": "Discover peer-CLI capability matrix - which of {codex, gemini, cursor, copilot, qwen} are installed, allowlisted in .design/config.json, and (if Phase 23.5 has data) their cost/quality delta vs local. Single command, no flags. Read by users investigating delegation setup.",
|
|
294
|
+
"argument_hint": "",
|
|
295
|
+
"tools": "Read, Bash"
|
|
142
296
|
},
|
|
143
297
|
{
|
|
144
|
-
"name": "
|
|
298
|
+
"name": "pin",
|
|
299
|
+
"description": "Writes standalone shortcut aliases for a gdd skill across installed harness skill dirs. Use when you want a skill directly discoverable as its own command in every installed runtime.",
|
|
300
|
+
"argument_hint": "<skill-name>",
|
|
301
|
+
"tools": "Read, Bash",
|
|
302
|
+
"registered_in_phase": "46"
|
|
145
303
|
},
|
|
146
304
|
{
|
|
147
|
-
"name": "
|
|
305
|
+
"name": "plan",
|
|
306
|
+
"frontmatter_name": "plan",
|
|
307
|
+
"description": "Stage 3 of 5 orchestrator that reads DESIGN-CONTEXT.md, runs optional research (phase-researcher / pattern-mapper / assumptions-analyzer / synthesizer), spawns design-planner + design-plan-checker, and writes DESIGN-PLAN.md. Use when DESIGN-CONTEXT.md is locked and you need a wave-ordered execution plan.",
|
|
308
|
+
"argument_hint": "[--auto] [--parallel]",
|
|
309
|
+
"user_invocable": true,
|
|
310
|
+
"tools": "Read, Write, Bash, Glob, Task, AskUserQuestion, ToolSearch, mcp__gdd_state__get, mcp__gdd_state__transition_stage, mcp__gdd_state__add_decision, mcp__gdd_state__add_must_have, mcp__gdd_state__update_progress, mcp__gdd_state__set_status, mcp__gdd_state__add_blocker, mcp__gdd_state__checkpoint, mcp__gdd_state__probe_connections"
|
|
148
311
|
},
|
|
149
312
|
{
|
|
150
|
-
"name": "
|
|
313
|
+
"name": "plant-seed",
|
|
314
|
+
"description": "Forward-looking design idea with a trigger condition. Seeds surface automatically when trigger is met. Writes to .design/SEEDS.md.",
|
|
315
|
+
"argument_hint": "[--trigger <condition>] [text]",
|
|
316
|
+
"tools": "Read, Write, AskUserQuestion",
|
|
317
|
+
"disable_model_invocation": true
|
|
151
318
|
},
|
|
152
319
|
{
|
|
153
|
-
"name": "
|
|
320
|
+
"name": "pr-branch",
|
|
321
|
+
"description": "Create a clean PR branch by filtering out .design/ and .planning/ commits. Code-review-ready branch for the design implementation work.",
|
|
322
|
+
"argument_hint": "[<base-branch>]",
|
|
323
|
+
"tools": "Read, Write, Bash",
|
|
324
|
+
"disable_model_invocation": true
|
|
154
325
|
},
|
|
155
326
|
{
|
|
156
|
-
"name": "
|
|
327
|
+
"name": "progress",
|
|
328
|
+
"description": "Shows current pipeline position and routes to next action. --forensic runs 6-check integrity audit.",
|
|
329
|
+
"argument_hint": "[--forensic]",
|
|
330
|
+
"tools": "Read, Bash, Grep, Glob, mcp__gdd_state__get, mcp__gdd_status, mcp__gdd_phase_current"
|
|
157
331
|
},
|
|
158
332
|
{
|
|
159
|
-
"name": "
|
|
333
|
+
"name": "quality-gate",
|
|
334
|
+
"frontmatter_name": "quality-gate",
|
|
335
|
+
"description": "Stage 4.5 of the pipeline. Detects, runs, and classifies project quality commands (lint / typecheck / test / visual-regression) between {{command_prefix}}design and {{command_prefix}}verify; writes the most recent run to STATE.md <quality_gate>. Non-blocking on timeout (warn + proceed); failures spawn design-fixer until the loop converges or max_iters is reached.",
|
|
336
|
+
"tools": "Read, Write, Edit, Bash, Grep, Glob, Task",
|
|
337
|
+
"extra_frontmatter": [
|
|
338
|
+
"color: amber",
|
|
339
|
+
"model: inherit",
|
|
340
|
+
"default-tier: haiku",
|
|
341
|
+
"size_budget: M",
|
|
342
|
+
"parallel-safe: conditional-on-touches",
|
|
343
|
+
"typical-duration-seconds: 180",
|
|
344
|
+
"reads-only: false",
|
|
345
|
+
"writes:",
|
|
346
|
+
" - \".design/STATE.md\"",
|
|
347
|
+
" - \".design/events.jsonl\""
|
|
348
|
+
]
|
|
160
349
|
},
|
|
161
350
|
{
|
|
162
|
-
"name": "
|
|
351
|
+
"name": "quick",
|
|
352
|
+
"description": "Run the pipeline with optional agents skipped for speed. Skips: phase-researcher, design-assumptions-analyzer, design-integration-checker. Keeps: planner, executor, verifier, auditor.",
|
|
353
|
+
"argument_hint": "[--skip <agent-name>] [stage]",
|
|
354
|
+
"tools": "Read, Task",
|
|
355
|
+
"disable_model_invocation": true
|
|
163
356
|
},
|
|
164
357
|
{
|
|
165
|
-
"name": "
|
|
358
|
+
"name": "reapply-patches",
|
|
359
|
+
"description": "Reapply user modifications to reference/ files after a plugin update. Detects customizations via git diff against pristine baseline.",
|
|
360
|
+
"argument_hint": "[--dry-run]",
|
|
361
|
+
"tools": "Read, Write, Bash",
|
|
362
|
+
"disable_model_invocation": true
|
|
166
363
|
},
|
|
167
364
|
{
|
|
168
|
-
"name": "
|
|
365
|
+
"name": "recall",
|
|
366
|
+
"description": "Search cross-cycle memory: decisions, learnings, experience archives. Returns ranked matches.",
|
|
367
|
+
"argument_hint": "<query> [--reindex]",
|
|
368
|
+
"tools": "Read, Write, Bash",
|
|
369
|
+
"disable_model_invocation": true
|
|
169
370
|
},
|
|
170
371
|
{
|
|
171
|
-
"name": "
|
|
372
|
+
"name": "reflect",
|
|
373
|
+
"description": "Run design-reflector on demand - produces .design/reflections/<cycle-slug>.md with improvement proposals. Review proposals with {{command_prefix}}apply-reflections.",
|
|
374
|
+
"argument_hint": "[--dry-run] [--cycle <slug>]",
|
|
375
|
+
"tools": "Read, Write, Task"
|
|
172
376
|
},
|
|
173
377
|
{
|
|
174
|
-
"name": "
|
|
378
|
+
"name": "report-issue",
|
|
379
|
+
"frontmatter_name": "report-issue",
|
|
380
|
+
"description": "Consent-gated GitHub issue reporter for /gdd. Triages locally against `reference/known-failure-modes.md`, layers Phase 22 secret-redaction with Phase 30 pseudonymization, drafts the payload to `.design/issue-drafts/`, opens `$EDITOR` for inspection, and submits via the user's `gh` CLI to a hardcoded repo only after explicit per-issue consent. Use when the user runs `{{command_prefix}}report-issue`, hits a failure on a whitelisted command with the `--report` flag, or asks to file a bug against get-design-done.",
|
|
381
|
+
"argument_hint": "[<command-name>] [--force-report]",
|
|
382
|
+
"tools": "Read, Write, Grep, Bash"
|
|
175
383
|
},
|
|
176
384
|
{
|
|
177
|
-
"name": "
|
|
385
|
+
"name": "resume",
|
|
386
|
+
"description": "Restore session context from a numbered checkpoint. Lists available checkpoints when no argument given.",
|
|
387
|
+
"argument_hint": "[<N>]",
|
|
388
|
+
"tools": "Read, Write, Bash, Glob, AskUserQuestion, mcp__gdd_state__get, mcp__gdd_state__set_status, mcp__gdd_state__resolve_blocker, mcp__gdd_state__checkpoint, mcp__gdd_status, mcp__gdd_phase_current, mcp__gdd_plans_list, mcp__gdd_decisions_list",
|
|
389
|
+
"disable_model_invocation": true
|
|
178
390
|
},
|
|
179
391
|
{
|
|
180
|
-
"name": "
|
|
392
|
+
"name": "review-backlog",
|
|
393
|
+
"description": "Review parked backlog items and promote any to active cycle todo.",
|
|
394
|
+
"tools": "Read, Write, AskUserQuestion",
|
|
395
|
+
"disable_model_invocation": true
|
|
181
396
|
},
|
|
182
397
|
{
|
|
183
|
-
"name": "
|
|
398
|
+
"name": "review-decisions",
|
|
399
|
+
"description": "Surfaces the async decision-review queue for team mode. Reads .design/reviews/<decision-id>/ entries and reports each decision's state in the proposed → reviewing → approved → locked machine (via scripts/lib/collab/review-queue.cjs), so a team can see what's awaiting review, what's approved, and what's locked. --pending shows only decisions still needing action. Read-only - it reports the queue; it never advances a decision (that's a reviewer's explicit call). Use to run an async design-decision review without a meeting.",
|
|
400
|
+
"argument_hint": "[<decision-id>] [--pending]",
|
|
401
|
+
"user_invocable": true,
|
|
402
|
+
"tools": "Read, Bash, Grep, Glob"
|
|
184
403
|
},
|
|
185
404
|
{
|
|
186
|
-
"name": "
|
|
405
|
+
"name": "roi",
|
|
406
|
+
"description": "Shows whether GDD spend actually shipped anything. Joins per-cycle cost (.design/telemetry/costs.jsonl) with what each cycle shipped - commits that SURVIVED in main vs commits that were reverted - and reports cost-per-shipped-commit + a stick rate per cycle. 'Shipped' = a commit surviving >= the window (default 14 days), which catches revert-after-bug-discovery. Markdown table, not a GUI. Read-only - it reads git log + cost telemetry and reports. Use to see which cycles were worth their spend.",
|
|
407
|
+
"argument_hint": "[--since <date>] [--window-days 14]",
|
|
408
|
+
"user_invocable": true,
|
|
409
|
+
"tools": "Read, Bash, Grep, Glob"
|
|
187
410
|
},
|
|
188
411
|
{
|
|
189
|
-
"name": "
|
|
412
|
+
"name": "rollout-status",
|
|
413
|
+
"description": "Shows where a finished design cycle actually is in production rollout - unrolled / staging-only / canary-N% / prod-100% - by reading the feature-flag service (LaunchDarkly/Statsig/GrowthBook) via the rollout-coordinator. Surfaces STUCK rollouts (a canary that hasn't advanced for N days) and the design_arms outcome weighting. Read-only - GDD never advances or rolls back; it reports and notifies. Use after {{command_prefix}}ship to track the post-merge journey.",
|
|
414
|
+
"argument_hint": "[<cycle>] [--all] [--stuck]",
|
|
415
|
+
"user_invocable": true,
|
|
416
|
+
"tools": "Read, Bash, Grep, Glob, ToolSearch, Task"
|
|
190
417
|
},
|
|
191
418
|
{
|
|
192
|
-
"name": "
|
|
419
|
+
"name": "router",
|
|
420
|
+
"description": "Routes a /gdd command to fast|quick|full path + S|M|L|XL complexity_class and returns {path, complexity_class, model_tier_overrides, resolved_models, estimated_cost_usd, cache_hits}. Deterministic - no model call. Invoked once at command entry before any Agent spawn. Read by hooks/budget-enforcer.js.",
|
|
421
|
+
"argument_hint": "<intent-string> [<target-artifacts-csv>]",
|
|
422
|
+
"tools": "Read, Bash, Grep"
|
|
193
423
|
},
|
|
194
424
|
{
|
|
195
|
-
"name": "
|
|
425
|
+
"name": "scan",
|
|
426
|
+
"frontmatter_name": "scan",
|
|
427
|
+
"description": "Pre-pipeline initializer that maps an existing repo's design system (colors, typography, spacing, components, tokens), runs the anti-pattern audit, scores the 7 weighted categories, and writes DESIGN.md + .design/DESIGN-DEBT.md. Use when starting work in any new or existing repo before {{command_prefix}}discover.",
|
|
428
|
+
"argument_hint": "[--quick] [--full]",
|
|
429
|
+
"user_invocable": true
|
|
196
430
|
},
|
|
197
431
|
{
|
|
198
|
-
"name": "
|
|
432
|
+
"name": "settings",
|
|
433
|
+
"description": "Manage .design/config.json settings. Subcommands: profile, parallelism, cleanup, show.",
|
|
434
|
+
"argument_hint": "<profile <name>|parallelism <key> <value>|cleanup|show>",
|
|
435
|
+
"tools": "Read, Write, AskUserQuestion, Bash, mcp__gdd_state__get, mcp__gdd_state__frontmatter_update",
|
|
436
|
+
"disable_model_invocation": true
|
|
199
437
|
},
|
|
200
438
|
{
|
|
201
|
-
"name": "
|
|
439
|
+
"name": "ship",
|
|
440
|
+
"description": "Post-verify PR flow - creates a clean PR branch, invokes code review check, and prepares the PR for merge.",
|
|
441
|
+
"argument_hint": "[--title <PR title>] [--draft]",
|
|
442
|
+
"tools": "Read, Write, Bash, AskUserQuestion, Task",
|
|
443
|
+
"disable_model_invocation": true
|
|
202
444
|
},
|
|
203
445
|
{
|
|
204
|
-
"name": "
|
|
446
|
+
"name": "sketch",
|
|
447
|
+
"description": "Multi-variant HTML design exploration that creates .design/sketches/<slug>/ with N standalone variants (default 3), browser-openable directly via file:// without a build step. Use when answering 'what could this look like?' before committing to a direction.",
|
|
448
|
+
"argument_hint": "[topic] [--variants N] [--quick]",
|
|
449
|
+
"tools": "Read, Write, AskUserQuestion, Bash"
|
|
205
450
|
},
|
|
206
451
|
{
|
|
207
|
-
"name": "
|
|
452
|
+
"name": "sketch-wrap-up",
|
|
453
|
+
"description": "Walk through sketches, pick winner + rationale, group by design area, write project skills to ./.claude/skills/design-<area>-conventions.md.",
|
|
454
|
+
"argument_hint": "[slug]",
|
|
455
|
+
"tools": "Read, Write, Glob, AskUserQuestion"
|
|
208
456
|
},
|
|
209
457
|
{
|
|
210
|
-
"name": "
|
|
458
|
+
"name": "skill-manifest",
|
|
459
|
+
"description": "Lists all registered GDD skills and agents, with descriptions, from the intel store. Falls back to directory scan if intel store not present.",
|
|
460
|
+
"tools": "Bash, Read, Glob"
|
|
211
461
|
},
|
|
212
462
|
{
|
|
213
|
-
"name": "
|
|
463
|
+
"name": "spike",
|
|
464
|
+
"description": "Timeboxed feasibility experiment that creates .design/spikes/<slug>/ with HYPOTHESIS.md, success/failure criteria, scratch/ subdirectory, and a default 60-minute timebox. Use when answering 'can this work?' before betting design or implementation effort on a risky approach.",
|
|
465
|
+
"argument_hint": "[hypothesis] [--timebox <minutes>]",
|
|
466
|
+
"tools": "Read, Write, Bash, AskUserQuestion"
|
|
214
467
|
},
|
|
215
468
|
{
|
|
216
|
-
"name": "
|
|
469
|
+
"name": "spike-wrap-up",
|
|
470
|
+
"description": "Close a spike - capture findings, write decision to STATE.md, update SUMMARY.md.",
|
|
471
|
+
"argument_hint": "[slug]",
|
|
472
|
+
"tools": "Read, Write, Glob, AskUserQuestion"
|
|
217
473
|
},
|
|
218
474
|
{
|
|
219
|
-
"name": "
|
|
475
|
+
"name": "start",
|
|
476
|
+
"frontmatter_name": "start",
|
|
477
|
+
"description": "First-Run Proof Path - one command that scans your UI code and returns one concrete first fix. Leaf command, no STATE.md writes, no pipeline entry. Writes .design/START-REPORT.md and exits.",
|
|
478
|
+
"argument_hint": "[--budget <fast|balanced|thorough>] [--skip-interview] [--dismiss-nudge]",
|
|
479
|
+
"tools": "Read, Grep, Glob, Bash, Write, Task",
|
|
480
|
+
"disable_model_invocation": true
|
|
220
481
|
},
|
|
221
482
|
{
|
|
222
|
-
"name": "
|
|
483
|
+
"name": "stats",
|
|
484
|
+
"description": "Cycle stats - decisions made, tasks completed, commits, timeline, git metrics.",
|
|
485
|
+
"tools": "Read, Bash",
|
|
486
|
+
"disable_model_invocation": true
|
|
223
487
|
},
|
|
224
488
|
{
|
|
225
|
-
"name": "
|
|
489
|
+
"name": "style",
|
|
490
|
+
"description": "Generate a component handoff doc at `.design/DESIGN-STYLE-<ComponentName>.md` by dispatching the `design-doc-writer` agent in one of two modes: post-pipeline (uses `DESIGN-SUMMARY.md`) or pre-pipeline fallback (uses `DESIGN.md` + source). Use when the user wants a single-component spec covering tokens, states, and AI-slop detection. Invoke with a ComponentName, or with no argument to list available components.",
|
|
491
|
+
"argument_hint": "[ComponentName]",
|
|
492
|
+
"user_invocable": true
|
|
226
493
|
},
|
|
227
494
|
{
|
|
228
|
-
"name": "
|
|
495
|
+
"name": "synthesize",
|
|
496
|
+
"frontmatter_name": "synthesize",
|
|
497
|
+
"description": "Streaming synthesizer - collapses N parallel-agent markdown outputs into one compact merged summary via a single Haiku 4.5 call. Invoked inline by orchestrators (skills/map/, skills/discover/, skills/plan/) after parallel spawns return. Not user-invocable.",
|
|
498
|
+
"tools": "Read, Task",
|
|
499
|
+
"user_invocable": false,
|
|
500
|
+
"disable_model_invocation": true
|
|
229
501
|
},
|
|
230
502
|
{
|
|
231
|
-
"name": "
|
|
503
|
+
"name": "timeline",
|
|
504
|
+
"description": "Narrative retrospective across cycles: reads EXPERIENCE.md files and git log to produce a timeline view.",
|
|
505
|
+
"argument_hint": "[<cycle-N> | <from>-<to> | all]",
|
|
506
|
+
"tools": "Read, Bash, Glob",
|
|
507
|
+
"disable_model_invocation": true
|
|
232
508
|
},
|
|
233
509
|
{
|
|
234
|
-
"name": "
|
|
510
|
+
"name": "todo",
|
|
511
|
+
"description": "Design backlog - add/list/pick design tasks. Writes to .design/TODO.md.",
|
|
512
|
+
"argument_hint": "<add|list|pick> [text]",
|
|
513
|
+
"tools": "Read, Write, AskUserQuestion, mcp__gdd_state__get, mcp__gdd_state__add_decision, mcp__gdd_state__add_must_have",
|
|
514
|
+
"disable_model_invocation": true
|
|
235
515
|
},
|
|
236
516
|
{
|
|
237
|
-
"name": "
|
|
517
|
+
"name": "turn-closeout",
|
|
518
|
+
"description": "Portable mirror of the gdd-turn-closeout Stop hook (D-11). Closes the events.jsonl gap at turn-end and surfaces a stage-completion or paused-mid-task nudge. Tail-called by orchestrator skills ({{command_prefix}}next, {{command_prefix}}design, {{command_prefix}}verify) at exit on the 13 non-Claude runtimes that lack a Stop hook surface. Idempotent, non-blocking, ≤10ms typical.",
|
|
519
|
+
"argument_hint": "(none - reads .design/STATE.md and .design/telemetry/events.jsonl from cwd)",
|
|
520
|
+
"tools": "Read, Bash"
|
|
238
521
|
},
|
|
239
522
|
{
|
|
240
|
-
"name": "
|
|
523
|
+
"name": "undo",
|
|
524
|
+
"description": "Safe design change revert. Uses git log to find design commits, checks dependencies, reverts safely.",
|
|
525
|
+
"argument_hint": "[<commit SHA>]",
|
|
526
|
+
"tools": "Read, Write, Bash, AskUserQuestion",
|
|
527
|
+
"disable_model_invocation": true
|
|
241
528
|
},
|
|
242
529
|
{
|
|
243
|
-
"name": "
|
|
530
|
+
"name": "unlock-decision",
|
|
531
|
+
"description": "Reopens a LOCKED design decision - the only escape hatch from the hard lock. Requires an explicit --approver and writes an audit entry, then moves the decision locked → reviewing (via scripts/lib/collab/review-queue.cjs). Previews the audit record before writing; never unlocks silently. Use when a locked decision genuinely must change (a later constraint invalidated it) and a reviewer has signed off.",
|
|
532
|
+
"argument_hint": "<decision-id> --approver <who> [--reason <text>] [--dry-run]",
|
|
533
|
+
"user_invocable": true,
|
|
534
|
+
"tools": "Read, Write, Bash, Grep, Glob"
|
|
244
535
|
},
|
|
245
536
|
{
|
|
246
|
-
"name": "
|
|
537
|
+
"name": "unpin",
|
|
538
|
+
"description": "Removes pinned skill aliases across harness dirs, deleting only stubs that carry the gdd pin marker. Use when you no longer want a pinned shortcut and want hand-written skills left untouched.",
|
|
539
|
+
"argument_hint": "<skill-name>",
|
|
540
|
+
"tools": "Read, Bash",
|
|
541
|
+
"registered_in_phase": "46"
|
|
247
542
|
},
|
|
248
543
|
{
|
|
249
|
-
"name": "
|
|
544
|
+
"name": "update",
|
|
545
|
+
"description": "Update get-design-done to the latest release. Preserves .design/config.json and ./.claude/skills/.",
|
|
546
|
+
"argument_hint": "[--dry-run] [--version <tag>] [--show-privacy-diff]",
|
|
547
|
+
"tools": "Read, Write, Bash",
|
|
548
|
+
"disable_model_invocation": true
|
|
250
549
|
},
|
|
251
550
|
{
|
|
252
|
-
"name": "
|
|
551
|
+
"name": "using-gdd",
|
|
552
|
+
"frontmatter_name": "using-gdd",
|
|
553
|
+
"description": "Use when starting any GDD session - establishes how to find and apply GDD skills.",
|
|
554
|
+
"disable_model_invocation": true
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"name": "verify",
|
|
558
|
+
"frontmatter_name": "verify",
|
|
559
|
+
"description": "Stage 5 of 5 orchestrator that spawns design-auditor, design-verifier, and design-integration-checker in sequence, interprets pass/gap result, and drives the gap-response loop (inline fix, save-and-exit, or accept-as-is). Use when implementation is complete and ready for final pre-ship verification.",
|
|
560
|
+
"argument_hint": "[--auto] [--post-handoff]",
|
|
561
|
+
"user_invocable": true,
|
|
562
|
+
"tools": "mcp__gdd_state__get, mcp__gdd_state__transition_stage, mcp__gdd_state__add_must_have, mcp__gdd_state__add_blocker, mcp__gdd_state__resolve_blocker, mcp__gdd_state__update_progress, mcp__gdd_state__set_status, mcp__gdd_state__checkpoint, mcp__gdd_state__probe_connections"
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
"name": "warm-cache",
|
|
566
|
+
"frontmatter_name": "warm-cache",
|
|
567
|
+
"description": "Pre-warms Anthropic's 5-min prompt cache across all agents that import reference/shared-preamble.md. Issues one no-op Haiku ping per agent so the identical preamble-first prefix lives in Anthropic's cache before a design sprint starts. Layer A of the D-08 two-layer cache. Run this once at the start of a {{command_prefix}}* sprint for ~90% input-cost savings on the first repeated spawn.",
|
|
568
|
+
"user_invocable": true,
|
|
569
|
+
"argument_hint": "[--agents <comma-list>]",
|
|
570
|
+
"tools": "Read, Bash, Grep",
|
|
571
|
+
"disable_model_invocation": true
|
|
572
|
+
},
|
|
573
|
+
{
|
|
574
|
+
"name": "watch-authorities",
|
|
575
|
+
"description": "Fetches the design-authority feed whitelist, diffs against .design/authority-snapshot.json, and writes .design/authority-report.md (consumed by {{command_prefix}}reflect). Authority monitoring only - no trend-watching.",
|
|
576
|
+
"argument_hint": "[--refresh] [--since <date>] [--feed <name>] [--schedule <weekly|daily|monthly>]",
|
|
577
|
+
"tools": "Read, Write, Task, Bash"
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
"name": "zoom-out",
|
|
581
|
+
"frontmatter_name": "zoom-out",
|
|
582
|
+
"description": "Asks the agent to go up a layer of abstraction and map the relevant modules and callers using the project's CONTEXT.md vocabulary. Use when the user is working in an unfamiliar area of code and needs orientation before deep work.",
|
|
583
|
+
"disable_model_invocation": true,
|
|
584
|
+
"argument_hint": "[scope]"
|
|
253
585
|
}
|
|
254
586
|
]
|
|
255
587
|
}
|