Includes: CLAUDE.md, settings.json, agents, commands, rules, skills, hooks, contexts, evals, get-shit-done, plugin configs (installed list and marketplace sources). Excludes credentials, runtime caches, telemetry, session data, and plugin binary cache.
257 lines
8.9 KiB
Markdown
257 lines
8.9 KiB
Markdown
<purpose>
|
|
Interactive configuration of GSD workflow agents (research, plan_check, verifier) and model profile selection via multi-question prompt. Updates .planning/config.json with user preferences. Optionally saves settings as global defaults (~/.gsd/defaults.json) for future projects.
|
|
</purpose>
|
|
|
|
<required_reading>
|
|
Read all files referenced by the invoking prompt's execution_context before starting.
|
|
</required_reading>
|
|
|
|
<process>
|
|
|
|
<step name="ensure_and_load_config">
|
|
Ensure config exists and load current state:
|
|
|
|
```bash
|
|
node "C:/Users/yaoji/.claude/get-shit-done/bin/gsd-tools.cjs" config-ensure-section
|
|
INIT=$(node "C:/Users/yaoji/.claude/get-shit-done/bin/gsd-tools.cjs" state load)
|
|
if [[ "$INIT" == @file:* ]]; then INIT=$(cat "${INIT#@file:}"); fi
|
|
```
|
|
|
|
Creates `.planning/config.json` with defaults if missing and loads current config values.
|
|
</step>
|
|
|
|
<step name="read_current">
|
|
```bash
|
|
cat .planning/config.json
|
|
```
|
|
|
|
Parse current values (default to `true` if not present):
|
|
- `workflow.research` — spawn researcher during plan-phase
|
|
- `workflow.plan_check` — spawn plan checker during plan-phase
|
|
- `workflow.verifier` — spawn verifier during execute-phase
|
|
- `workflow.nyquist_validation` — validation architecture research during plan-phase (default: true if absent)
|
|
- `workflow.ui_phase` — generate UI-SPEC.md design contracts for frontend phases (default: true if absent)
|
|
- `workflow.ui_safety_gate` — prompt to run /gsd:ui-phase before planning frontend phases (default: true if absent)
|
|
- `model_profile` — which model each agent uses (default: `balanced`)
|
|
- `git.branching_strategy` — branching approach (default: `"none"`)
|
|
</step>
|
|
|
|
<step name="present_settings">
|
|
Use AskUserQuestion with current values pre-selected:
|
|
|
|
```
|
|
AskUserQuestion([
|
|
{
|
|
question: "Which model profile for agents?",
|
|
header: "Model",
|
|
multiSelect: false,
|
|
options: [
|
|
{ label: "Quality", description: "Opus everywhere except verification (highest cost)" },
|
|
{ label: "Balanced (Recommended)", description: "Opus for planning, Sonnet for research/execution/verification" },
|
|
{ label: "Budget", description: "Sonnet for writing, Haiku for research/verification (lowest cost)" },
|
|
{ label: "Inherit", description: "Use current session model for all agents (best for OpenRouter, local models, or runtime model switching)" }
|
|
]
|
|
},
|
|
{
|
|
question: "Spawn Plan Researcher? (researches domain before planning)",
|
|
header: "Research",
|
|
multiSelect: false,
|
|
options: [
|
|
{ label: "Yes", description: "Research phase goals before planning" },
|
|
{ label: "No", description: "Skip research, plan directly" }
|
|
]
|
|
},
|
|
{
|
|
question: "Spawn Plan Checker? (verifies plans before execution)",
|
|
header: "Plan Check",
|
|
multiSelect: false,
|
|
options: [
|
|
{ label: "Yes", description: "Verify plans meet phase goals" },
|
|
{ label: "No", description: "Skip plan verification" }
|
|
]
|
|
},
|
|
{
|
|
question: "Spawn Execution Verifier? (verifies phase completion)",
|
|
header: "Verifier",
|
|
multiSelect: false,
|
|
options: [
|
|
{ label: "Yes", description: "Verify must-haves after execution" },
|
|
{ label: "No", description: "Skip post-execution verification" }
|
|
]
|
|
},
|
|
{
|
|
question: "Auto-advance pipeline? (discuss → plan → execute automatically)",
|
|
header: "Auto",
|
|
multiSelect: false,
|
|
options: [
|
|
{ label: "No (Recommended)", description: "Manual /clear + paste between stages" },
|
|
{ label: "Yes", description: "Chain stages via Task() subagents (same isolation)" }
|
|
]
|
|
},
|
|
{
|
|
question: "Enable Nyquist Validation? (researches test coverage during planning)",
|
|
header: "Nyquist",
|
|
multiSelect: false,
|
|
options: [
|
|
{ label: "Yes (Recommended)", description: "Research automated test coverage during plan-phase. Adds validation requirements to plans. Blocks approval if tasks lack automated verify." },
|
|
{ label: "No", description: "Skip validation research. Good for rapid prototyping or no-test phases." }
|
|
]
|
|
},
|
|
// Note: Nyquist validation depends on research output. If research is disabled,
|
|
// plan-phase automatically skips Nyquist steps (no RESEARCH.md to extract from).
|
|
{
|
|
question: "Enable UI Phase? (generates UI-SPEC.md design contracts for frontend phases)",
|
|
header: "UI Phase",
|
|
multiSelect: false,
|
|
options: [
|
|
{ label: "Yes (Recommended)", description: "Generate UI design contracts before planning frontend phases. Locks spacing, typography, color, and copywriting." },
|
|
{ label: "No", description: "Skip UI-SPEC generation. Good for backend-only projects or API phases." }
|
|
]
|
|
},
|
|
{
|
|
question: "Enable UI Safety Gate? (prompts to run /gsd:ui-phase before planning frontend phases)",
|
|
header: "UI Gate",
|
|
multiSelect: false,
|
|
options: [
|
|
{ label: "Yes (Recommended)", description: "plan-phase asks to run /gsd:ui-phase first when frontend indicators detected." },
|
|
{ label: "No", description: "No prompt — plan-phase proceeds without UI-SPEC check." }
|
|
]
|
|
},
|
|
{
|
|
question: "Git branching strategy?",
|
|
header: "Branching",
|
|
multiSelect: false,
|
|
options: [
|
|
{ label: "None (Recommended)", description: "Commit directly to current branch" },
|
|
{ label: "Per Phase", description: "Create branch for each phase (gsd/phase-{N}-{name})" },
|
|
{ label: "Per Milestone", description: "Create branch for entire milestone (gsd/{version}-{name})" }
|
|
]
|
|
},
|
|
{
|
|
question: "Enable context window warnings? (injects advisory messages when context is getting full)",
|
|
header: "Ctx Warnings",
|
|
multiSelect: false,
|
|
options: [
|
|
{ label: "Yes (Recommended)", description: "Warn when context usage exceeds 65%. Helps avoid losing work." },
|
|
{ label: "No", description: "Disable warnings. Allows Claude to reach auto-compact naturally. Good for long unattended runs." }
|
|
]
|
|
}
|
|
])
|
|
```
|
|
</step>
|
|
|
|
<step name="update_config">
|
|
Merge new settings into existing config.json:
|
|
|
|
```json
|
|
{
|
|
...existing_config,
|
|
"model_profile": "quality" | "balanced" | "budget" | "inherit",
|
|
"workflow": {
|
|
"research": true/false,
|
|
"plan_check": true/false,
|
|
"verifier": true/false,
|
|
"auto_advance": true/false,
|
|
"nyquist_validation": true/false,
|
|
"ui_phase": true/false,
|
|
"ui_safety_gate": true/false
|
|
},
|
|
"git": {
|
|
"branching_strategy": "none" | "phase" | "milestone"
|
|
},
|
|
"hooks": {
|
|
"context_warnings": true/false
|
|
}
|
|
}
|
|
```
|
|
|
|
Write updated config to `.planning/config.json`.
|
|
</step>
|
|
|
|
<step name="save_as_defaults">
|
|
Ask whether to save these settings as global defaults for future projects:
|
|
|
|
```
|
|
AskUserQuestion([
|
|
{
|
|
question: "Save these as default settings for all new projects?",
|
|
header: "Defaults",
|
|
multiSelect: false,
|
|
options: [
|
|
{ label: "Yes", description: "New projects start with these settings (saved to ~/.gsd/defaults.json)" },
|
|
{ label: "No", description: "Only apply to this project" }
|
|
]
|
|
}
|
|
])
|
|
```
|
|
|
|
If "Yes": write the same config object (minus project-specific fields like `brave_search`) to `~/.gsd/defaults.json`:
|
|
|
|
```bash
|
|
mkdir -p ~/.gsd
|
|
```
|
|
|
|
Write `~/.gsd/defaults.json` with:
|
|
```json
|
|
{
|
|
"mode": <current>,
|
|
"granularity": <current>,
|
|
"model_profile": <current>,
|
|
"commit_docs": <current>,
|
|
"parallelization": <current>,
|
|
"branching_strategy": <current>,
|
|
"workflow": {
|
|
"research": <current>,
|
|
"plan_check": <current>,
|
|
"verifier": <current>,
|
|
"auto_advance": <current>,
|
|
"nyquist_validation": <current>,
|
|
"ui_phase": <current>,
|
|
"ui_safety_gate": <current>
|
|
}
|
|
}
|
|
```
|
|
</step>
|
|
|
|
<step name="confirm">
|
|
Display:
|
|
|
|
```
|
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
GSD ► SETTINGS UPDATED
|
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
|
|
| Setting | Value |
|
|
|----------------------|-------|
|
|
| Model Profile | {quality/balanced/budget/inherit} |
|
|
| Plan Researcher | {On/Off} |
|
|
| Plan Checker | {On/Off} |
|
|
| Execution Verifier | {On/Off} |
|
|
| Auto-Advance | {On/Off} |
|
|
| Nyquist Validation | {On/Off} |
|
|
| UI Phase | {On/Off} |
|
|
| UI Safety Gate | {On/Off} |
|
|
| Git Branching | {None/Per Phase/Per Milestone} |
|
|
| Context Warnings | {On/Off} |
|
|
| Saved as Defaults | {Yes/No} |
|
|
|
|
These settings apply to future /gsd:plan-phase and /gsd:execute-phase runs.
|
|
|
|
Quick commands:
|
|
- /gsd:set-profile <profile> — switch model profile
|
|
- /gsd:plan-phase --research — force research
|
|
- /gsd:plan-phase --skip-research — skip research
|
|
- /gsd:plan-phase --skip-verify — skip plan check
|
|
```
|
|
</step>
|
|
|
|
</process>
|
|
|
|
<success_criteria>
|
|
- [ ] Current config read
|
|
- [ ] User presented with 9 settings (profile + 7 workflow toggles + git branching)
|
|
- [ ] Config updated with model_profile, workflow, and git sections
|
|
- [ ] User offered to save as global defaults (~/.gsd/defaults.json)
|
|
- [ ] Changes confirmed to user
|
|
</success_criteria>
|