@runecraft/grimoire 1.0.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 (73) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +21 -0
  3. package/catalog.json +9 -0
  4. package/dist/grimoire.js +1758 -0
  5. package/package.json +54 -0
  6. package/references/definition-of-done.md +67 -0
  7. package/references/testing-patterns.md +260 -0
  8. package/skills/code-review-and-quality/README.md +13 -0
  9. package/skills/code-review-and-quality/SKILL.md +389 -0
  10. package/skills/code-simplification/README.md +13 -0
  11. package/skills/code-simplification/SKILL.md +338 -0
  12. package/skills/debugging-and-error-recovery/README.md +13 -0
  13. package/skills/debugging-and-error-recovery/SKILL.md +343 -0
  14. package/skills/debugging-and-error-recovery/scripts/__pycache__/triage_state.cpython-314.pyc +0 -0
  15. package/skills/debugging-and-error-recovery/scripts/triage_state.py +206 -0
  16. package/skills/deprecation-and-migration/README.md +13 -0
  17. package/skills/deprecation-and-migration/SKILL.md +248 -0
  18. package/skills/deprecation-and-migration/scripts/__pycache__/migration_tracker.cpython-314.pyc +0 -0
  19. package/skills/deprecation-and-migration/scripts/migration_tracker.py +237 -0
  20. package/skills/doubt-driven-development/README.md +13 -0
  21. package/skills/doubt-driven-development/SKILL.md +251 -0
  22. package/skills/git-commit-learning/.skill-meta.json +14 -0
  23. package/skills/git-commit-learning/README.md +205 -0
  24. package/skills/git-commit-learning/SKILL.md +435 -0
  25. package/skills/git-commit-learning/references/commit-patterns.md +595 -0
  26. package/skills/git-worktree/README.md +13 -0
  27. package/skills/git-worktree/SKILL.md +220 -0
  28. package/skills/idea-refine/README.md +13 -0
  29. package/skills/idea-refine/SKILL.md +186 -0
  30. package/skills/interview-me/README.md +13 -0
  31. package/skills/interview-me/SKILL.md +233 -0
  32. package/skills/linkedin-audit/SKILL.md +98 -0
  33. package/skills/linkedin-audit/references/dashboard-spec.md +43 -0
  34. package/skills/memory-management/README.md +13 -0
  35. package/skills/memory-management/SKILL.md +198 -0
  36. package/skills/security-and-hardening/README.md +13 -0
  37. package/skills/security-and-hardening/SKILL.md +472 -0
  38. package/skills/shipping-and-launch/README.md +13 -0
  39. package/skills/shipping-and-launch/SKILL.md +317 -0
  40. package/skills/skill-forge/README.md +153 -0
  41. package/skills/skill-forge/SKILL.md +291 -0
  42. package/skills/skill-forge/assets/SKILL.template.md +73 -0
  43. package/skills/skill-forge/references/authoring-patterns.md +249 -0
  44. package/skills/skill-forge/references/description-optimization.md +171 -0
  45. package/skills/skill-forge/references/output-evaluation.md +276 -0
  46. package/skills/skill-forge/references/scripts-guide.md +232 -0
  47. package/skills/skill-forge/references/spec.md +175 -0
  48. package/skills/skill-forge/scripts/validate.py +536 -0
  49. package/skills/spec-driven/.skill-meta.json +14 -0
  50. package/skills/spec-driven/README.md +335 -0
  51. package/skills/spec-driven/SKILL.md +174 -0
  52. package/skills/spec-driven/references/code-analysis.md +98 -0
  53. package/skills/spec-driven/references/coding-principles.md +56 -0
  54. package/skills/spec-driven/references/context-limits.md +31 -0
  55. package/skills/spec-driven/references/design.md +199 -0
  56. package/skills/spec-driven/references/discuss.md +136 -0
  57. package/skills/spec-driven/references/implement.md +425 -0
  58. package/skills/spec-driven/references/lessons.md +113 -0
  59. package/skills/spec-driven/references/memory.md +126 -0
  60. package/skills/spec-driven/references/specify.md +210 -0
  61. package/skills/spec-driven/references/sub-agents.md +96 -0
  62. package/skills/spec-driven/references/tasks.md +484 -0
  63. package/skills/spec-driven/references/validate.md +350 -0
  64. package/skills/spec-driven/scripts/__pycache__/lessons.cpython-314.pyc +0 -0
  65. package/skills/spec-driven/scripts/lessons.py +370 -0
  66. package/skills/spec-loop/README.md +36 -0
  67. package/skills/spec-loop/SKILL.md +61 -0
  68. package/skills/test-driven-development/README.md +13 -0
  69. package/skills/test-driven-development/SKILL.md +388 -0
  70. package/skills/typescript-patterns/README.md +13 -0
  71. package/skills/typescript-patterns/SKILL.md +346 -0
  72. package/skills/using-agent-skills/README.md +13 -0
  73. package/skills/using-agent-skills/SKILL.md +187 -0
