engine7 7.1.39 → 7.1.40

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 (53) hide show
  1. package/dist/engine-startup.mjs +1739 -1671
  2. package/dist/main.mjs +1739 -1671
  3. package/package.json +1 -1
  4. package/templates/skills/superpowers/brainstorming/SKILL.md +151 -0
  5. package/templates/skills/superpowers/brainstorming/scripts/frame-template.html +213 -0
  6. package/templates/skills/superpowers/brainstorming/scripts/helper.js +167 -0
  7. package/templates/skills/superpowers/brainstorming/scripts/server.cjs +723 -0
  8. package/templates/skills/superpowers/brainstorming/scripts/start-server.sh +209 -0
  9. package/templates/skills/superpowers/brainstorming/scripts/stop-server.sh +120 -0
  10. package/templates/skills/superpowers/brainstorming/spec-document-reviewer-prompt.md +49 -0
  11. package/templates/skills/superpowers/brainstorming/visual-companion.md +298 -0
  12. package/templates/skills/superpowers/dispatching-parallel-agents/SKILL.md +167 -0
  13. package/templates/skills/superpowers/executing-plans/SKILL.md +64 -0
  14. package/templates/skills/superpowers/finishing-a-development-branch/SKILL.md +201 -0
  15. package/templates/skills/superpowers/receiving-code-review/SKILL.md +205 -0
  16. package/templates/skills/superpowers/requesting-code-review/SKILL.md +95 -0
  17. package/templates/skills/superpowers/requesting-code-review/code-reviewer.md +172 -0
  18. package/templates/skills/superpowers/subagent-driven-development/SKILL.md +503 -0
  19. package/templates/skills/superpowers/subagent-driven-development/implementer-prompt.md +142 -0
  20. package/templates/skills/superpowers/subagent-driven-development/re-review-prompt.md +106 -0
  21. package/templates/skills/superpowers/subagent-driven-development/scripts/review-package +46 -0
  22. package/templates/skills/superpowers/subagent-driven-development/scripts/sdd-workspace +40 -0
  23. package/templates/skills/superpowers/subagent-driven-development/scripts/task-brief +41 -0
  24. package/templates/skills/superpowers/subagent-driven-development/task-reviewer-prompt.md +185 -0
  25. package/templates/skills/superpowers/systematic-debugging/CREATION-LOG.md +119 -0
  26. package/templates/skills/superpowers/systematic-debugging/SKILL.md +283 -0
  27. package/templates/skills/superpowers/systematic-debugging/condition-based-waiting-example.ts +158 -0
  28. package/templates/skills/superpowers/systematic-debugging/condition-based-waiting.md +115 -0
  29. package/templates/skills/superpowers/systematic-debugging/defense-in-depth.md +122 -0
  30. package/templates/skills/superpowers/systematic-debugging/find-polluter.sh +72 -0
  31. package/templates/skills/superpowers/systematic-debugging/root-cause-tracing.md +169 -0
  32. package/templates/skills/superpowers/systematic-debugging/test-academic.md +14 -0
  33. package/templates/skills/superpowers/systematic-debugging/test-pressure-1.md +58 -0
  34. package/templates/skills/superpowers/systematic-debugging/test-pressure-2.md +68 -0
  35. package/templates/skills/superpowers/systematic-debugging/test-pressure-3.md +69 -0
  36. package/templates/skills/superpowers/test-driven-development/SKILL.md +320 -0
  37. package/templates/skills/superpowers/test-driven-development/writing-good-tests.md +198 -0
  38. package/templates/skills/superpowers/using-git-worktrees/SKILL.md +167 -0
  39. package/templates/skills/superpowers/using-superpowers/SKILL.md +62 -0
  40. package/templates/skills/superpowers/using-superpowers/references/antigravity-tools.md +23 -0
  41. package/templates/skills/superpowers/using-superpowers/references/codex-tools.md +39 -0
  42. package/templates/skills/superpowers/using-superpowers/references/gemini-tools.md +63 -0
  43. package/templates/skills/superpowers/using-superpowers/references/pi-tools.md +16 -0
  44. package/templates/skills/superpowers/verification-before-completion/SKILL.md +120 -0
  45. package/templates/skills/superpowers/writing-plans/SKILL.md +168 -0
  46. package/templates/skills/superpowers/writing-plans/plan-document-reviewer-prompt.md +49 -0
  47. package/templates/skills/superpowers/writing-skills/SKILL.md +679 -0
  48. package/templates/skills/superpowers/writing-skills/anthropic-best-practices.md +1150 -0
  49. package/templates/skills/superpowers/writing-skills/examples/CLAUDE_MD_TESTING.md +189 -0
  50. package/templates/skills/superpowers/writing-skills/graphviz-conventions.dot +172 -0
  51. package/templates/skills/superpowers/writing-skills/persuasion-principles.md +187 -0
  52. package/templates/skills/superpowers/writing-skills/render-graphs.js +168 -0
  53. package/templates/skills/superpowers/writing-skills/testing-skills-with-subagents.md +384 -0
