@allthingsclaude/blueprints 0.3.0-beta.21 → 0.3.0-beta.23

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.
@@ -93,6 +93,20 @@ Go through each change systematically:
93
93
  - Type coercion bugs
94
94
 
95
95
  #### 🟡 Important Issues (Should Fix)
96
+ - **Convention consistency**
97
+ - Do the changes introduce a different pattern for a concern the codebase already solves? (e.g., different styling method, different error feedback mechanism, different data fetching approach)
98
+ - Scan the codebase to identify authoritative patterns: styling method, error/notification system, state management, data fetching, component structure
99
+ - Flag any new code that uses a parallel approach for the same concern (e.g., inline styles in a CSS modules project, `alert()` in a project with a toast library, raw fetch in a project with custom hooks)
100
+ - Check that all new code is internally consistent (same approach used across all changed files)
101
+
102
+ - **Accessibility** (for changes involving UI — components, pages, modals, forms, dialogs)
103
+ - Labels associated with inputs
104
+ - ARIA roles on overlays, modals, and interactive widgets
105
+ - Keyboard handling (Escape to close, focus trap in modals, Tab order)
106
+ - Visible focus indicators
107
+ - Color contrast (if new colors introduced)
108
+ - Screen reader considerations (meaningful alt text, aria-labels)
109
+
96
110
  - **DRY violations**
97
111
  - Duplicated code that should be extracted
98
112
  - Repeated logic across files
@@ -112,7 +126,7 @@ Go through each change systematically:
112
126
  - Missing error logging
113
127
 
114
128
  - **Performance issues**
115
- - N+1 queries
129
+ - N+1 queries — per-item database calls inside loops or list transformations
116
130
  - Missing database indexes
117
131
  - Inefficient algorithms
118
132
  - Memory leaks
@@ -136,7 +150,6 @@ Go through each change systematically:
136
150
  - Missing const/readonly
137
151
  - Use of deprecated APIs
138
152
  - Suboptimal patterns
139
- - Missing accessibility (a11y)
140
153
 
141
154
  - **Testing**
142
155
  - Missing test coverage for new code
@@ -227,9 +227,6 @@ Files modified:
227
227
  - path/to/file.ts - what changed
228
228
  - path/to/other.ts - what changed
229
229
 
