@jspg-ai/coding-bb 0.0.1 → 0.0.2-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.
Files changed (145) hide show
  1. package/cbb/bin/cbb.js +6 -0
  2. package/cbb/bin/cbbm.js +6 -0
  3. package/cbb/dev-standards/rules/cbb-ai-behavior.md +103 -103
  4. package/cbb/dev-standards/rules/cbb-priority.md +55 -55
  5. package/cbb/lib/install/claude-code.js +2 -0
  6. package/cbb/lib/install/init.js +496 -290
  7. package/cbb/lib/install/opencode.js +31 -0
  8. package/cbb/lib/install/qoder.js +2 -0
  9. package/cbb/lib/install/workspaces.js +53 -13
  10. package/cbb/lib/openspec/index.js +3 -3
  11. package/cbb/lib/superpowers/index.js +1 -1
  12. package/cbb/lib/utils/check-update.js +16 -14
  13. package/cbb/lib/utils/gitignore.js +2 -1
  14. package/cbb/lib/utils/output.js +92 -4
  15. package/cbb/lib/utils/version.js +2 -31
  16. package/cbb/lib/wiki/cli.js +25 -25
  17. package/cbb/lib/wiki/index.js +16 -16
  18. package/cbb/tools/cbb-design-to-wiki/SKILL.md +14 -14
  19. package/cbb/tools/cbb-wiki-ops/SKILL.md +22 -22
  20. package/cbb/worktrees/_shared/scripts/find-target-worktree.js +2 -2
  21. package/cbb/worktrees/_shared/scripts/find-workspace-root.js +7 -7
  22. package/cbb/worktrees/_shared/scripts/push-core.js +18 -0
  23. package/cbb/worktrees/commands/{close.md → worktree-close.md} +8 -8
  24. package/cbb/worktrees/commands/{init.md → worktree-init.md} +9 -9
  25. package/cbb/worktrees/commands/{push.md → worktree-push.md} +3 -3
  26. package/cbb/worktrees/skills/{openspec-close-worktree → cbb-worktree-close}/SKILL.md +20 -20
  27. package/cbb/worktrees/skills/{openspec-close-worktree → cbb-worktree-close}/scripts/check-env.js +4 -4
  28. package/cbb/worktrees/skills/{openspec-close-worktree → cbb-worktree-close}/scripts/check-unarchived.js +1 -1
  29. package/cbb/worktrees/skills/{openspec-close-worktree → cbb-worktree-close}/scripts/delete-branches.js +3 -3
  30. package/cbb/worktrees/skills/{openspec-close-worktree → cbb-worktree-close}/scripts/discover-apps.js +6 -6
  31. package/cbb/worktrees/skills/{openspec-extend-worktree → cbb-worktree-close}/scripts/find-target-worktree.js +2 -2
  32. package/cbb/worktrees/skills/{openspec-push-worktrees → cbb-worktree-close}/scripts/find-workspace-root.js +7 -7
  33. package/cbb/worktrees/skills/{openspec-close-worktree → cbb-worktree-close}/scripts/remove-worktrees.js +4 -4
  34. package/cbb/worktrees/skills/{openspec-close-worktree → cbb-worktree-close}/scripts/safety-check.js +4 -4
  35. package/cbb/worktrees/skills/{openspec-init-worktree → cbb-worktree-init}/SKILL.md +81 -107
  36. package/cbb/worktrees/skills/{openspec-init-worktree → cbb-worktree-init}/scripts/auto-open.js +1 -1
  37. package/cbb/worktrees/skills/{openspec-init-worktree → cbb-worktree-init}/scripts/check-env-deep.js +4 -4
  38. package/cbb/worktrees/skills/{openspec-init-worktree → cbb-worktree-init}/scripts/check-env.js +6 -6
  39. package/cbb/worktrees/skills/{openspec-init-worktree → cbb-worktree-init}/scripts/check-repos.js +4 -4
  40. package/cbb/worktrees/skills/{openspec-init-worktree → cbb-worktree-init}/scripts/create-branches.js +4 -4
  41. package/cbb/worktrees/skills/{openspec-init-worktree → cbb-worktree-init}/scripts/create-worktrees.js +8 -7
  42. package/cbb/worktrees/skills/{openspec-close-worktree → cbb-worktree-init}/scripts/find-workspace-root.js +7 -7
  43. package/cbb/worktrees/skills/{openspec-init-worktree → cbb-worktree-init}/scripts/install-ai.js +33 -33
  44. package/cbb/worktrees/skills/{openspec-init-worktree → cbb-worktree-init}/scripts/parse-config.js +7 -7
  45. package/cbb/worktrees/skills/{openspec-init-worktree → cbb-worktree-init}/scripts/push-branches.js +9 -7
  46. package/cbb/worktrees/skills/{openspec-extend-worktree → cbb-worktree-init}/scripts/push-core.js +18 -0
  47. package/cbb/worktrees/skills/{openspec-init-worktree → cbb-worktree-init}/scripts/sync-repos.js +10 -12
  48. package/cbb/worktrees/skills/{openspec-init-worktree → cbb-worktree-init}/scripts/update-gitignore.js +19 -6
  49. package/cbb/worktrees/skills/{openspec-push-worktrees → cbb-worktree-push}/SKILL.md +16 -16
  50. package/cbb/worktrees/skills/{openspec-push-worktrees → cbb-worktree-push}/scripts/commit-worktrees.js +2 -2
  51. package/cbb/worktrees/skills/{openspec-push-worktrees → cbb-worktree-push}/scripts/find-target-worktree.js +2 -2
  52. package/cbb/worktrees/skills/{openspec-extend-worktree → cbb-worktree-push}/scripts/find-workspace-root.js +7 -7
  53. package/cbb/worktrees/skills/{openspec-push-worktrees → cbb-worktree-push}/scripts/push-core.js +18 -0
  54. package/cbb/worktrees/skills/{openspec-push-worktrees → cbb-worktree-push}/scripts/push-worktrees.js +7 -5
  55. package/config/workspace-config.sample.json +18 -0
  56. package/config/workspaces.json +11 -6
  57. package/openspec/.version +6 -6
  58. package/openspec/commands/apply.md +7 -7
  59. package/openspec/commands/archive.md +7 -7
  60. package/openspec/commands/bulk-archive.md +7 -7
  61. package/openspec/commands/continue.md +7 -7
  62. package/openspec/commands/explore.md +7 -7
  63. package/openspec/commands/ff.md +7 -7
  64. package/openspec/commands/new.md +7 -7
  65. package/openspec/commands/onboard.md +7 -7
  66. package/openspec/commands/propose.md +7 -7
  67. package/openspec/commands/sync.md +7 -7
  68. package/openspec/commands/update.md +7 -7
  69. package/openspec/commands/verify.md +7 -7
  70. package/openspec/skills/openspec-apply-change/SKILL.md +187 -187
  71. package/openspec/skills/openspec-archive-change/SKILL.md +181 -181
  72. package/openspec/skills/openspec-bulk-archive-change/SKILL.md +338 -338
  73. package/openspec/skills/openspec-continue-change/SKILL.md +117 -117
  74. package/openspec/skills/openspec-explore/SKILL.md +342 -342
  75. package/openspec/skills/openspec-ff-change/SKILL.md +116 -116
  76. package/openspec/skills/openspec-new-change/SKILL.md +76 -76
  77. package/openspec/skills/openspec-onboard/SKILL.md +560 -560
  78. package/openspec/skills/openspec-propose/SKILL.md +162 -162
  79. package/openspec/skills/openspec-sync-specs/SKILL.md +261 -261
  80. package/openspec/skills/openspec-update-change/SKILL.md +90 -90
  81. package/openspec/skills/openspec-verify-change/SKILL.md +174 -174
  82. package/package.json +4 -3
  83. package/superpowers/.version +6 -6
  84. package/superpowers/skills/brainstorming/SKILL.md +250 -250
  85. package/superpowers/skills/brainstorming/scripts/helper.js +167 -167
  86. package/superpowers/skills/brainstorming/scripts/start-server.sh +209 -209
  87. package/superpowers/skills/brainstorming/scripts/stop-server.sh +120 -120
  88. package/superpowers/skills/brainstorming/spec-document-reviewer-prompt.md +49 -49
  89. package/superpowers/skills/brainstorming/visual-companion.md +299 -299
  90. package/superpowers/skills/dispatching-parallel-agents/SKILL.md +167 -167
  91. package/superpowers/skills/executing-plans/SKILL.md +64 -64
  92. package/superpowers/skills/finishing-a-development-branch/SKILL.md +225 -225
  93. package/superpowers/skills/receiving-code-review/SKILL.md +205 -205
  94. package/superpowers/skills/requesting-code-review/SKILL.md +95 -95
  95. package/superpowers/skills/requesting-code-review/code-reviewer.md +181 -181
  96. package/superpowers/skills/subagent-driven-development/SKILL.md +568 -568
  97. package/superpowers/skills/subagent-driven-development/implementer-prompt.md +154 -154
  98. package/superpowers/skills/subagent-driven-development/re-review-prompt.md +115 -115
  99. package/superpowers/skills/subagent-driven-development/task-reviewer-prompt.md +207 -207
  100. package/superpowers/skills/systematic-debugging/CREATION-LOG.md +119 -119
  101. package/superpowers/skills/systematic-debugging/SKILL.md +283 -283
  102. package/superpowers/skills/systematic-debugging/condition-based-waiting-example.ts +158 -158
  103. package/superpowers/skills/systematic-debugging/condition-based-waiting.md +115 -115
  104. package/superpowers/skills/systematic-debugging/defense-in-depth.md +122 -122
  105. package/superpowers/skills/systematic-debugging/find-polluter.sh +72 -72
  106. package/superpowers/skills/systematic-debugging/root-cause-tracing.md +169 -169
  107. package/superpowers/skills/systematic-debugging/test-academic.md +14 -14
  108. package/superpowers/skills/systematic-debugging/test-pressure-1.md +58 -58
  109. package/superpowers/skills/systematic-debugging/test-pressure-2.md +68 -68
  110. package/superpowers/skills/systematic-debugging/test-pressure-3.md +69 -69
  111. package/superpowers/skills/test-driven-development/SKILL.md +320 -320
  112. package/superpowers/skills/test-driven-development/writing-good-tests.md +198 -198
  113. package/superpowers/skills/using-git-worktrees/SKILL.md +167 -167
  114. package/superpowers/skills/using-superpowers/SKILL.md +63 -63
  115. package/superpowers/skills/using-superpowers/references/antigravity-tools.md +23 -23
  116. package/superpowers/skills/using-superpowers/references/codex-tools.md +108 -108
  117. package/superpowers/skills/using-superpowers/references/gemini-tools.md +63 -63
  118. package/superpowers/skills/using-superpowers/references/hermes-tools.md +56 -56
  119. package/superpowers/skills/using-superpowers/references/pi-tools.md +16 -16
  120. package/superpowers/skills/verification-before-completion/SKILL.md +120 -120
  121. package/superpowers/skills/writing-plans/SKILL.md +171 -171
  122. package/superpowers/skills/writing-plans/plan-document-reviewer-prompt.md +49 -49
  123. package/superpowers/skills/writing-skills/SKILL.md +679 -679
  124. package/superpowers/skills/writing-skills/anthropic-best-practices.md +1150 -1150
  125. package/superpowers/skills/writing-skills/examples/CLAUDE_MD_TESTING.md +189 -189
  126. package/superpowers/skills/writing-skills/persuasion-principles.md +187 -187
  127. package/superpowers/skills/writing-skills/render-graphs.js +169 -169
  128. package/superpowers/skills/writing-skills/testing-skills-with-subagents.md +384 -384
  129. package/cbb/worktrees/commands/extend.md +0 -65
  130. package/cbb/worktrees/skills/openspec-close-worktree/scripts/find-target-worktree.js +0 -96
  131. package/cbb/worktrees/skills/openspec-extend-worktree/SKILL.md +0 -390
  132. package/cbb/worktrees/skills/openspec-extend-worktree/scripts/check-env.js +0 -95
  133. package/cbb/worktrees/skills/openspec-extend-worktree/scripts/check-repos.js +0 -98
  134. package/cbb/worktrees/skills/openspec-extend-worktree/scripts/create-branches-and-worktrees.js +0 -135
  135. package/cbb/worktrees/skills/openspec-extend-worktree/scripts/install-ai.js +0 -150
  136. package/cbb/worktrees/skills/openspec-extend-worktree/scripts/list-available-apps.js +0 -88
  137. package/cbb/worktrees/skills/openspec-extend-worktree/scripts/sync-repos.js +0 -93
  138. package/cbb/worktrees/skills/openspec-init-worktree/scripts/find-workspace-root.js +0 -67
  139. package/cbb/worktrees/skills/openspec-init-worktree/scripts/generate-app-options.js +0 -93
  140. package/cbb/worktrees/skills/openspec-init-worktree/scripts/push-core.js +0 -136
  141. package/cbb/worktrees/skills/openspec-push-worktrees/scripts/silence-popup.js +0 -23
  142. package/config/config.sample.json +0 -16
  143. /package/cbb/worktrees/skills/{openspec-close-worktree → cbb-worktree-close}/scripts/silence-popup.js +0 -0
  144. /package/cbb/worktrees/skills/{openspec-extend-worktree → cbb-worktree-init}/scripts/silence-popup.js +0 -0
  145. /package/cbb/worktrees/skills/{openspec-init-worktree → cbb-worktree-push}/scripts/silence-popup.js +0 -0
