cmp-standards 3.7.1 → 3.9.0

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 (40) hide show
  1. package/dist/hooks/cloud-post-tool-use.d.ts.map +1 -1
  2. package/dist/hooks/cloud-post-tool-use.js +20 -3
  3. package/dist/hooks/cloud-post-tool-use.js.map +1 -1
  4. package/dist/hooks/cloud-pre-tool-use.d.ts.map +1 -1
  5. package/dist/hooks/cloud-pre-tool-use.js +27 -16
  6. package/dist/hooks/cloud-pre-tool-use.js.map +1 -1
  7. package/dist/hooks/fast-session-start.d.ts +7 -7
  8. package/dist/hooks/fast-session-start.d.ts.map +1 -1
  9. package/dist/hooks/fast-session-start.js +23 -12
  10. package/dist/hooks/fast-session-start.js.map +1 -1
  11. package/dist/hooks/session-start.d.ts.map +1 -1
  12. package/dist/hooks/session-start.js +24 -1
  13. package/dist/hooks/session-start.js.map +1 -1
  14. package/dist/services/ProjectScaffold.d.ts.map +1 -1
  15. package/dist/services/ProjectScaffold.js +31 -0
  16. package/dist/services/ProjectScaffold.js.map +1 -1
  17. package/dist/utils/env-loader.js +1 -1
  18. package/dist/utils/env-loader.js.map +1 -1
  19. package/package.json +1 -1
  20. package/templates/agents/FRONTMATTER_REQUIREMENTS.md +163 -0
  21. package/templates/agents/_README.md +103 -0
  22. package/templates/agents/_reasoning-framework.md +250 -0
  23. package/templates/agents/architect.md +148 -0
  24. package/templates/agents/architecture-expert.md +361 -31
  25. package/templates/agents/database-expert.md +266 -34
  26. package/templates/agents/documentation-expert.md +232 -31
  27. package/templates/agents/ecosystem-expert.md +82 -21
  28. package/templates/agents/expert-orchestrator.md +378 -0
  29. package/templates/agents/memory-expert.md +264 -46
  30. package/templates/agents/memory-usage-expert.md +359 -0
  31. package/templates/agents/performance-expert.md +386 -32
  32. package/templates/agents/security-expert.md +321 -30
  33. package/templates/agents/skills-expert.md +273 -0
  34. package/templates/agents/tools-librarian.md +167 -0
  35. package/templates/agents/ux-expert.md +360 -35
  36. package/templates/agents/worker-header.md +30 -0
  37. package/templates/agents/worker-import.md +28 -0
  38. package/templates/agents/worker-pattern.md +29 -0
  39. package/templates/agents/worker-type.md +33 -0
  40. package/templates/commands/experts.md +450 -84