@@ -0,0 +1,389 @@
1
+ ---
2
+ name: code-review-and-quality
3
+ description: >
4
+ Conducts multi-axis code review (correctness, readability, architecture, security, performance) with
5
+ severity labels (Blocker, Required, Optional, Nit, FYI). Use before merging any change, after a feature
6
+ implementation, or when reviewing code from another agent or human.
7
+ EN triggers: /review, code review, PR review, merge gate, five-axis review, severity labels.
8
+ PT triggers: /revisar, revisão de código, revisão de PR, gate de merge.
9
+ Do NOT use for: in-flight decisions on non-trivial work (that's /harden), single-line typo fixes, or
10
+ when the user explicitly skips review.
11
+ license: CC-BY-4.0
12
+ ---
13
+
14
+ # Code Review and Quality
15
+
16
+ ## Overview
17
+
18
+ Multi-dimensional code review with quality gates. Every change gets reviewed before merge — no exceptions. Review covers five axes: correctness, readability, architecture, security, and performance.
19
+
20
+ **The approval standard:** Approve a change when it definitely improves overall code health, even if it isn't perfect. Perfect code doesn't exist — the goal is continuous improvement. Don't block a change because it isn't exactly how you would have written it. If it improves the codebase and follows the project's conventions, approve it.
21
+
22
+ ## When to Use
23
+
24
+ - Before merging any PR or change
25
+ - After completing a feature implementation
26
+ - When another agent or model produced code you need to evaluate
27
+ - When refactoring existing code
28
+ - After any bug fix (review both the fix and the regression test)
29
+
30
+ ## The Five-Axis Review
31
+
32
+ Every review evaluates code across these dimensions:
33
+
34
+ ### 1. Correctness
35
+
36
+ Does the code do what it claims to do?
37
+
38
+ - Does it match the spec or task requirements?
39
+ - Are edge cases handled (null, empty, boundary values)?
40
+ - Are error paths handled (not just the happy path)?
41
+ - Does it pass all tests? Are the tests actually testing the right things?
42
+ - Are there off-by-one errors, race conditions, or state inconsistencies?
43
+
44
+ ### 2. Readability & Simplicity
45
+
46
+ Can another engineer (or agent) understand this code without the author explaining it?
47
+
48
+ - Are names descriptive and consistent with project conventions? (No `temp`, `data`, `result` without context)
49
+ - Is the control flow straightforward (avoid nested ternaries, deep callbacks)?
50
+ - Is the code organized logically (related code grouped, clear module boundaries)?
51
+ - Are there any "clever" tricks that should be simplified?
52
+ - **Could this be done in fewer lines?** (1000 lines where 100 suffice is a failure)
53
+ - **Are abstractions earning their complexity?** (Don't generalize until the third use case)
54
+ - Would comments help clarify non-obvious intent? (But don't comment obvious code.)
55
+ - Are there dead code artifacts: no-op variables (`_unused`), backwards-compat shims, or `// removed` comments?
56
+ - **Is a new conditional bolted onto an unrelated flow?** That's a design smell, not a nit — push the logic into its own helper, state, or policy instead of tangling an existing path.
57
+ - **Do repeated conditionals on the same shape appear?** They signal a missing model or dispatcher. A "temporary" branch is usually permanent debt.
58
+
59
+ ### 3. Architecture
60
+
61
+ Does the change fit the system's design?
62
+
63
+ - Does it follow existing patterns or introduce a new one? If new, is it justified?
64
+ - Does it maintain clean module boundaries?
65
+ - Is there code duplication that should be shared?
66
+ - Are dependencies flowing in the right direction (no circular dependencies)?
67
+ - Is the abstraction level appropriate (not over-engineered, not too coupled)?
68
+ - **Does this refactor reduce complexity or just relocate it?** Count the concepts a reader must hold to follow the change. If a "cleaner" version leaves that count unchanged, it isn't cleaner — prefer the restructuring that makes whole branches, modes, or layers disappear over one that re-centralizes the same logic. Prefer deleting an abstraction to polishing it.
69
+ - **Is feature-specific logic leaking into a shared or general-purpose module?** Keep logic in its owning layer, reuse the existing canonical helper instead of a near-duplicate, and don't normalize architectural drift.
70
+ - **Are type boundaries explicit?** Question gratuitous `any`/`unknown`/optional/casts and silent fallbacks that paper over an unclear invariant — making the boundary explicit often makes the surrounding control flow simpler.
71
+
72
+ ### 4. Security
73
+
74
+ For detailed security guidance, see `security-and-hardening`. Does the change introduce vulnerabilities?
75
+
76
+ - Is user input validated and sanitized?
77
+ - Are secrets kept out of code, logs, and version control?
78
+ - Is authentication/authorization checked where needed?
79
+ - Are SQL queries parameterized (no string concatenation)?
80
+ - Are outputs encoded to prevent XSS?
81
+ - Are dependencies from trusted sources with no known vulnerabilities?
82
+ - Is data from external sources (APIs, logs, user content, config files) treated as untrusted?
83
+ - Are external data flows validated at system boundaries before use in logic or rendering?
84
+
85
+ ### 5. Performance
86
+
87
+ Does the change introduce performance problems? Use the profiling and optimization checks below.
88
+
89
+ - Any N+1 query patterns?
90
+ - Any unbounded loops or unconstrained data fetching?
91
+ - Any synchronous operations that should be async?
92
+ - Any unnecessary re-renders in UI components?
93
+ - Any missing pagination on list endpoints?
94
+ - Any large objects created in hot paths?
95
+
96
+ ## Structural Remedies
97
+
98
+ When you flag a structural problem, propose the move — not just the problem. A review that only says "this is complex" leaves the author guessing. Reach for a named restructuring:
99
+
100
+ - **Replace a chain of conditionals** with a typed model or an explicit dispatcher.
101
+ - **Collapse duplicate branches** into a single clearer flow.
102
+ - **Separate orchestration from business logic** so each reads on its own.
103
+ - **Move feature-specific logic** out of a shared module into the package that owns the concept.
104
+ - **Reuse the canonical helper** instead of a bespoke near-duplicate.
105
+ - **Make a type boundary explicit** so downstream branching disappears.
106
+ - **Delete a pass-through wrapper** that adds indirection without clarifying the API.
107
+ - **Extract a helper, or split a large file** into focused modules.
108
+
109
+ Prefer the remedy that removes moving pieces over one that spreads the same complexity around.
110
+
111
+ ## Change Sizing
112
+
113
+ Small, focused changes are easier to review, faster to merge, and safer to deploy. Target these sizes:
114
+
115
+ ```
116
+ ~100 lines changed → Good. Reviewable in one sitting.
117
+ ~300 lines changed → Acceptable if it's a single logical change.
118
+ ~1000 lines changed → Too large. Split it.
119
+ ```
120
+
121
+ **Watch file size, not just diff size.** A small diff can still push a file past a healthy boundary — around 1000 *total* lines in a single file (distinct from the ~1000 *changed*-lines threshold above) is a common inspection signal, not a hard cap. When a change materially grows an already-large file, ask whether to extract helpers, subcomponents, or modules *first*, before piling more on. Decompose, then add.
122
+
123
+ **What counts as "one change":** A single self-contained modification that addresses one thing, includes related tests, and keeps the system functional after submission. One part of a feature — not the whole feature.
124
+
125
+ **Splitting strategies when a change is too large:**
126
+
127
+ | Strategy | How | When |
128
+ |----------|-----|------|
129
+ | **Stack** | Submit a small change, start the next one based on it | Sequential dependencies |
130
+ | **By file group** | Separate changes for groups needing different reviewers | Cross-cutting concerns |
131
+ | **Horizontal** | Create shared code/stubs first, then consumers | Layered architecture |
132
+ | **Vertical** | Break into smaller full-stack slices of the feature | Feature work |
133
+
134
+ **When large changes are acceptable:** Complete file deletions and automated refactoring where the reviewer only needs to verify intent, not every line.
135
+
136
+ **Separate refactoring from feature work.** A change that refactors existing code and adds new behavior is two changes — submit them separately. Small cleanups (variable renaming) can be included at reviewer discretion.
137
+
138
+ ## Change Descriptions
139
+
140
+ Every change needs a description that stands alone in version control history.
141
+
142
+ **First line:** Short, imperative, standalone. "Delete the FizzBuzz RPC" not "Deleting the FizzBuzz RPC." Must be informative enough that someone searching history can understand the change without reading the diff.
143
+
144
+ **Body:** What is changing and why. Include context, decisions, and reasoning not visible in the code itself. Link to bug numbers, benchmark results, or design docs where relevant. Acknowledge approach shortcomings when they exist.
145
+
146
+ **Anti-patterns:** "Fix bug," "Fix build," "Add patch," "Moving code from A to B," "Phase 1," "Add convenience functions."
147
+
148
+ ## Review Process
149
+
150
+ ### Step 1: Understand the Context
151
+
152
+ Before looking at code, understand the intent:
153
+
154
+ ```
155
+ - What is this change trying to accomplish?
156
+ - What spec or task does it implement?
157
+ - What is the expected behavior change?
158
+ ```
159
+
160
+ ### Step 2: Review the Tests First
161
+
162
+ Tests reveal intent and coverage:
163
+
164
+ ```
165
+ - Do tests exist for the change?
166
+ - Do they test behavior (not implementation details)?
167
+ - Are edge cases covered?
168
+ - Do tests have descriptive names?
169
+ - Would the tests catch a regression if the code changed?
170
+ ```
171
+
172
+ ### Step 3: Review the Implementation
173
+
174
+ Walk through the code with the five axes in mind:
175
+
176
+ ```
177
+ For each file changed:
178
+ 1. Correctness: Does this code do what the test says it should?
179
+ 2. Readability: Can I understand this without help?
180
+ 3. Architecture: Does this fit the system?
181
+ 4. Security: Any vulnerabilities?
182
+ 5. Performance: Any bottlenecks?
183
+ ```
184
+
185
+ ### Step 4: Categorize Findings
186
+
187
+ Label every comment with its severity so the author knows what's required vs optional:
188
+
189
+ | Prefix | Meaning | Author Action |
190
+ |--------|---------|---------------|
191
+ | *(no prefix)* | Required change | Must address before merge |
192
+ | **Critical:** | Blocks merge | Security vulnerability, data loss, broken functionality |
193
+ | **Nit:** | Minor, optional | Author may ignore — formatting, style preferences |
194
+ | **Optional:** / **Consider:** | Suggestion | Worth considering but not required |
195
+ | **FYI** | Informational only | No action needed — context for future reference |
196
+
197
+ This prevents authors from treating all feedback as mandatory and wasting time on optional suggestions.
198
+
199
+ **Lead with what matters.** Order findings by leverage: correctness and security first, then structural regressions and missed simplifications, then everything else. Don't bury a real issue under cosmetic nits — a few high-conviction comments beat a long list. If you have one structural problem and ten nits, the structural problem *is* the review.
200
+
201
+ ### Step 5: Verify the Verification
202
+
203
+ Check the author's verification story:
204
+
205
+ ```
206
+ - What tests were run?
207
+ - Did the build pass?
208
+ - Was the change tested manually?
209
+ - Are there screenshots for UI changes?
210
+ - Is there a before/after comparison?
211
+ ```
212
+
213
+ ## Multi-Model Review Pattern
214
+
215
+ Use different models for different review perspectives:
216
+
217
+ ```
218
+ Model A writes the code
219
+
220
+
221
+ Model B reviews for correctness and architecture
222
+
223
+
224
+ Model A addresses the feedback
225
+
226
+
227
+ Human makes the final call
228
+ ```
229
+
230
+ This catches issues that a single model might miss — different models have different blind spots.
231
+
232
+ **Example prompt for a review agent:**
233
+ ```
234
+ Review this code change for correctness, security, and adherence to
235
+ our project conventions. The spec says [X]. The change should [Y].
236
+ Flag any issues as Critical, Required, Optional, or Nit.
237
+ ```
238
+
239
+ ## Dead Code Hygiene
240
+
241
+ After any refactoring or implementation change, check for orphaned code:
242
+
243
+ 1. Identify code that is now unreachable or unused
244
+ 2. List it explicitly
245
+ 3. **Ask before deleting:** "Should I remove these now-unused elements: [list]?"
246
+
247
+ Don't leave dead code lying around — it confuses future readers and agents. But don't silently delete things you're not sure about. When in doubt, ask.
248
+
249
+ ```
250
+ DEAD CODE IDENTIFIED:
251
+ - formatLegacyDate() in src/utils/date.ts — replaced by formatDate()
252
+ - OldTaskCard component in src/components/ — replaced by TaskCard
253
+ - LEGACY_API_URL constant in src/config.ts — no remaining references
254
+ → Safe to remove these?
255
+ ```
256
+
257
+ ## Review Speed
258
+
259
+ Slow reviews block entire teams. The cost of context-switching to review is less than the waiting cost imposed on others.
260
+
261
+ - **Respond within one business day** — this is the maximum, not the target
262
+ - **Ideal cadence:** Respond shortly after a review request arrives, unless deep in focused coding. A typical change should complete multiple review rounds in a single day
263
+ - **Prioritize fast individual responses** over quick final approval. Quick feedback reduces frustration even if multiple rounds are needed
264
+ - **Large changes:** Ask the author to split them rather than reviewing one massive changeset
265
+
266
+ ## Handling Disagreements
267
+
268
+ When resolving review disputes, apply this hierarchy:
269
+
270
+ 1. **Technical facts and data** override opinions and preferences
271
+ 2. **Style guides** are the absolute authority on style matters
272
+ 3. **Software design** must be evaluated on engineering principles, not personal preference
273
+ 4. **Codebase consistency** is acceptable if it doesn't degrade overall health
274
+
275
+ **Don't accept "I'll clean it up later."** Experience shows deferred cleanup rarely happens. Require cleanup before submission unless it's a genuine emergency. If surrounding issues can't be addressed in this change, require filing a bug with self-assignment.
276
+
277
+ ## Honesty in Review
278
+
279
+ When reviewing code — whether written by you, another agent, or a human:
280
+
281
+ - **Don't rubber-stamp.** "LGTM" without evidence of review helps no one.
282
+ - **Don't soften real issues.** "This might be a minor concern" when it's a bug that will hit production is dishonest.
283
+ - **Quantify problems when possible.** "This N+1 query will add ~50ms per item in the list" is better than "this could be slow."
284
+ - **Push back on approaches with clear problems.** Sycophancy is a failure mode in reviews. If the implementation has issues, say so directly and propose alternatives.
285
+ - **Accept override gracefully.** If the author has full context and disagrees, defer to their judgment. Comment on code, not people — reframe personal critiques to focus on the code itself.
286
+
287
+ ## Dependency Discipline
288
+
289
+ Part of code review is dependency review:
290
+
291
+ **Before adding any dependency:**
292
+ 1. Does the existing stack solve this? (Often it does.)
293
+ 2. How large is the dependency? (Check bundle impact.)
294
+ 3. Is it actively maintained? (Check last commit, open issues.)
295
+ 4. Does it have known vulnerabilities? (`npm audit`)
296
+ 5. What's the license? (Must be compatible with the project.)
297
+
298
+ **Rule:** Prefer standard library and existing utilities over new dependencies. Every dependency is a liability.
299
+
300
+ ## The Review Checklist
301
+
302
+ ```markdown
303
+ ## Review: [PR/Change title]
304
+
305
+ ### Context
306
+ - [ ] I understand what this change does and why
307
+
308
+ ### Correctness
309
+ - [ ] Change matches spec/task requirements
310
+ - [ ] Edge cases handled
311
+ - [ ] Error paths handled
312
+ - [ ] Tests cover the change adequately
313
+
314
+ ### Readability
315
+ - [ ] Names are clear and consistent
316
+ - [ ] Logic is straightforward
317
+ - [ ] No unnecessary complexity
318
+
319
+ ### Architecture
320
+ - [ ] Follows existing patterns
321
+ - [ ] No unnecessary coupling or dependencies
322
+ - [ ] Appropriate abstraction level
323
+ - [ ] Refactors reduce complexity rather than relocate it
324
+ - [ ] No feature logic in shared modules; file stays within a healthy size
325
+
326
+ ### Security
327
+ - [ ] No secrets in code
328
+ - [ ] Input validated at boundaries
329
+ - [ ] No injection vulnerabilities
330
+ - [ ] Auth checks in place
331
+ - [ ] External data sources treated as untrusted
332
+
333
+ ### Performance
334
+ - [ ] No N+1 patterns
335
+ - [ ] No unbounded operations
336
+ - [ ] Pagination on list endpoints
337
+
338
+ ### Verification
339
+ - [ ] Tests pass
340
+ - [ ] Build succeeds
341
+ - [ ] Manual verification done (if applicable)
342
+
343
+ ### Verdict
344
+ - [ ] **Approve** — Ready to merge
345
+ - [ ] **Request changes** — Issues must be addressed
346
+ ```
347
+ ## See Also
348
+
349
+ - For detailed security review guidance, see `security-and-hardening`
350
+ - For performance review checks, see the Performance axis of The Five-Axis Review above
351
+
352
+ ## Common Rationalizations
353
+
354
+ | Rationalization | Reality |
355
+ |---|---|
356
+ | "It works, that's good enough" | Working code that's unreadable, insecure, or architecturally wrong creates debt that compounds. |
357
+ | "I wrote it, so I know it's correct" | Authors are blind to their own assumptions. Every change benefits from another set of eyes. |
358
+ | "We'll clean it up later" | Later never comes. The review is the quality gate — use it. Require cleanup before merge, not after. |
359
+ | "AI-generated code is probably fine" | AI code needs more scrutiny, not less. It's confident and plausible, even when wrong. |
360
+ | "The tests pass, so it's good" | Tests are necessary but not sufficient. They don't catch architecture problems, security issues, or readability concerns. |
361
+ | "The refactor makes it cleaner" | Relocating complexity isn't reducing it. If the reader still holds the same number of concepts, the structure didn't improve — look for the version where branches disappear. |
362
+ | "It's only a small addition to this file" | Small diffs still push files past a healthy size and bolt branches onto unrelated flows. Judge the resulting structure, not the diff size. |
363
+
364
+ ## Red Flags
365
+
366
+ - PRs merged without any review
367
+ - Review that only checks if tests pass (ignoring other axes)
368
+ - "LGTM" without evidence of actual review
369
+ - Security-sensitive changes without security-focused review
370
+ - Large PRs that are "too big to review properly" (split them)
371
+ - No regression tests with bug fix PRs
372
+ - Review comments without severity labels — makes it unclear what's required vs optional
373
+ - Accepting "I'll fix it later" — it never happens
374
+ - A refactor that moves code around without reducing the number of concepts a reader must hold
375
+ - A change that grows an already-large file instead of decomposing it
376
+ - New conditionals scattered into unrelated code paths (a missing abstraction)
377
+ - A bespoke helper that duplicates an existing canonical one, or feature logic placed in a shared module
378
+
379
+ ## Verification
380
+
381
+ After review is complete:
382
+
383
+ - [ ] All Critical issues are resolved
384
+ - [ ] All Required (no-prefix) changes are resolved or explicitly deferred with justification
385
+ - [ ] Tests pass
386
+ - [ ] Build succeeds
387
+ - [ ] The verification story is documented (what changed, how it was verified)
388
+
389
+ **Presumptive blockers:** surface and propose the simpler design for each of these; escalate to Required only when the change actively makes structure worse: a refactor that relocates complexity instead of reducing it; a change that pushes a file past the size boundary with no decomposition; feature logic added to a shared module; a near-duplicate of an existing canonical helper; a silent fallback that hides an unclear invariant.
@@ -0,0 +1,13 @@
1
+ # code-simplification
2
+
3
+ Reduce complexity while preserving exact behavior. Chesterton's Fence and Rule of 500.
4
+
5
+ | Field | Value |
6
+ |-------|-------|
7
+ | Version | 1.0.0 |
8
+ | Trigger | `/simplify`, "simplify this", "reduce complexity", "Chesterton's Fence" |
9
+ | PT trigger | `/simplificar`, "reduzir complexidade", "código difícil de ler" |
10
+
11
+ **Do not use for** behavior-changing refactors (use `/spec-driven` to plan), bug fixes (use `/debug` or `/test-driven-development`), or one-off tweaks that don't reduce concept count.
12
+
13
+ See [SKILL.md](SKILL.md) for the full process.