@@ -1,181 +1,181 @@
1
- # Code Reviewer Prompt Template
2
-
3
- Use this template when dispatching a code reviewer subagent.
4
-
5
- **Purpose:** Review completed work against requirements and code quality standards before it cascades into more work.
6
-
7
- ```
8
- Subagent (general-purpose):
9
- description: "Review code changes"
10
- prompt: |
11
- You are a Senior Code Reviewer with expertise in software architecture,
12
- design patterns, and best practices. Your job is to review completed work
13
- against its plan or requirements and identify issues before they cascade.
14
-
15
- ## What Was Implemented
16
-
17
- [DESCRIPTION]
18
-
19
- ## Requirements / Plan
20
-
21
- [PLAN_OR_REQUIREMENTS]
22
-
23
- ## Git Range to Review
24
-
25
- **Base:** [BASE_SHA]
26
- **Head:** [HEAD_SHA]
27
-
28
- ```bash
29
- git diff --stat [BASE_SHA]..[HEAD_SHA]
30
- git diff [BASE_SHA]..[HEAD_SHA]
31
- ```
32
-
33
- ## Read-Only Review
34
-
35
- Your review is read-only on this checkout. Do not mutate the working tree, the index, HEAD, or branch state in any way. Use tools like `git show`, `git diff`, and `git log` to inspect history. If you need a working copy of a different revision, check it out into a separate temporary directory (e.g. `git worktree add /tmp/review-[SHA] [SHA]`) — never move HEAD on this checkout.
36
-
37
- ## You Do Not Dispatch Subagents
38
-
39
- Do all of this review yourself. Never spawn a subagent to review part
40
- of the diff, and never spawn another reviewer for a second opinion.
41
- This process already provides every review seat the work gets; a
42
- reviewer you spawn duplicates one of them at full cost, and its
43
- verdict counts for nothing. If the diff feels too large for one
44
- pass, review it in passes yourself and say so in your report.
45
-
46
- ## What to Check
47
-
48
- **Plan alignment:**
49
- - Does the implementation match the plan / requirements?
50
- - Are deviations justified improvements, or problematic departures?
51
- - Is all planned functionality present?
52
-
53
- **Code quality:**
54
- - Clean separation of concerns?
55
- - Proper error handling?
56
- - Type safety where applicable?
57
- - DRY without premature abstraction?
58
- - Edge cases handled?
59
-
60
- **Architecture:**
61
- - Sound design decisions?
62
- - Reasonable scalability and performance?
63
- - Security concerns?
64
- - Integrates cleanly with surrounding code?
65
-
66
- **Testing:**
67
- - Tests verify real behavior, not mocks?
68
- - Edge cases covered?
69
- - Integration tests where they matter?
70
- - All tests passing?
71
-
72
- **Production readiness:**
73
- - Migration strategy if schema changed?
74
- - Backward compatibility considered?
75
- - Documentation complete?
76
- - No obvious bugs?
77
-
78
- ## Calibration
79
-
80
- Categorize issues by actual severity. Not everything is Critical.
81
- Acknowledge what was done well before listing issues — accurate praise
82
- helps the implementer trust the rest of the feedback.
83
-
84
- If you find significant deviations from the plan, flag them specifically
85
- so the implementer can confirm whether the deviation was intentional.
86
- If you find issues with the plan itself rather than the implementation,
87
- say so.
88
-
89
- ## Output Format
90
-
91
- ### Strengths
92
- [What's well done? Be specific.]
93
-
94
- ### Issues
95
-
96
- #### Critical (Must Fix)
97
- [Bugs, security issues, data loss risks, broken functionality]
98
-
99
- #### Important (Should Fix)
100
- [Architecture problems, missing features, poor error handling, test gaps]
101
-
102
- #### Minor (Nice to Have)
103
- [Code style, optimization opportunities, documentation polish]
104
-
105
- For each issue:
106
- - File:line reference
107
- - What's wrong
108
- - Why it matters
109
- - How to fix (if not obvious)
110
-
111
- ### Recommendations
112
- [Improvements for code quality, architecture, or process]
113
-
114
- ### Assessment
115
-
116
- **Ready to merge?** [Yes | No | With fixes]
117
-
118
- **Reasoning:** [1-2 sentence technical assessment]
119
-
120
- ## Critical Rules
121
-
122
- **DO:**
123
- - Categorize by actual severity
124
- - Be specific (file:line, not vague)
125
- - Explain WHY each issue matters
126
- - Acknowledge strengths
127
- - Give a clear verdict
128
-
129
- **DON'T:**
130
- - Say "looks good" without checking
131
- - Mark nitpicks as Critical
132
- - Give feedback on code you didn't actually read
133
- - Be vague ("improve error handling")
134
- - Avoid giving a clear verdict
135
- ```
136
-
137
- **Placeholders:**
138
- - `[DESCRIPTION]` — brief summary of what was built
139
- - `[PLAN_OR_REQUIREMENTS]` — what it should do (plan file path, task text, or requirements)
140
- - `[BASE_SHA]` — starting commit
141
- - `[HEAD_SHA]` — ending commit
142
-
143
- **Reviewer returns:** Strengths, Issues (Critical / Important / Minor), Recommendations, Assessment
144
-
145
- ## Example Output
146
-
147
- ```
148
- ### Strengths
149
- - Clean database schema with proper migrations (db.ts:15-42)
150
- - Comprehensive test coverage (18 tests, all edge cases)
151
- - Good error handling with fallbacks (summarizer.ts:85-92)
152
-
153
- ### Issues
154
-
155
- #### Important
156
- 1. **Missing help text in CLI wrapper**
157
- - File: index-conversations:1-31
158
- - Issue: No --help flag, users won't discover --concurrency
159
- - Fix: Add --help case with usage examples
160
-
161
- 2. **Date validation missing**
162
- - File: search.ts:25-27
163
- - Issue: Invalid dates silently return no results
164
- - Fix: Validate ISO format, throw error with example
165
-
166
- #### Minor
167
- 1. **Progress indicators**
168
- - File: indexer.ts:130
169
- - Issue: No "X of Y" counter for long operations
170
- - Impact: Users don't know how long to wait
171
-
172
- ### Recommendations
173
- - Add progress reporting for user experience
174
- - Consider config file for excluded projects (portability)
175
-
176
- ### Assessment
177
-
178
- **Ready to merge: With fixes**
179
-
180
- **Reasoning:** Core implementation is solid with good architecture and tests. Important issues (help text, date validation) are easily fixed and don't affect core functionality.
181
- ```
1
+ # Code Reviewer Prompt Template
2
+
3
+ Use this template when dispatching a code reviewer subagent.
4
+
5
+ **Purpose:** Review completed work against requirements and code quality standards before it cascades into more work.
6
+
7
+ ```
8
+ Subagent (general-purpose):
9
+ description: "Review code changes"
10
+ prompt: |
11
+ You are a Senior Code Reviewer with expertise in software architecture,
12
+ design patterns, and best practices. Your job is to review completed work
13
+ against its plan or requirements and identify issues before they cascade.
14
+
15
+ ## What Was Implemented
16
+
17
+ [DESCRIPTION]
18
+
19
+ ## Requirements / Plan
20
+
21
+ [PLAN_OR_REQUIREMENTS]
22
+
23
+ ## Git Range to Review
24
+
25
+ **Base:** [BASE_SHA]
26
+ **Head:** [HEAD_SHA]
27
+
28
+ ```bash
29
+ git diff --stat [BASE_SHA]..[HEAD_SHA]
30
+ git diff [BASE_SHA]..[HEAD_SHA]
31
+ ```
32
+
33
+ ## Read-Only Review
34
+
35
+ Your review is read-only on this checkout. Do not mutate the working tree, the index, HEAD, or branch state in any way. Use tools like `git show`, `git diff`, and `git log` to inspect history. If you need a working copy of a different revision, check it out into a separate temporary directory (e.g. `git worktree add /tmp/review-[SHA] [SHA]`) — never move HEAD on this checkout.
36
+
37
+ ## You Do Not Dispatch Subagents
38
+
39
+ Do all of this review yourself. Never spawn a subagent to review part
40
+ of the diff, and never spawn another reviewer for a second opinion.
41
+ This process already provides every review seat the work gets; a
42
+ reviewer you spawn duplicates one of them at full cost, and its
43
+ verdict counts for nothing. If the diff feels too large for one
44
+ pass, review it in passes yourself and say so in your report.
45
+
46
+ ## What to Check
47
+
48
+ **Plan alignment:**
49
+ - Does the implementation match the plan / requirements?
50
+ - Are deviations justified improvements, or problematic departures?
51
+ - Is all planned functionality present?
52
+
53
+ **Code quality:**
54
+ - Clean separation of concerns?
55
+ - Proper error handling?
56
+ - Type safety where applicable?
57
+ - DRY without premature abstraction?
58
+ - Edge cases handled?
59
+
60
+ **Architecture:**
61
+ - Sound design decisions?
62
+ - Reasonable scalability and performance?
63
+ - Security concerns?
64
+ - Integrates cleanly with surrounding code?
65
+
66
+ **Testing:**
67
+ - Tests verify real behavior, not mocks?
68
+ - Edge cases covered?
69
+ - Integration tests where they matter?
70
+ - All tests passing?
71
+
72
+ **Production readiness:**
73
+ - Migration strategy if schema changed?
74
+ - Backward compatibility considered?
75
+ - Documentation complete?
76
+ - No obvious bugs?
77
+
78
+ ## Calibration
79
+
80
+ Categorize issues by actual severity. Not everything is Critical.
81
+ Acknowledge what was done well before listing issues — accurate praise
82
+ helps the implementer trust the rest of the feedback.
83
+
84
+ If you find significant deviations from the plan, flag them specifically
85
+ so the implementer can confirm whether the deviation was intentional.
86
+ If you find issues with the plan itself rather than the implementation,
87
+ say so.
88
+
89
+ ## Output Format
90
+
91
+ ### Strengths
92
+ [What's well done? Be specific.]
93
+
94
+ ### Issues
95
+
96
+ #### Critical (Must Fix)
97
+ [Bugs, security issues, data loss risks, broken functionality]
98
+
99
+ #### Important (Should Fix)
100
+ [Architecture problems, missing features, poor error handling, test gaps]
101
+
102
+ #### Minor (Nice to Have)
103
+ [Code style, optimization opportunities, documentation polish]
104
+
105
+ For each issue:
106
+ - File:line reference
107
+ - What's wrong
108
+ - Why it matters
109
+ - How to fix (if not obvious)
110
+
111
+ ### Recommendations
112
+ [Improvements for code quality, architecture, or process]
113
+
114
+ ### Assessment
115
+
116
+ **Ready to merge?** [Yes | No | With fixes]
117
+
118
+ **Reasoning:** [1-2 sentence technical assessment]
119
+
120
+ ## Critical Rules
121
+
122
+ **DO:**
123
+ - Categorize by actual severity
124
+ - Be specific (file:line, not vague)
125
+ - Explain WHY each issue matters
126
+ - Acknowledge strengths
127
+ - Give a clear verdict
128
+
129
+ **DON'T:**
130
+ - Say "looks good" without checking
131
+ - Mark nitpicks as Critical
132
+ - Give feedback on code you didn't actually read
133
+ - Be vague ("improve error handling")
134
+ - Avoid giving a clear verdict
135
+ ```
136
+
137
+ **Placeholders:**
138
+ - `[DESCRIPTION]` — brief summary of what was built
139
+ - `[PLAN_OR_REQUIREMENTS]` — what it should do (plan file path, task text, or requirements)
140
+ - `[BASE_SHA]` — starting commit
141
+ - `[HEAD_SHA]` — ending commit
142
+
143
+ **Reviewer returns:** Strengths, Issues (Critical / Important / Minor), Recommendations, Assessment
144
+
145
+ ## Example Output
146
+
147
+ ```
148
+ ### Strengths
149
+ - Clean database schema with proper migrations (db.ts:15-42)
150
+ - Comprehensive test coverage (18 tests, all edge cases)
151
+ - Good error handling with fallbacks (summarizer.ts:85-92)
152
+
153
+ ### Issues
154
+
155
+ #### Important
156
+ 1. **Missing help text in CLI wrapper**
157
+ - File: index-conversations:1-31
158
+ - Issue: No --help flag, users won't discover --concurrency
159
+ - Fix: Add --help case with usage examples
160
+
161
+ 2. **Date validation missing**
162
+ - File: search.ts:25-27
163
+ - Issue: Invalid dates silently return no results
164
+ - Fix: Validate ISO format, throw error with example
165
+
166
+ #### Minor
167
+ 1. **Progress indicators**
168
+ - File: indexer.ts:130
169
+ - Issue: No "X of Y" counter for long operations
170
+ - Impact: Users don't know how long to wait
171
+
172
+ ### Recommendations
173
+ - Add progress reporting for user experience
174
+ - Consider config file for excluded projects (portability)
175
+
176
+ ### Assessment
177
+
178
+ **Ready to merge: With fixes**
179
+
180
+ **Reasoning:** Core implementation is solid with good architecture and tests. Important issues (help text, date validation) are easily fixed and don't affect core functionality.
181
+ ```