230
- 🤖 Generated with [Claude Code](https://claude.com/claude-code)
231
-
232
- Co-Authored-By: Claude <noreply@anthropic.com>
233
230
  ```
234
231
 
235
232
  **Commit Message Guidelines**:
@@ -263,9 +260,6 @@ Files modified:
263
260
  - src/lib/jwt.ts - Token generation and validation
264
261
  - src/types/auth.ts - Auth type definitions
265
262
 
266
- 🤖 Generated with [Claude Code](https://claude.com/claude-code)
267
-
268
- Co-Authored-By: Claude <noreply@anthropic.com>
269
263
  ```
270
264
 
271
265
  ```
@@ -285,9 +279,6 @@ Files modified:
285
279
  - src/components/FeaturedProduct.tsx - Now uses ProductCard
286
280
  - src/app/[domain]/products/ProductGrid.tsx - Simplified to use ProductCard
287
281
 
288
- 🤖 Generated with [Claude Code](https://claude.com/claude-code)
289
-
290
- Co-Authored-By: Claude <noreply@anthropic.com>
291
282
  ```
292
283
 
293
284
  ### 8. Create Git Commit
@@ -317,9 +308,6 @@ Detailed explanation:
317
308
  Files modified:
318
309
  - path/file.ts - what changed
319
310
 
320
- 🤖 Generated with [Claude Code](https://claude.com/claude-code)
321
-
322
- Co-Authored-By: Claude <noreply@anthropic.com>
323
311
  EOF
324
312
  )"
325
313
  ```
@@ -37,6 +37,31 @@ Extract the plan name from the arguments (first word after /kickoff):
37
37
  - If file doesn't exist, list available plans and ask user to specify
38
38
  - Parse the plan structure (Objective, Phases, Tasks, Files)
39
39
 
40
+ ### 1.5 Discover Codebase Conventions
41
+
42
+ Before writing any code, scan the existing codebase to understand established patterns. This prevents introducing inconsistent approaches (e.g., inline styles in a SCSS project, `alert()` in a project with a toast library).
43
+
44
+ **What to look for:**
45
+ - **Error handling / user feedback**: Search for toast libraries, error boundaries, notification systems, `alert(` usage
46
+ - **Styling method**: Check for CSS modules (`.module.css`), SCSS (`.scss`), Tailwind, styled-components, inline styles — which is dominant?
47
+ - **State management**: Context, stores, reducers, signals — what pattern does the project use?
48
+ - **Component structure**: File naming, export patterns, colocation conventions
49
+ - **Data fetching**: Custom hooks, direct API calls, query libraries — what's the established pattern?
50
+ - **Test infrastructure**: Search for `describe(`, `it(`, `test(`, check for test config files — what framework exists and where do tests live?
51
+
52
+ **Method**: Use Grep/Glob to sample patterns:
53
+ ```bash
54
+ # Examples — adapt to the project
55
+ grep -r "toast\|alert(" src/ --include="*.ts" --include="*.tsx" -l
56
+ ls src/**/*.module.css src/**/*.scss 2>/dev/null
57
+ grep -r "describe(\|it(\|test(" --include="*.test.*" -l
58
+ ```
59
+
60
+ **Store findings** as a mental checklist to reference throughout implementation:
61
+ - Note which patterns are **authoritative** (used consistently across the codebase) vs. **one-off** (used in a single file)
62
+ - Authoritative patterns are mandatory to follow; one-offs can be ignored
63
+ - If the project has no established pattern for a concern, note that too — you have freedom to choose
64
+
40
65
  ### 2. Initial Assessment
41
66
 
42
67
  Before starting implementation:
@@ -88,6 +113,7 @@ For each task in the current phase:
88
113
  #### A. Read Context
89
114
  - Read all files mentioned in the task
90
115
  - Read related files (imports, dependencies)
116
+ - Check `{{TASKS_DIR}}/references/` for design references (images, mockups, wireframes) — if they exist and are relevant to the task, read them to understand the intended design
91
117
  - Understand the current state
92
118
 
93
119
  #### B. Implement
@@ -101,6 +127,9 @@ For each task in the current phase:
101
127
  - Run linter (if applicable, using detected package manager)
102
128
  - Check git diff to review changes
103
129
  - Verify the change works as expected
130
+ - **Convention adherence**: Does this code follow the patterns discovered in Step 1.5? If the project uses a specific styling method, did you use it? If there's an established feedback/notification system, did you use it instead of a raw alternative? If there's a custom hook or data fetching pattern, did you follow it?
131
+ - **Accessibility basics** (for UI tasks — modals, forms, dialogs, interactive elements): Labels associated with inputs, ARIA roles on overlays/modals, keyboard handling (Escape to close, focus trap in modals), visible focus indicators
132
+ - **Data access patterns** (for tasks involving data fetching or transformation): No per-item queries inside loops or list iterations, batch operations where possible, efficient relationship loading
104
133
 
105
134
  #### D. Update Progress
106
135
  - Mark current task as `completed` in TodoWrite
@@ -132,7 +161,13 @@ At the end of each phase:
132
161
  1. **Run validation checks** from the plan's "Validation" section
133
162
  2. **Review all changes** in the phase: `git diff`
134
163
  3. **Run full checks**: typecheck and lint using the detected package manager
135
- 4. **Ask user for approval** before moving to next phase:
164
+ 4. **Consistency review**: Before presenting to the user, review all code written in this phase as a cohesive whole. Check for:
165
+ - Same error handling approach across all new code
166
+ - Same styling method throughout
167
+ - No unnecessary duplication (e.g., identical handler functions across components that could be shared)
168
+ - Consistent component structure and naming
169
+ - If any inconsistencies are found, fix them before moving on
170
+ 5. **Ask user for approval** before moving to next phase:
136
171
 
137
172
  ```markdown
138
173
  🎯 **Phase 1 Complete**
@@ -252,6 +287,7 @@ Use Edit tool to update checkboxes in the plan.
252
287
  - Match existing code style and patterns
253
288
  - Use the same libraries and approaches as existing code
254
289
  - Check similar implementations in the codebase
290
+ - When you encounter a concern that already has a solved pattern in the codebase (error feedback, styling, data fetching, state management), always use the existing pattern. Never introduce a parallel approach for the same concern — if the project uses a particular styling method, don't use inline styles; if it has a notification system, don't use `alert()`; if it has a data fetching pattern, don't make raw calls
255
291
 
256
292
  ### Handle Dependencies
257
293
  - If Task B depends on Task A, complete A first
@@ -65,7 +65,23 @@ Parse the plan and create a comprehensive task list:
65
65
  | T4 | Add settings component | 2 | src/components/Settings.tsx | None |
66
66
  ```
67
67
 
68
- #### 1.3 Build Dependency Graph
68
+ #### 1.3 Discover Codebase Conventions
69
+
70
+ Before partitioning work, scan the existing codebase to understand established patterns. These conventions will be injected into every stream prompt so all agents produce consistent code.
71
+
72
+ **Scan for:**
73
+ - **Error handling / user feedback**: Toast libraries, error boundaries, notification systems vs. raw `alert()`
74
+ - **Styling method**: CSS modules, SCSS, Tailwind, styled-components, inline styles — which is dominant?
75
+ - **State management**: Context, stores, reducers, signals — what pattern does the project use?
76
+ - **Data fetching**: Custom hooks, direct API calls, query libraries
77
+ - **Component structure**: File naming, export patterns, colocation conventions
78
+ - **Test infrastructure**: Test framework, file naming conventions (`.test.`, `.spec.`), test location
79
+
80
+ **Method**: Use Grep/Glob to sample patterns across the codebase. Note which patterns are authoritative (used consistently) vs. one-off.
81
+
82
+ Store these findings — they'll be included in every stream prompt in Phase 3.
83
+
84
+ #### 1.4 Build Dependency Graph
69
85
 
70
86
  Identify dependencies between tasks:
71
87
 
@@ -84,7 +100,7 @@ T4 (independent)
84
100
  - **File**: Tasks modify the same file (MUST be sequential)
85
101
  - **Logical**: Task B assumes Task A's changes exist
86
102
 
87
- #### 1.4 Identify File Conflicts
103
+ #### 1.5 Identify File Conflicts
88
104
 
89
105
  ```bash
90
106
  # For each task, list files it will modify
@@ -168,11 +184,18 @@ You are implementing Stream [N] of a parallelized plan execution.
168
184
  - Details: [What to implement]
169
185
  - Validation: [How to verify]
170
186
 
187
+ ## Codebase Conventions (MUST follow)
188
+
189
+ [Inject discovered conventions from Phase 1.3 here — e.g., "This project uses SCSS modules for styling (not inline styles)", "Error feedback uses the toast system (not alert())", "Data fetching uses custom hooks in src/hooks/", "Tests use Vitest and live in __tests__/ directories"]
190
+
191
+ These are authoritative patterns from the existing codebase. Always follow them — never introduce a parallel approach for the same concern.
192
+
171
193
  ## Important Context
172
194
 
173
195
  - Other streams are running in parallel
174
196
  - Do NOT modify files outside your assigned scope
175
197
  - Follow project patterns from CLAUDE.md
198
+ - Check `{{TASKS_DIR}}/references/` for design references (images, mockups, wireframes) relevant to your tasks
176
199
  - Run `pnpm typecheck` after each task
177
200
  - Mark tasks complete in your response
178
201
 
@@ -298,7 +321,17 @@ git status
298
321
  git diff --stat
299
322
  ```
300
323
 
301
- #### 5.3 Conflict Resolution
324
+ #### 5.3 Cross-Stream Consistency Review
325
+
326
+ After type check and lint pass, review code from all streams for pattern alignment. Different agents may have solved the same concern differently despite receiving convention instructions. Check for:
327
+ - **Styling consistency**: All streams using the same styling approach
328
+ - **Error handling consistency**: Same feedback/notification pattern across streams
329
+ - **Component structure**: Consistent naming, export patterns, file organization
330
+ - **Data patterns**: Same fetching/state management approach
331
+
332
+ If any drift is found between streams, fix it to match the project's established conventions before reporting results.
333
+
334
+ #### 5.4 Conflict Resolution
302
335
 
303
336
  If conflicts exist (shouldn't if partitioning was correct):
304
337
  1. Identify conflicting changes
@@ -306,7 +339,7 @@ If conflicts exist (shouldn't if partitioning was correct):
306
339
  3. Apply manual fix
307
340
  4. Document what happened
308
341
 
309
- #### 5.4 Update Plan
342
+ #### 5.5 Update Plan
310
343
 
311
344
  Mark completed tasks in the plan document:
312
345
 
@@ -211,10 +211,24 @@ Write the spec to `{{SESSIONS_DIR}}/INTERACTION_SPEC_{NAME}.md` using this forma
211
211
 
212
212
  ## Completion
213
213
 
214
+ ### Step 5: Copy Frames to References
215
+
216
+ After writing the spec, copy the extracted key frames to `{{TASKS_DIR}}/references/` so they're available to future agents (implement, showcase, parallelize) for design reference:
217
+
218
+ ```bash
219
+ mkdir -p {{TASKS_DIR}}/references
220
+ cp /tmp/storyboard_<ts>/frame_*.png {{TASKS_DIR}}/references/
221
+ ```
222
+
223
+ This ensures implementing agents can view the actual UI frames when building the interaction.
224
+
225
+ ## Completion
226
+
214
227
  When the spec is written, report:
215
228
 
216
229
  ```markdown
217
230
  Interaction spec written to: {{SESSIONS_DIR}}/INTERACTION_SPEC_{NAME}.md
231
+ Key frames copied to: {{TASKS_DIR}}/references/
218
232
 
219
233
  **Summary**: [One sentence about what the interaction shows]
220
234
  **States detected**: {count}
@@ -95,6 +95,7 @@ Then proceed with brainstorm as above once they respond.
95
95
  - DO NOT create, modify, or implement any code
96
96
  - DO ask clarifying questions (scope, approach, edge cases)
97
97
  - DO explore existing code for context
98
+ - DO track any image references the user shares (screenshots, mockups, design references, wireframes) — note their file paths so the plan agent can copy them to `{{TASKS_DIR}}/references/`
98
99
  - Keep it to 2-3 rounds of questions max, then converge
99
100
  - Once the approach is clear, move to Step 2
100
101
 
@@ -129,7 +130,7 @@ After the bootstrap agent completes, ask the user: "Bootstrap script is ready. S
129
130
  - Use the Task tool to launch the commit agent (`subagent_type="commit"`) with context: "chore: bootstrap {NAME} project scaffolding"
130
131
 
131
132
  **If existing project:**
132
- Use the Task tool to launch the plan agent (`subagent_type="plan"`) with the feature name and brainstorm context. This will generate `{{PLANS_DIR}}/PLAN_{NN}_{NAME}.md` and update `{{STATE_FILE}}`.
133
+ Use the Task tool to launch the plan agent (`subagent_type="plan"`) with the feature name and brainstorm context. **Include any image file paths collected during brainstorming** so the plan agent copies them to `{{TASKS_DIR}}/references/` and links them in the plan. This will generate `{{PLANS_DIR}}/PLAN_{NN}_{NAME}.md` and update `{{STATE_FILE}}`.
133
134
 
134
135
  Wait for the plan agent to complete, then load and display a brief summary of the plan.
135
136
 
@@ -253,12 +254,28 @@ Review security report:
253
254
  **COMMIT CHECKPOINT**: If security fixes were made, commit them:
254
255
  - Use the commit agent with context: "fix: address security findings for {NAME}"
255
256
 
257
+ #### 5d. Accessibility
258
+
259
+ **Conditional** — only when frontend/UI code was modified in this plan.
260
+
261
+ **Detection**: Check if any modified files (from `git diff --name-only main...HEAD` or the plan's file list) are in typical frontend paths (`.tsx`, `.jsx`, `.vue`, `.svelte`, `.html`, component directories).
262
+
263
+ - **If frontend code exists**: Use the Task tool to launch the a11y agent (`subagent_type="a11y"`).
264
+ - Review the a11y report
265
+ - If critical findings → attempt auto-fix (max 2 retries)
266
+ - If still failing → report to user and ask whether to proceed
267
+ - **If no frontend code was touched**: Skip with note "No frontend changes — skipping accessibility audit"
268
+
269
+ **COMMIT CHECKPOINT**: If accessibility fixes were made, commit them:
270
+ - Use the commit agent with context: "fix: address accessibility findings for {NAME}"
271
+
256
272
  **If ALL validation passes cleanly**, report:
257
273
  ```markdown
258
274
  **Validation Complete**
259
275
  - Audit: Passed
260
276
  - Tests: Passed
261
277
  - Security: Passed
278
+ - Accessibility: Passed (or Skipped — no frontend changes)
262
279
  ```
263
280
 
264
281
  ---
@@ -336,7 +353,7 @@ Auto mode commits **early and often** using the commit agent (`subagent_type="co
336
353
  - Never force-push, delete branches, or make destructive changes without asking
337
354
 
338
355
  ### Compose Existing Agents
339
- - Use the existing subagent types: `bootstrap`, `plan`, `implement`, `parallelize`, `showcase`, `audit`, `test`, `secure`, `commit`, `update`
356
+ - Use the existing subagent types: `bootstrap`, `plan`, `implement`, `parallelize`, `showcase`, `audit`, `test`, `secure`, `a11y`, `commit`, `update`
340
357
  - Do NOT try to do their jobs inline — delegate to specialists
341
358
  - Always use the commit agent for commits — it writes proper conventional commit messages (`feat:`, `fix:`, `refactor:`, etc.)
342
359
 
@@ -108,8 +108,18 @@ Throughout brainstorming, actively use the `/critique`, `/verify`, and `/challen
108
108
  - **Be thorough** - we're not rushing to implementation
109
109
  - **Don't hedge** — if you're confident something won't work, say it plainly
110
110
 
111
+ ## Collecting Image References
112
+
113
+ If the user shares images during brainstorming (screenshots, mockups, design references, wireframes, inspiration), **track their file paths**. These are critical for downstream plan creation.
114
+
115
+ When brainstorming is complete and you suggest `/plan` or `/auto`:
116
+ - Mention the collected image paths in your handoff so the plan agent copies them to `{{TASKS_DIR}}/references/`
117
+ - If images were shared via the conversation (e.g., user provided a file path or pasted a screenshot), note them explicitly in the brainstorm summary
118
+
119
+ This ensures future agents (implement, showcase, parallelize) have the visual context they need to design correctly.
120
+
111
121
  ## Tools You CAN Use
112
- - ✅ Read files for context and understanding
122
+ - ✅ Read files for context and understanding (including reading images)
113
123
  - ✅ Grep/Glob to explore existing patterns
114
124
  - ✅ Bash (read-only: ls, cat, find, git log, etc.)
115
125
  - ✅ Research agents for investigation
@@ -40,6 +40,8 @@ The commit agent will:
40
40
  - Stage the relevant files and create the commit
41
41
  - Verify the commit was created successfully
42
42
 
43
+ **IMPORTANT: Do NOT add a `Co-Authored-By` line to the commit message.**
44
+
43
45
  **This will create a git commit.** The agent will show you the proposed message before committing.
44
46
 
45
47
  Use the Task tool to launch the commit agent (subagent_type="commit") with any additional context from arguments.
@@ -32,6 +32,7 @@ Launching the **implement agent** which will work independently in a separate co
32
32
  ### What the Agent Will Do
33
33
 
34
34
  - ✅ Load `{{PLANS_DIR}}/PLAN_{NN}_{NAME}.md`
35
+ - ✅ Check `{{TASKS_DIR}}/references/` for design references (images, mockups, wireframes)
35
36
  - ✅ Parse all phases, tasks, and dependencies
36
37
  - ✅ Create comprehensive task tracking (TodoWrite)
37
38
  - ✅ Execute tasks systematically with validation
@@ -36,11 +36,12 @@ I'll work through this plan collaboratively with you:
36
36
 
37
37
  1. **Load & Review**: I'll load the plan and show you a summary
38
38
  2. **Environment Check**: Verify git status and project state
39
- 3. **Task Tracking**: Set up TodoWrite for all plan tasks
40
- 4. **Step-by-Step**: Execute tasks one at a time with your input
41
- 5. **Validation**: Run type checks and lints after each task
42
- 6. **Phase Approval**: Ask before moving between phases
43
- 7. **Adapt Together**: Discuss blockers and adjustments as we go
39
+ 3. **Convention Discovery**: Scan the codebase for established patterns (error handling, styling, state management, data fetching, test infrastructure) and share findings so we're aligned on which patterns to follow
40
+ 4. **Task Tracking**: Set up TodoWrite for all plan tasks
41
+ 5. **Step-by-Step**: Execute tasks one at a time with your input
42
+ 6. **Validation**: Run type checks and lints after each task
43
+ 7. **Phase Approval**: Ask before moving between phases
44
+ 8. **Adapt Together**: Discuss blockers and adjustments as we go
44
45
 
45
46
  ### Your Role
46
47
 
@@ -59,11 +60,14 @@ For tasks involving landing page / marketing page / homepage design, I'll sugges
59
60
 
60
61
  Now let me load the plan and we'll get started together.
61
62
 
63
+ **Before implementing**, scan the codebase for established conventions (error handling approach, styling method, state management, data fetching patterns, test infrastructure). Share the findings with the user so you're aligned on which patterns to follow throughout implementation. Use Grep/Glob to sample patterns — look for things like toast/notification usage, CSS module vs SCSS vs inline patterns, custom hooks, test frameworks, etc. Present a brief summary of discovered conventions before starting tasks.
64
+
62
65
  Use Read to load `{{PLANS_DIR}}/PLAN_{NN}_{NAME}.md`, display a comprehensive summary with:
63
66
  - Objective
64
67
  - Phases and task counts
65
68
  - Key files involved
66
69
  - Any open questions or risks
70
+ - Reference files in `{{TASKS_DIR}}/references/` (if any exist — list them so the user knows what design context is available)
67
71
 
68
72
  Then ask: "Ready to start implementing? Which phase should we tackle first?"
69
73
 
package/dist/cli.js CHANGED
@@ -108,7 +108,7 @@ async function main() {
108
108
  { name: '1 - Economy (haiku + sonnet heavyweight — fastest, lowest cost)', value: 1 },
109
109
  { name: '2 - Balanced (haiku light, sonnet everything else)', value: 2 },
110
110
  { name: '3 - Standard (all sonnet)', value: 3 },
111
- { name: '4 - Enhanced (sonnet light, opus everything else — recommended)', value: 4 },
111
+ { name: '4 - Enhanced (sonnet light + research, opus everything else — recommended)', value: 4 },
112
112
  { name: '5 - Maximum (all opus — most capable, highest cost)', value: 5 },
113
113
  ],
114
114
  default: 3 // 0-indexed, so index 3 = value 4
package/dist/cli.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@allthingsclaude/blueprints",
3
- "version": "0.3.0-beta.21",
3
+ "version": "0.3.0-beta.23",
4
4
  "description": "Claude Code commands and agents for enhanced AI-assisted development workflows",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",