@@ -0,0 +1,95 @@
1
+ ---
2
+ name: requesting-code-review
3
+ description: Use when completing tasks, implementing major features, or before merging to verify work meets requirements
4
+ ---
5
+
6
+ # Requesting Code Review
7
+
8
+ Dispatch a code reviewer subagent to catch issues before they cascade. The reviewer gets precisely crafted context for evaluation — never your session's history.
9
+
10
+ **Core principle:** Review early, review often.
11
+
12
+ ## When to Request Review
13
+
14
+ **Mandatory:**
15
+ - After each task in subagent-driven development
16
+ - After completing major feature
17
+ - Before merge to main
18
+
19
+ **Optional but valuable:**
20
+ - When stuck (fresh perspective)
21
+ - Before refactoring (baseline check)
22
+ - After fixing complex bug
23
+
24
+ ## How to Request
25
+
26
+ **1. Get git SHAs:**
27
+ ```bash
28
+ BASE_SHA=$(git rev-parse HEAD~1) # or origin/main
29
+ HEAD_SHA=$(git rev-parse HEAD)
30
+ ```
31
+
32
+ **2. Dispatch code reviewer subagent:**
33
+
34
+ Dispatch a `general-purpose` subagent, filling the template at [code-reviewer.md](code-reviewer.md)
35
+
36
+ **Placeholders:**
37
+ - `{DESCRIPTION}` - Brief summary of what you built
38
+ - `{PLAN_OR_REQUIREMENTS}` - What it should do
39
+ - `{BASE_SHA}` - Starting commit
40
+ - `{HEAD_SHA}` - Ending commit
41
+
42
+ **3. Act on feedback:**
43
+ - Fix Critical issues immediately
44
+ - Fix Important issues before proceeding
45
+ - Note Minor issues for later
46
+ - Push back if reviewer is wrong (with reasoning)
47
+
48
+ ## Example
49
+
50
+ ```
51
+ [Just completed Task 2: Add verification function]
52
+
53
+ You: Let me request code review before proceeding.
54
+
55
+ BASE_SHA=$(git log --oneline | grep "Task 1" | head -1 | awk '{print $1}')
56
+ HEAD_SHA=$(git rev-parse HEAD)
57
+
58
+ [Dispatch code reviewer subagent]
59
+ DESCRIPTION: Added verifyIndex() and repairIndex() with 4 issue types
60
+ PLAN_OR_REQUIREMENTS: Task 2 from docs/superpowers/plans/deployment-plan.md
61
+ BASE_SHA: a7981ec
62
+ HEAD_SHA: 3df7661
63
+
64
+ [Subagent returns]:
65
+ Strengths: Clean architecture, real tests
66
+ Issues:
67
+ Important: Missing progress indicators
68
+ Minor: Magic number (100) for reporting interval
69
+ Assessment: Ready to proceed
70
+
71
+ You: [Fix progress indicators]
72
+ [Continue to Task 3]
73
+ ```
74
+
75
+ ## Common Rationalizations
76
+
77
+ | Excuse | Reality |
78
+ |--------|---------|
79
+ | "I'll just review the diff myself instead of dispatching a reviewer" | You're the coordinator — reviewing the diff inline burns the context window you need to keep driving the work. Dispatch a reviewer subagent: the diff and the evaluation live in its context, and only the findings come back to you. |
80
+ | "The reviewer needs my whole session history to understand the change" | Hand it precisely crafted context, never your session's history. That keeps the reviewer on the work product, not your thought process. |
81
+
82
+ ## Red Flags
83
+
84
+ **Never:**
85
+ - Skip review because "it's simple"
86
+ - Ignore Critical issues
87
+ - Proceed with unfixed Important issues
88
+ - Argue with valid technical feedback
89
+
90
+ **If reviewer wrong:**
91
+ - Push back with technical reasoning
92
+ - Show code/tests that prove it works
93
+ - Request clarification
94
+
95
+ See template at: [code-reviewer.md](code-reviewer.md)
@@ -0,0 +1,172 @@
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
+ ## What to Check
38
+
39
+ **Plan alignment:**
40
+ - Does the implementation match the plan / requirements?
41
+ - Are deviations justified improvements, or problematic departures?
42
+ - Is all planned functionality present?
43
+
44
+ **Code quality:**
45
+ - Clean separation of concerns?
46
+ - Proper error handling?
47
+ - Type safety where applicable?
48
+ - DRY without premature abstraction?
49
+ - Edge cases handled?
50
+
51
+ **Architecture:**
52
+ - Sound design decisions?
53
+ - Reasonable scalability and performance?
54
+ - Security concerns?
55
+ - Integrates cleanly with surrounding code?
56
+
57
+ **Testing:**
58
+ - Tests verify real behavior, not mocks?
59
+ - Edge cases covered?
60
+ - Integration tests where they matter?
61
+ - All tests passing?
62
+
63
+ **Production readiness:**
64
+ - Migration strategy if schema changed?
65
+ - Backward compatibility considered?
66
+ - Documentation complete?
67
+ - No obvious bugs?
68
+
69
+ ## Calibration
70
+
71
+ Categorize issues by actual severity. Not everything is Critical.
72
+ Acknowledge what was done well before listing issues — accurate praise
73
+ helps the implementer trust the rest of the feedback.
74
+
75
+ If you find significant deviations from the plan, flag them specifically
76
+ so the implementer can confirm whether the deviation was intentional.
77
+ If you find issues with the plan itself rather than the implementation,
78
+ say so.
79
+
80
+ ## Output Format
81
+
82
+ ### Strengths
83
+ [What's well done? Be specific.]
84
+
85
+ ### Issues
86
+
87
+ #### Critical (Must Fix)
88
+ [Bugs, security issues, data loss risks, broken functionality]
89
+
90
+ #### Important (Should Fix)
91
+ [Architecture problems, missing features, poor error handling, test gaps]
92
+
93
+ #### Minor (Nice to Have)
94
+ [Code style, optimization opportunities, documentation polish]
95
+
96
+ For each issue:
97
+ - File:line reference
98
+ - What's wrong
99
+ - Why it matters
100
+ - How to fix (if not obvious)
101
+
102
+ ### Recommendations
103
+ [Improvements for code quality, architecture, or process]
104
+
105
+ ### Assessment
106
+
107
+ **Ready to merge?** [Yes | No | With fixes]
108
+
109
+ **Reasoning:** [1-2 sentence technical assessment]
110
+
111
+ ## Critical Rules
112
+
113
+ **DO:**
114
+ - Categorize by actual severity
115
+ - Be specific (file:line, not vague)
116
+ - Explain WHY each issue matters
117
+ - Acknowledge strengths
118
+ - Give a clear verdict
119
+
120
+ **DON'T:**
121
+ - Say "looks good" without checking
122
+ - Mark nitpicks as Critical
123
+ - Give feedback on code you didn't actually read
124
+ - Be vague ("improve error handling")
125
+ - Avoid giving a clear verdict
126
+ ```
127
+
128
+ **Placeholders:**
129
+ - `[DESCRIPTION]` — brief summary of what was built
130
+ - `[PLAN_OR_REQUIREMENTS]` — what it should do (plan file path, task text, or requirements)
131
+ - `[BASE_SHA]` — starting commit
132
+ - `[HEAD_SHA]` — ending commit
133
+
134
+ **Reviewer returns:** Strengths, Issues (Critical / Important / Minor), Recommendations, Assessment
135
+
136
+ ## Example Output
137
+
138
+ ```
139
+ ### Strengths
140
+ - Clean database schema with proper migrations (db.ts:15-42)
141
+ - Comprehensive test coverage (18 tests, all edge cases)
142
+ - Good error handling with fallbacks (summarizer.ts:85-92)
143
+
144
+ ### Issues
145
+
146
+ #### Important
147
+ 1. **Missing help text in CLI wrapper**
148
+ - File: index-conversations:1-31
149
+ - Issue: No --help flag, users won't discover --concurrency
150
+ - Fix: Add --help case with usage examples
151
+
152
+ 2. **Date validation missing**
153
+ - File: search.ts:25-27
154
+ - Issue: Invalid dates silently return no results
155
+ - Fix: Validate ISO format, throw error with example
156
+
157
+ #### Minor
158
+ 1. **Progress indicators**
159
+ - File: indexer.ts:130
160
+ - Issue: No "X of Y" counter for long operations
161
+ - Impact: Users don't know how long to wait
162
+
163
+ ### Recommendations
164
+ - Add progress reporting for user experience
165
+ - Consider config file for excluded projects (portability)
166
+
167
+ ### Assessment
168
+
169
+ **Ready to merge: With fixes**
170
+
171
+ **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.
172
+ ```