claude-cook 1.10.1
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/LICENSE +21 -0
- package/README.md +607 -0
- package/agents/gsd-codebase-mapper.md +738 -0
- package/agents/gsd-debugger.md +1203 -0
- package/agents/gsd-executor.md +784 -0
- package/agents/gsd-integration-checker.md +423 -0
- package/agents/gsd-phase-researcher.md +641 -0
- package/agents/gsd-plan-checker.md +745 -0
- package/agents/gsd-planner.md +1386 -0
- package/agents/gsd-pm.md +331 -0
- package/agents/gsd-project-researcher.md +865 -0
- package/agents/gsd-research-synthesizer.md +256 -0
- package/agents/gsd-roadmapper.md +605 -0
- package/agents/gsd-verifier.md +778 -0
- package/bin/install.js +1477 -0
- package/commands/gsd/add-phase.md +207 -0
- package/commands/gsd/add-todo.md +193 -0
- package/commands/gsd/audit-milestone.md +277 -0
- package/commands/gsd/check-todos.md +228 -0
- package/commands/gsd/complete-milestone.md +136 -0
- package/commands/gsd/debug.md +169 -0
- package/commands/gsd/discuss-phase.md +86 -0
- package/commands/gsd/execute-phase.md +339 -0
- package/commands/gsd/help.md +545 -0
- package/commands/gsd/insert-phase.md +227 -0
- package/commands/gsd/join-discord.md +18 -0
- package/commands/gsd/list-phase-assumptions.md +50 -0
- package/commands/gsd/map-codebase.md +71 -0
- package/commands/gsd/new-milestone.md +721 -0
- package/commands/gsd/new-project.md +1008 -0
- package/commands/gsd/pause-work.md +134 -0
- package/commands/gsd/plan-milestone-gaps.md +295 -0
- package/commands/gsd/plan-phase.md +525 -0
- package/commands/gsd/pm-check.md +115 -0
- package/commands/gsd/pm-replan.md +102 -0
- package/commands/gsd/pm-start.md +218 -0
- package/commands/gsd/pm-status.md +116 -0
- package/commands/gsd/pm-stop.md +72 -0
- package/commands/gsd/progress.md +415 -0
- package/commands/gsd/quick.md +309 -0
- package/commands/gsd/remove-phase.md +349 -0
- package/commands/gsd/research-phase.md +200 -0
- package/commands/gsd/resume-work.md +40 -0
- package/commands/gsd/set-profile.md +106 -0
- package/commands/gsd/settings.md +151 -0
- package/commands/gsd/update.md +172 -0
- package/commands/gsd/verify-work.md +219 -0
- package/get-shit-done/references/checkpoints.md +1078 -0
- package/get-shit-done/references/continuation-format.md +249 -0
- package/get-shit-done/references/git-integration.md +254 -0
- package/get-shit-done/references/model-profiles.md +73 -0
- package/get-shit-done/references/planning-config.md +189 -0
- package/get-shit-done/references/questioning.md +141 -0
- package/get-shit-done/references/tdd.md +263 -0
- package/get-shit-done/references/ui-brand.md +172 -0
- package/get-shit-done/references/verification-patterns.md +612 -0
- package/get-shit-done/references/vibe-kanban.md +142 -0
- package/get-shit-done/templates/DEBUG.md +159 -0
- package/get-shit-done/templates/UAT.md +247 -0
- package/get-shit-done/templates/codebase/architecture.md +255 -0
- package/get-shit-done/templates/codebase/concerns.md +310 -0
- package/get-shit-done/templates/codebase/conventions.md +307 -0
- package/get-shit-done/templates/codebase/integrations.md +280 -0
- package/get-shit-done/templates/codebase/stack.md +186 -0
- package/get-shit-done/templates/codebase/structure.md +285 -0
- package/get-shit-done/templates/codebase/testing.md +480 -0
- package/get-shit-done/templates/config.json +35 -0
- package/get-shit-done/templates/context.md +283 -0
- package/get-shit-done/templates/continue-here.md +78 -0
- package/get-shit-done/templates/debug-subagent-prompt.md +91 -0
- package/get-shit-done/templates/discovery.md +146 -0
- package/get-shit-done/templates/milestone-archive.md +123 -0
- package/get-shit-done/templates/milestone.md +115 -0
- package/get-shit-done/templates/phase-prompt.md +567 -0
- package/get-shit-done/templates/planner-subagent-prompt.md +117 -0
- package/get-shit-done/templates/pm-config.md +55 -0
- package/get-shit-done/templates/pm-log.md +27 -0
- package/get-shit-done/templates/project.md +184 -0
- package/get-shit-done/templates/requirements.md +231 -0
- package/get-shit-done/templates/research-project/ARCHITECTURE.md +204 -0
- package/get-shit-done/templates/research-project/FEATURES.md +147 -0
- package/get-shit-done/templates/research-project/PITFALLS.md +200 -0
- package/get-shit-done/templates/research-project/STACK.md +120 -0
- package/get-shit-done/templates/research-project/SUMMARY.md +170 -0
- package/get-shit-done/templates/research.md +529 -0
- package/get-shit-done/templates/roadmap.md +202 -0
- package/get-shit-done/templates/state.md +205 -0
- package/get-shit-done/templates/summary.md +246 -0
- package/get-shit-done/templates/ticket-map.md +28 -0
- package/get-shit-done/templates/user-setup.md +311 -0
- package/get-shit-done/templates/verification-report.md +322 -0
- package/get-shit-done/workflows/complete-milestone.md +903 -0
- package/get-shit-done/workflows/diagnose-issues.md +231 -0
- package/get-shit-done/workflows/discovery-phase.md +289 -0
- package/get-shit-done/workflows/discuss-phase.md +433 -0
- package/get-shit-done/workflows/execute-phase.md +671 -0
- package/get-shit-done/workflows/execute-plan.md +1844 -0
- package/get-shit-done/workflows/list-phase-assumptions.md +178 -0
- package/get-shit-done/workflows/map-codebase.md +322 -0
- package/get-shit-done/workflows/pm-check.md +210 -0
- package/get-shit-done/workflows/pm-dispatch.md +104 -0
- package/get-shit-done/workflows/pm-replan.md +203 -0
- package/get-shit-done/workflows/pm-sync.md +130 -0
- package/get-shit-done/workflows/resume-project.md +307 -0
- package/get-shit-done/workflows/transition.md +556 -0
- package/get-shit-done/workflows/verify-phase.md +628 -0
- package/get-shit-done/workflows/verify-work.md +596 -0
- package/hooks/dist/gsd-check-update.js +61 -0
- package/hooks/dist/gsd-statusline.js +87 -0
- package/package.json +47 -0
- package/scripts/build-hooks.js +42 -0
- package/scripts/pm-loop.sh +155 -0
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
<ui_patterns>
|
|
2
|
+
|
|
3
|
+
Visual patterns for user-facing GSD output. Orchestrators @-reference this file.
|
|
4
|
+
|
|
5
|
+
## Stage Banners
|
|
6
|
+
|
|
7
|
+
Use for major workflow transitions.
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
11
|
+
GSD ► {STAGE NAME}
|
|
12
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
**Stage names (uppercase):**
|
|
16
|
+
- `QUESTIONING`
|
|
17
|
+
- `RESEARCHING`
|
|
18
|
+
- `DEFINING REQUIREMENTS`
|
|
19
|
+
- `CREATING ROADMAP`
|
|
20
|
+
- `PLANNING PHASE {N}`
|
|
21
|
+
- `EXECUTING WAVE {N}`
|
|
22
|
+
- `VERIFYING`
|
|
23
|
+
- `PHASE {N} COMPLETE ✓`
|
|
24
|
+
- `MILESTONE COMPLETE 🎉`
|
|
25
|
+
|
|
26
|
+
**PM mode stages (use `PM ►` prefix instead of `GSD ►`):**
|
|
27
|
+
- `PM ► CONNECTED TO VIBE KANBAN`
|
|
28
|
+
- `PM ► TICKETS SYNCED`
|
|
29
|
+
- `PM ► DISPATCHING WAVE {N}`
|
|
30
|
+
- `PM ► AUTONOMOUS MODE ACTIVE`
|
|
31
|
+
- `PM ► MANUAL MODE — WORKERS RUNNING`
|
|
32
|
+
- `PM ► CHECK CYCLE`
|
|
33
|
+
- `PM ► REPLANNED`
|
|
34
|
+
- `PM ► PHASE COMPLETE`
|
|
35
|
+
- `PM ► PROJECT STATUS`
|
|
36
|
+
- `PM ► STOPPING`
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## Checkpoint Boxes
|
|
41
|
+
|
|
42
|
+
User action required. 62-character width.
|
|
43
|
+
|
|
44
|
+
```
|
|
45
|
+
╔══════════════════════════════════════════════════════════════╗
|
|
46
|
+
║ CHECKPOINT: {Type} ║
|
|
47
|
+
╚══════════════════════════════════════════════════════════════╝
|
|
48
|
+
|
|
49
|
+
{Content}
|
|
50
|
+
|
|
51
|
+
──────────────────────────────────────────────────────────────
|
|
52
|
+
→ {ACTION PROMPT}
|
|
53
|
+
──────────────────────────────────────────────────────────────
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
**Types:**
|
|
57
|
+
- `CHECKPOINT: Verification Required` → `→ Type "approved" or describe issues`
|
|
58
|
+
- `CHECKPOINT: Decision Required` → `→ Select: option-a / option-b`
|
|
59
|
+
- `CHECKPOINT: Action Required` → `→ Type "done" when complete`
|
|
60
|
+
|
|
61
|
+
---
|
|
62
|
+
|
|
63
|
+
## Status Symbols
|
|
64
|
+
|
|
65
|
+
```
|
|
66
|
+
✓ Complete / Passed / Verified
|
|
67
|
+
✗ Failed / Missing / Blocked
|
|
68
|
+
◆ In Progress
|
|
69
|
+
○ Pending
|
|
70
|
+
⚡ Auto-approved
|
|
71
|
+
⚠ Warning
|
|
72
|
+
🎉 Milestone complete (only in banner)
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
---
|
|
76
|
+
|
|
77
|
+
## Progress Display
|
|
78
|
+
|
|
79
|
+
**Phase/milestone level:**
|
|
80
|
+
```
|
|
81
|
+
Progress: ████████░░ 80%
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
**Task level:**
|
|
85
|
+
```
|
|
86
|
+
Tasks: 2/4 complete
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
**Plan level:**
|
|
90
|
+
```
|
|
91
|
+
Plans: 3/5 complete
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
---
|
|
95
|
+
|
|
96
|
+
## Spawning Indicators
|
|
97
|
+
|
|
98
|
+
```
|
|
99
|
+
◆ Spawning researcher...
|
|
100
|
+
|
|
101
|
+
◆ Spawning 4 researchers in parallel...
|
|
102
|
+
→ Stack research
|
|
103
|
+
→ Features research
|
|
104
|
+
→ Architecture research
|
|
105
|
+
→ Pitfalls research
|
|
106
|
+
|
|
107
|
+
✓ Researcher complete: STACK.md written
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
---
|
|
111
|
+
|
|
112
|
+
## Next Up Block
|
|
113
|
+
|
|
114
|
+
Always at end of major completions.
|
|
115
|
+
|
|
116
|
+
```
|
|
117
|
+
───────────────────────────────────────────────────────────────
|
|
118
|
+
|
|
119
|
+
## ▶ Next Up
|
|
120
|
+
|
|
121
|
+
**{Identifier}: {Name}** — {one-line description}
|
|
122
|
+
|
|
123
|
+
`{copy-paste command}`
|
|
124
|
+
|
|
125
|
+
<sub>`/clear` first → fresh context window</sub>
|
|
126
|
+
|
|
127
|
+
───────────────────────────────────────────────────────────────
|
|
128
|
+
|
|
129
|
+
**Also available:**
|
|
130
|
+
- `/gsd:alternative-1` — description
|
|
131
|
+
- `/gsd:alternative-2` — description
|
|
132
|
+
|
|
133
|
+
───────────────────────────────────────────────────────────────
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
---
|
|
137
|
+
|
|
138
|
+
## Error Box
|
|
139
|
+
|
|
140
|
+
```
|
|
141
|
+
╔══════════════════════════════════════════════════════════════╗
|
|
142
|
+
║ ERROR ║
|
|
143
|
+
╚══════════════════════════════════════════════════════════════╝
|
|
144
|
+
|
|
145
|
+
{Error description}
|
|
146
|
+
|
|
147
|
+
**To fix:** {Resolution steps}
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
---
|
|
151
|
+
|
|
152
|
+
## Tables
|
|
153
|
+
|
|
154
|
+
```
|
|
155
|
+
| Phase | Status | Plans | Progress |
|
|
156
|
+
|-------|--------|-------|----------|
|
|
157
|
+
| 1 | ✓ | 3/3 | 100% |
|
|
158
|
+
| 2 | ◆ | 1/4 | 25% |
|
|
159
|
+
| 3 | ○ | 0/2 | 0% |
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
---
|
|
163
|
+
|
|
164
|
+
## Anti-Patterns
|
|
165
|
+
|
|
166
|
+
- Varying box/banner widths
|
|
167
|
+
- Mixing banner styles (`===`, `---`, `***`)
|
|
168
|
+
- Skipping `GSD ►` prefix in banners
|
|
169
|
+
- Random emoji (`🚀`, `✨`, `💫`)
|
|
170
|
+
- Missing Next Up block after completions
|
|
171
|
+
|
|
172
|
+
</ui_patterns>
|