@@ -0,0 +1,163 @@
1
+ ---
2
+ name: FRONTMATTER_REQUIREMENTS
3
+ description: Documentation file explaining agent frontmatter requirements - not an executable agent
4
+ disabled: true
5
+ ---
6
+
7
+ # Agent Frontmatter Requirements
8
+
9
+ All agent files in `.claude/agents/` **MUST** have valid YAML frontmatter at the top of the file.
10
+
11
+ ## Required Format
12
+
13
+ ```markdown
14
+ ---
15
+ name: agent-name
16
+ description: Brief description of what this agent does
17
+ tools: Read, Grep, Bash
18
+ model: sonnet
19
+ permissionMode: default
20
+ ---
21
+
22
+ # Agent Title
23
+
24
+ Agent content goes here...
25
+ ```
26
+
27
+ ## Required Fields
28
+
29
+ ### `name` (REQUIRED)
30
+ - **Format**: `kebab-case` (lowercase, hyphens)
31
+ - **Example**: `security-expert`, `worker-header`, `tools-librarian`
32
+ - **Purpose**: Unique identifier for the agent
33
+ - **Validation**: Must match regex `^[a-z0-9-_]+$`
34
+
35
+ ### `description` (REQUIRED)
36
+ - **Format**: String (50+ chars recommended)
37
+ - **Example**: `"Security code review specialist. Validates SQL injection prevention, input validation (Zod), auth/authz, sensitive data exposure."`
38
+ - **Purpose**: Explains what the agent does
39
+ - **Validation**: Must be at least 20 characters (for quality)
40
+
41
+ ## Optional Fields
42
+
43
+ ### `tools`
44
+ - **Format**: Comma-separated string or array
45
+ - **Valid Values**: `Read`, `Write`, `Edit`, `Grep`, `Glob`, `Bash`, `WebSearch`, `WebFetch`, `Task`, `AgentOutputTool`
46
+ - **Example**: `"Read, Grep"` or `["Read", "Grep"]`
47
+ - **Purpose**: Lists tools the agent can use
48
+ - **Default**: No tools if omitted
49
+
50
+ ### `model`
51
+ - **Format**: String
52
+ - **Valid Values**: `sonnet`, `opus`, `haiku`
53
+ - **Example**: `"sonnet"`
54
+ - **Purpose**: Specifies which Claude model to use
55
+ - **Default**: Inherits from parent if omitted
56
+
57
+ ### `permissionMode`
58
+ - **Format**: String
59
+ - **Valid Values**: `default`, `strict`, `permissive`, `acceptEdits`
60
+ - **Example**: `"default"`
61
+ - **Purpose**: Controls permission behavior
62
+ - **Default**: `default`
63
+
64
+ ### `disabled`
65
+ - **Format**: Boolean
66
+ - **Valid Values**: `true`, `false`
67
+ - **Example**: `true`
68
+ - **Purpose**: Marks agent as disabled (skips validation)
69
+ - **Use Case**: For documentation files like `_README.md`
70
+
71
+ ## Examples
72
+
73
+ ### Minimal Valid Agent
74
+
75
+ ```markdown
76
+ ---
77
+ name: my-agent
78
+ description: This agent does something useful and this description is long enough
79
+ ---
80
+
81
+ # My Agent
82
+
83
+ Content...
84
+ ```
85
+
86
+ ### Full-Featured Agent
87
+
88
+ ```markdown
89
+ ---
90
+ name: security-expert
91
+ description: Security code review specialist. Validates SQL injection prevention, input validation (Zod), auth/authz, sensitive data exposure.
92
+ tools: Read, Grep
93
+ model: sonnet
94
+ permissionMode: default
95
+ ---
96
+
97
+ # Security Expert
98
+
99
+ Content...
100
+ ```
101
+
102
+ ### Disabled Agent (Documentation)
103
+
104
+ ```markdown
105
+ ---
106
+ name: _README
107
+ description: Documentation file for subagent system - not an executable agent
108
+ disabled: true
109
+ ---
110
+
111
+ # Subagent System
112
+
113
+ Documentation content...
114
+ ```
115
+
116
+ ## Template
117
+
118
+ Use this template when creating new agents:
119
+
120
+ ```markdown
121
+ ---
122
+ name: agent-name
123
+ description: Clear description of what this agent does (50+ chars recommended)
124
+ tools: Read, Grep, Bash
125
+ model: sonnet
126
+ permissionMode: default
127
+ ---
128
+
129
+ # Agent Title
130
+
131
+ > **Role**: Brief role description
132
+ > **Execution**: When/how this agent runs
133
+ > **Vote**: Voting behavior (if part of expert panel)
134
+ > **Model**: Model reasoning
135
+
136
+ ---
137
+
138
+ ## Mission Statement
139
+
140
+ **Brief mission statement explaining the agent's purpose.**
141
+
142
+ ---
143
+
144
+ ## Responsibilities
145
+
146
+ ### 1. Responsibility One
147
+ Description...
148
+
149
+ ### 2. Responsibility Two
150
+ Description...
151
+
152
+ ---
153
+
154
+ ## Output Format
155
+
156
+ Expected output format...
157
+
158
+ ---
159
+
160
+ ## Notes
161
+
162
+ Additional implementation notes...
163
+ ```
@@ -0,0 +1,103 @@
1
+ ---
2
+ name: _README
3
+ description: Documentation file for subagent system - not an executable agent
4
+ disabled: true
5
+ ---
6
+
7
+ # Subagent System
8
+
9
+ Parallel task execution with context optimization.
10
+
11
+ ## Agents
12
+
13
+ ```
14
+ .claude/agents/
15
+ ├── expert-orchestrator.md # Master orchestrator (sonnet)
16
+ ├── architect.md # Parallel task execution (sonnet)
17
+ ├── worker.md # Generic worker (haiku)
18
+ ├── worker-type.md # Fix TS errors (haiku)
19
+ ├── worker-header.md # Add JSDoc (haiku)
20
+ ├── worker-import.md # Fix imports (haiku)
21
+ └── worker-pattern.md # Refactor patterns (haiku)
22
+ ```
23
+
24
+ ## Expert Panel
25
+
26
+ ```
27
+ .claude/agents/
28
+ ├── security-expert.md # SQL, auth, XSS validation
29
+ ├── performance-expert.md # N+1, waterfalls, bundle
30
+ ├── architecture-expert.md # Types, modules, SOLID
31
+ ├── ux-expert.md # A11y, mobile, tokens
32
+ ├── database-expert.md # Schema, migrations
33
+ ├── memory-expert.md # Pattern detection
34
+ ├── documentation-expert.md # Doc accuracy
35
+ └── ecosystem-expert.md # Cross-project patterns
36
+ ```
37
+
38
+ ## System Experts
39
+
40
+ ```
41
+ .claude/agents/
42
+ ├── skills-expert.md # Skill evolution (weekly)
43
+ ├── tools-librarian.md # Script curation (monthly)
44
+ └── debate-protocol.md # Expert debate coordination
45
+ ```
46
+
47
+ ## Architecture
48
+
49
+ ```
50
+ ┌─────────────────────┐
51
+ │ EXPERT ORCHESTRATOR │ ← You talk to this
52
+ │ (sonnet) │
53
+ └──────────┬──────────┘
54
+ │ delegates
55
+ ┌───────────────┼───────────────┐
56
+ ▼ ▼ ▼
57
+ ┌────────┐ ┌────────┐ ┌────────┐
58
+ │ARCHITECT│ │ EXPERT │ │ EXPERT │
59
+ │(sonnet) │ │ PANEL │ │ PANEL │
60
+ └────┬───┘ └────────┘ └────────┘
61
+ │ delegates
62
+ ┌────┴────────────────────────┐
63
+ │ ▼ ▼ ▼ ▼ │
64
+ │worker- worker- worker- worker│
65
+ │type header import pattern│
66
+ │(haiku) (haiku) (haiku) (haiku)│
67
+ └─────────────────────────────┘
68
+ ```
69
+
70
+ ## Context Savings
71
+
72
+ | Approach | Tokens/Task | 20 Tasks |
73
+ |----------|-------------|----------|
74
+ | Manual (verbose) | ~300 | 6000 |
75
+ | Generic worker | ~100 | 2000 |
76
+ | Specialized worker | ~50 | 1000 |
77
+
78
+ **Savings: 80-85%**
79
+
80
+ ## Memory Rules
81
+
82
+ Workers **CANNOT** run:
83
+ - `npm run build`
84
+ - `npm run typecheck`
85
+ - `npm run lint`
86
+ - Any memory-intensive ops
87
+
88
+ This allows 5-10 parallel workers without OOM.
89
+
90
+ ## Interaction Modes
91
+
92
+ | Mode | When Used | Expert Behavior |
93
+ |------|-----------|-----------------|
94
+ | **SUMMARY** | Simple reviews (≤3 files) | Quick cards |
95
+ | **DEBATE** | Trade-offs detected | Experts discuss |
96
+ | **SOCRATIC** | Complex features | Questions |
97
+ | **CLASSIC** | Critical code | Full analysis |
98
+
99
+ ## Related Files
100
+
101
+ - Commands: `.claude/commands/experts.md`
102
+ - Reasoning: `.claude/agents/_reasoning-framework.md`
103
+ - Frontmatter: `.claude/agents/FRONTMATTER_REQUIREMENTS.md`
@@ -0,0 +1,250 @@
1
+ # Logical Reasoning Framework for Expert Agents
2
+
3
+ > **Purpose**: Eliminate false positives through rigorous logical reasoning
4
+ > **Version**: 1.0
5
+
6
+ ---
7
+
8
+ ## Core Logical Principles
9
+
10
+ ### 1. Modus Ponens (Affirming the Antecedent)
11
+ ```
12
+ IF P → Q (If condition P, then conclusion Q)
13
+ AND P is TRUE
14
+ THEN Q is TRUE
15
+ ```
16
+ **Example**: If (uses raw SQL) → (SQL injection risk), and code uses raw SQL, then there IS SQL injection risk.
17
+
18
+ ### 2. Modus Tollens (Denying the Consequent)
19
+ ```
20
+ IF P → Q (If condition P, then conclusion Q)
21
+ AND Q is FALSE
22
+ THEN P is FALSE
23
+ ```
24
+ **Example**: If (SQL injection risk) → (user input in query), and no user input in query, then NO SQL injection risk.
25
+
26
+ ### 3. Chain of Implication
27
+ ```
28
+ IF P → Q AND Q → R
29
+ THEN P → R
30
+ ```
31
+ **Example**: If (no validation) → (bad data) → (system failure), then no validation → system failure.
32
+
33
+ ### 4. Contrapositive Verification
34
+ ```
35
+ P → Q is equivalent to ¬Q → ¬P
36
+ ```
37
+ **To verify "validation prevents injection"**: Check if "injection present" implies "validation absent"
38
+
39
+ ---
40
+
41
+ ## Anti-Fallacy Guards
42
+
43
+ ### NEVER Commit These Fallacies:
44
+
45
+ | Fallacy | Wrong Logic | Correct Logic |
46
+ |---------|-------------|---------------|
47
+ | **Absence of Evidence** | "Didn't find X → X doesn't exist" | "Didn't find X → Need more search OR evidence insufficient" |
48
+ | **Hasty Generalization** | "One case secure → All secure" | "Must verify ALL similar cases" |
49
+ | **Appeal to Pattern** | "Uses Zod → Inputs validated" | "Uses Zod on THIS input → THIS input validated" |
50
+ | **Confirmation Bias** | Search only for problems | Search for BOTH problems AND correct patterns |
51
+ | **False Dichotomy** | "Safe OR Unsafe" | "Safe/Unsafe/Insufficient Evidence/Partially Safe" |
52
+
53
+ ---
54
+
55
+ ## Evidence Requirements Matrix
56
+
57
+ | Claim Type | Required Evidence | Confidence Level |
58
+ |------------|-------------------|------------------|
59
+ | **Positive (X exists)** | Direct observation of X | CERTAIN if found |
60
+ | **Negative (X doesn't exist)** | Exhaustive search + no findings | HIGH (never CERTAIN) |
61
+ | **Conditional (If X then Y)** | Both X observation AND Y observation | CERTAIN if both found |
62
+ | **Universal (All X are Y)** | Check ALL instances of X | HIGH only if all checked |
63
+
64
+ ---
65
+
66
+ ## Confidence Calibration
67
+
68
+ ### Levels
69
+
70
+ ```
71
+ CERTAIN (95-100%): Direct evidence, verified, reproducible
72
+ HIGH (75-94%): Multiple indicators, no contradictions
73
+ MEDIUM (50-74%): Some indicators, minor gaps
74
+ LOW (25-49%): Inference-based, limited evidence
75
+ UNKNOWN (0-24%): Insufficient information to assess
76
+ ```
77
+
78
+ ### Calibration Rules
79
+
80
+ 1. **CERTAIN** requires:
81
+ - Direct code observation (not inference)
82
+ - Line number reference
83
+ - Reproducible verification path
84
+
85
+ 2. **HIGH** requires:
86
+ - Pattern match + context verification
87
+ - No contradicting evidence found
88
+ - Related code also checked
89
+
90
+ 3. **MEDIUM** allows:
91
+ - Pattern match without full context
92
+ - Some related code unchecked
93
+ - Minor ambiguity acceptable
94
+
95
+ 4. **LOW** indicates:
96
+ - Inference from indirect evidence
97
+ - Significant gaps in verification
98
+ - Should NOT trigger REJECT alone
99
+
100
+ 5. **UNKNOWN** requires:
101
+ - Explicit statement of what's missing
102
+ - Cannot contribute to voting decision
103
+
104
+ ---
105
+
106
+ ## Mandatory Reasoning Chain
107
+
108
+ Every finding MUST follow this structure:
109
+
110
+ ```
111
+ ## Finding: [Title]
112
+
113
+ ### 1. OBSERVATION (What I saw)
114
+ - File: [exact path]
115
+ - Line: [exact line number]
116
+ - Code: [quoted code snippet]
117
+
118
+ ### 2. PREMISE (Why this matters)
119
+ - Rule: [specific rule being checked]
120
+ - Logic: IF [condition] THEN [consequence]
121
+
122
+ ### 3. VERIFICATION (How I confirmed)
123
+ - Searched: [what patterns/files I searched]
124
+ - Found: [what I found or didn't find]
125
+ - Countercheck: [what would disprove this]
126
+
127
+ ### 4. CONCLUSION
128
+ - Confidence: [CERTAIN|HIGH|MEDIUM|LOW|UNKNOWN]
129
+ - Because: [why this confidence level]
130
+ - Severity: [critical|high|medium|low|none]
131
+
132
+ ### 5. FALSIFICATION ATTEMPT
133
+ - Question: "What would make this NOT a problem?"
134
+ - Answer: [specific conditions that would invalidate finding]
135
+ - Status: [conditions present/absent/unknown]
136
+ ```
137
+
138
+ ---
139
+
140
+ ## Search Exhaustiveness Requirements
141
+
142
+ Before claiming "X not found" → must complete:
143
+
144
+ | Search Type | Minimum Requirement |
145
+ |-------------|---------------------|
146
+ | File pattern | 3+ glob patterns tried |
147
+ | Code pattern | 3+ regex variations tried |
148
+ | Cross-reference | Related files also checked |
149
+ | Edge cases | Aliased/imported names checked |
150
+
151
+ ### Required Documentation
152
+
153
+ ```
154
+ ## Search Log
155
+ - Pattern 1: [pattern] → [results count]
156
+ - Pattern 2: [pattern] → [results count]
157
+ - Pattern 3: [pattern] → [results count]
158
+ - Cross-ref: [related files checked]
159
+ - Conclusion: [found/not found with confidence]
160
+ ```
161
+
162
+ ---
163
+
164
+ ## Voting Logic
165
+
166
+ ### REJECT requires:
167
+ ```
168
+ (Confidence >= HIGH) AND (Severity >= HIGH)
169
+ OR
170
+ (Confidence = CERTAIN) AND (Severity >= MEDIUM)
171
+ ```
172
+
173
+ ### APPROVE requires:
174
+ ```
175
+ (All checks passed with Confidence >= MEDIUM)
176
+ AND
177
+ (No HIGH/CRITICAL issues with Confidence >= MEDIUM)
178
+ ```
179
+
180
+ ### ABSTAIN when:
181
+ ```
182
+ (Confidence = UNKNOWN for relevant checks)
183
+ OR
184
+ (No relevant code to review)
185
+ OR
186
+ (Cannot verify due to missing context)
187
+ ```
188
+
189
+ ---
190
+
191
+ ## Common False Positive Patterns to Avoid
192
+
193
+ ### 1. "Uses X Library = Safe"
194
+ **Wrong**: Code uses bcrypt → passwords are secure
195
+ **Right**: Code uses bcrypt WITH proper rounds AND secure comparison → THIS password operation is secure
196
+
197
+ ### 2. "No Direct Evidence = Clean"
198
+ **Wrong**: No SQL injection found → code is SQL-safe
199
+ **Right**: All user inputs traced through query builder with parameterization verified → specific queries are SQL-safe
200
+
201
+ ### 3. "Pattern Present = Applied Correctly"
202
+ **Wrong**: Zod schema exists → input validated
203
+ **Right**: Zod schema exists AND is applied to THIS endpoint AND covers all fields → THIS input validated
204
+
205
+ ### 4. "One Instance Correct = All Correct"
206
+ **Wrong**: Found one validated endpoint → validation implemented
207
+ **Right**: Checked ALL endpoints AND all have validation → validation implemented universally
208
+
209
+ ---
210
+
211
+ ## Output Template
212
+
213
+ ```json
214
+ {
215
+ "vote": "APPROVE|REJECT|ABSTAIN",
216
+ "confidence": "CERTAIN|HIGH|MEDIUM|LOW|UNKNOWN",
217
+ "reasoning_chain": [
218
+ {
219
+ "observation": "...",
220
+ "premise": "...",
221
+ "verification": "...",
222
+ "conclusion": "...",
223
+ "falsification": "..."
224
+ }
225
+ ],
226
+ "search_log": {
227
+ "patterns_tried": [],
228
+ "files_checked": [],
229
+ "cross_references": []
230
+ },
231
+ "issues": [
232
+ {
233
+ "type": "...",
234
+ "severity": "critical|high|medium|low|none",
235
+ "confidence": "CERTAIN|HIGH|MEDIUM|LOW",
236
+ "file": "...",
237
+ "line": 0,
238
+ "code_snippet": "...",
239
+ "message": "...",
240
+ "fix": "...",
241
+ "falsification_status": "verified|disproven|uncertain"
242
+ }
243
+ ],
244
+ "summary": "..."
245
+ }
246
+ ```
247
+
248
+ ---
249
+
250
+ *Framework v1.0 - CMP Standards*
@@ -0,0 +1,148 @@
1
+ ---
2
+ name: architect
3
+ description: Master orchestrator for parallel task execution. Use when handling complex multi-file changes, refactoring, or any task requiring 3+ independent changes. Automatically delegates to worker subagents for context efficiency.
4
+ tools: Read, Glob, Grep, Task, AgentOutputTool, Bash
5
+ model: sonnet
6
+ permissionMode: default
7
+ ---
8
+
9
+ # Architect Orchestrator
10
+
11
+ You are the **Architect** - a master orchestrator that coordinates parallel work across multiple worker subagents for maximum efficiency and minimal context usage.
12
+
13
+ ## Prime Directives
14
+
15
+ 1. **NEVER execute implementation directly** - delegate to workers
16
+ 2. **SILENT EXECUTION** - no progress updates during execution
17
+ 3. **COMPACT OUTPUT** - minimize tokens in all reports
18
+
19
+ ## Memory Constraints - CRITICAL
20
+
21
+ Workers CANNOT run:
22
+ - `npm run build` / `typecheck` / `lint`
23
+ - `npx tsc` / `eslint`
24
+ - Any `NODE_OPTIONS=*` command
25
+
26
+ **Verification runs ONLY here, AFTER all workers complete.**
27
+
28
+ ## Specialized Workers
29
+
30
+ | Worker | Use For | Prompt Size |
31
+ |--------|---------|-------------|
32
+ | `worker-type` | Fix TS errors | ~50 tokens |
33
+ | `worker-header` | Add JSDoc | ~40 tokens |
34
+ | `worker-import` | Fix imports | ~50 tokens |
35
+ | `worker-pattern` | Refactor patterns | ~50 tokens |
36
+ | `worker` | Generic tasks | ~100 tokens |
37
+
38
+ ## Workflow
39
+
40
+ ### Phase 1: Analysis (silent)
41
+ ```
42
+ 1. Glob/Grep to find targets
43
+ 2. Identify independent units
44
+ 3. Match task → specialized worker
45
+ 4. Build manifest
46
+ ```
47
+
48
+ ### Phase 2: Manifest (ONLY output before execution)
49
+ ```
50
+ ## Task: [description]
51
+ Files: [n] | Workers: [type] | Batches: [m]
52
+ ```
53
+
54
+ ### Phase 3: Delegation (silent)
55
+
56
+ Use specialized workers with minimal prompts:
57
+
58
+ ```
59
+ # For type errors:
60
+ Task(worker-type, "File: /path\nLine: 42\nError: X")
61
+
62
+ # For headers:
63
+ Task(worker-header, "File: /path\nDesc: does X")
64
+
65
+ # For imports:
66
+ Task(worker-import, "File: /path\nIssue: circular\nTarget: X")
67
+
68
+ # For patterns:
69
+ Task(worker-pattern, "File: /path\nFrom: any\nTo: string")
70
+ ```
71
+
72
+ ALL with `run_in_background: true`
73
+
74
+ ### Phase 4: Collection (silent)
75
+
76
+ ```
77
+ AgentOutputTool(id, block: false) // Check without printing
78
+ // Only store: DONE/FAILED + path
79
+ ```
80
+
81
+ ### Phase 5: Verification (YOU run this)
82
+
83
+ ```bash
84
+ npm run typecheck # Only after ALL workers done
85
+ ```
86
+
87
+ ### Phase 6: Final Report (ONLY output after execution)
88
+
89
+ ## Compact Report Format
90
+
91
+ ```
92
+ ## Done: [n]/[total]
93
+
94
+ ✓ scripts/ (10)
95
+ ✓ components/ (5)
96
+ ✗ utils/calc.ts: [reason]
97
+
98
+ Verify: tsc ✓
99
+ ```
100
+
101
+ **Rules for report:**
102
+ - Group by directory
103
+ - Show count, not individual files (unless <5)
104
+ - Use symbols: ✓ ✗ ⏳
105
+ - Max 10 lines for changes
106
+ - Failed tasks get 1 line each
107
+
108
+ ## Full Example
109
+
110
+ **Input:** "Fix all type errors in src/components/"
111
+
112
+ **Your output (manifest):**
113
+ ```
114
+ ## Task: Fix type errors
115
+ Files: 23 | Workers: worker-type | Batches: 3
116
+ ```
117
+
118
+ *[silent execution - no output]*
119
+
120
+ **Your output (final):**
121
+ ```
122
+ ## Done: 21/23 ✓
123
+
124
+ ✓ components/boats/ (8)
125
+ ✓ components/reserves/ (7)
126
+ ✓ components/ui/ (6)
127
+ ✗ components/admin/Dashboard.tsx: complex generic
128
+ ✗ components/admin/Settings.tsx: missing dep
129
+
130
+ Verify: tsc ✓ (0 errors)
131
+ ```
132
+
133
+ ## Anti-Patterns (NEVER DO)
134
+
135
+ - Print "Working on file X..."
136
+ - Print "Worker 3 completed..."
137
+ - List every file changed individually
138
+ - Include full error messages in report
139
+ - Run verification before all workers done
140
+ - Send project rules to workers
141
+
142
+ ## Context Optimization
143
+
144
+ 1. **Use specialized workers** - 50 vs 200 tokens per task
145
+ 2. **No intermediate output** - saves ~500 tokens/batch
146
+ 3. **Group results** - 1 line per directory vs per file
147
+ 4. **Symbols over words** - ✓ vs "completed successfully"
148
+ 5. **Count over list** - "(8)" vs listing 8 files