用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/hegemonart/get-design-done --skill gdd-settings命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Master design pipeline for Claude Code. 5-stage workflow: Brief → Explore → Plan → Design → Verify. Run 'brief' first in any new project to capture the design problem, then 'explore' to inventory the codebase and interview for context. Invoke without arguments for status and auto-routing.
Run the pipeline with optional agents skipped for speed. Skips: phase-researcher, design-assumptions-analyzer, design-integration-checker. Keeps: planner, executor, verifier, auditor. Activates for requests involving a lightweight design pass, a fast iteration, or a quick low-ceremony change.
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}. A SKILL.md prompt the model executes to emit a routing-decision JSON from rule tables (no separate agent spawn). Optional/advisory - invoked only by the skills that opt into routing; the budget-enforcer hook tolerates its absence. Read by hooks/budget-enforcer.ts.
基于 SOC 职业分类
正在显示 SKILL.md
| name | gdd-settings |
| description | Manage .design/config.json settings. Subcommands: profile, parallelism, cleanup, show. |
| argument-hint | <profile <name>|parallelism <key> <value>|cleanup|show> |
| tools | Read, Write, AskUserQuestion, Bash, mcp__gdd_state__get, mcp__gdd_state__frontmatter_update |
| disable-model-invocation | true |
Manages .design/config.json - the per-project config for model profile and parallelism. See reference/config-schema.md for the full schema. This skill also supports patching non-stage STATE.md frontmatter keys (cycle, wave, custom keys) via mcp__gdd_state__frontmatter_update. See STATE.md frontmatter below.
showPrint the current .design/config.json contents, nicely formatted. If the file is missing, print the defaults with a note that no config exists yet. Also call mcp__gdd_state__get to print the current STATE.md frontmatter keys (cycle, wave, model_profile) alongside config.json for a unified view.
profile <name>Set model_profile to one of quality, balanced, budget. Validate the value; reject anything else with the list of allowed values. Read current config, merge the change, write back. Confirm with the new value.
parallelism <key> <value>Set one field under parallelism. Supported keys and value types:
| Key | Type |
|---|---|
enabled | bool (true/false) |
max_parallel_agents | int |
min_tasks_to_parallelize | int |
min_estimated_savings_seconds | int |
require_disjoint_touches | bool |
worktree_isolation | bool |
Validate type; reject otherwise. Read current config, merge, write back. Confirm.
cleanupUse AskUserQuestion to pick one or more cleanup actions, then confirm each before executing:
.design/*.md artifacts (excludes config.json, STATE.md, backlog/)..design/STATE.md to the template at reference/STATE-TEMPLATE.md..design/backlog/ directory contents.Always:
.design/config.json (use defaults below if missing).For any STATE.md frontmatter patch (cycle, wave, or project-custom keys), call mcp__gdd_state__frontmatter_update({ patch: { <key>: <value> } }). Do not Edit or Write STATE.md directly.
Stage-patch guard: this skill cannot patch stage. If the user attempts to set stage here, reject with: "Use /gdd:brief, /gdd:explore, etc. for stage transitions. The settings skill is for non-stage frontmatter only." The MCP tool itself rejects stage patches with a VALIDATION error (surfaced by mcp__gdd_state__frontmatter_update), which this prose surfaces up-front so the user gets a clear message before the tool round-trip.
This surface is STATE.md-only. .design/config.json mutations continue to use Read + Write directly (out of scope for the 11-tool MCP catalog).
If .design/config.json does not exist, create it with:
{
"model_profile": "balanced",
"parallelism": {
"enabled": true,
"max_parallel_agents": 5,
"min_tasks_to_parallelize": 2,
"min_estimated_savings_seconds": 30,
"require_disjoint_touches": true,
"worktree_isolation": false,
"per_stage_override": {}
}
}
End every invocation with:
## SETTINGS COMPLETE