@shiwenbin1617/pstack 0.14.4

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 (149) hide show
  1. package/LICENSE +28 -0
  2. package/README.md +332 -0
  3. package/adapters/claude-code/overrides/setup-pstack/SKILL.md +48 -0
  4. package/adapters/claude-code.md +29 -0
  5. package/adapters/codex/agents/comment-sicko.toml +7 -0
  6. package/adapters/codex/agents/poteto-agent.toml +7 -0
  7. package/adapters/codex/overrides/setup-pstack/SKILL.md +40 -0
  8. package/adapters/codex.md +34 -0
  9. package/agents/comment-sicko.md +32 -0
  10. package/agents/poteto-agent.md +9 -0
  11. package/automations/benny/FOR_AGENTS.md +89 -0
  12. package/automations/benny/README.md +23 -0
  13. package/automations/benny/skills/reproduce-and-fix-issues/SKILL.md +310 -0
  14. package/automations/benny/skills/reproduce-and-fix-issues/references/control-adapter.md +169 -0
  15. package/automations/benny/skills/reproduce-and-fix-issues/references/feature-map.example.md +205 -0
  16. package/automations/benny/skills/reproduce-and-fix-issues/references/verify-existing-fix.md +93 -0
  17. package/automations/benny/skills/setup-benny/SKILL.md +266 -0
  18. package/automations/benny/skills/triage-issue-reports/SKILL.md +240 -0
  19. package/automations/benny/skills/triage-issue-reports/references/routing.example.md +61 -0
  20. package/automations/benny/templates/configuration.example.yaml +84 -0
  21. package/automations/benny/templates/reproduce-automation-prompt.md +33 -0
  22. package/automations/benny/templates/triage-automation-prompt.md +39 -0
  23. package/bin/pstack.mjs +331 -0
  24. package/package.json +48 -0
  25. package/scripts/build.mjs +218 -0
  26. package/scripts/host-adapters.mjs +128 -0
  27. package/scripts/lib.mjs +181 -0
  28. package/scripts/test.mjs +106 -0
  29. package/skills/architect/SKILL.md +83 -0
  30. package/skills/architect/references/design-red-flags.md +33 -0
  31. package/skills/architect/references/rationale-template.md +35 -0
  32. package/skills/architect/references/runner-prompt.md +20 -0
  33. package/skills/arena/SKILL.md +71 -0
  34. package/skills/automate-me/SKILL.md +109 -0
  35. package/skills/blast-radius/SKILL.md +50 -0
  36. package/skills/bro/SKILL.md +7 -0
  37. package/skills/create-verification-skill/SKILL.md +44 -0
  38. package/skills/create-verification-skill/references/feature-map-example/README.md +47 -0
  39. package/skills/create-verification-skill/references/feature-map-example/create-note.md +39 -0
  40. package/skills/create-verification-skill/references/feature-map-example/search.md +45 -0
  41. package/skills/figure-it-out/SKILL.md +55 -0
  42. package/skills/how/SKILL.md +134 -0
  43. package/skills/how/references/critic-prompt.md +59 -0
  44. package/skills/how/references/critique-rubric.md +58 -0
  45. package/skills/how/references/explainer-prompt.md +55 -0
  46. package/skills/how/references/explorer-prompt.md +52 -0
  47. package/skills/interrogate/SKILL.md +113 -0
  48. package/skills/interrogate/references/code-quality-review.md +47 -0
  49. package/skills/interrogate/references/lead-judgment.md +58 -0
  50. package/skills/interrogate/references/reviewer-prompt.md +72 -0
  51. package/skills/interrogate/references/rubric.md +77 -0
  52. package/skills/maintain-verification-skill/SKILL.md +39 -0
  53. package/skills/no-comments/SKILL.md +24 -0
  54. package/skills/poteto-mode/SKILL.md +140 -0
  55. package/skills/poteto-mode/playbooks/authoring-a-skill.md +12 -0
  56. package/skills/poteto-mode/playbooks/autonomous-run.md +13 -0
  57. package/skills/poteto-mode/playbooks/autopilot-full.md +13 -0
  58. package/skills/poteto-mode/playbooks/autopilot-stack.md +16 -0
  59. package/skills/poteto-mode/playbooks/babysit.md +27 -0
  60. package/skills/poteto-mode/playbooks/bug-fix.md +17 -0
  61. package/skills/poteto-mode/playbooks/eval.md +27 -0
  62. package/skills/poteto-mode/playbooks/feature.md +21 -0
  63. package/skills/poteto-mode/playbooks/hillclimb.md +21 -0
  64. package/skills/poteto-mode/playbooks/investigation.md +14 -0
  65. package/skills/poteto-mode/playbooks/multi-phase-plan.md +155 -0
  66. package/skills/poteto-mode/playbooks/opening-a-pr.md +29 -0
  67. package/skills/poteto-mode/playbooks/orchestrate.md +113 -0
  68. package/skills/poteto-mode/playbooks/pause-safely.md +10 -0
  69. package/skills/poteto-mode/playbooks/perf-issue.md +24 -0
  70. package/skills/poteto-mode/playbooks/prototype.md +14 -0
  71. package/skills/poteto-mode/playbooks/refactoring.md +16 -0
  72. package/skills/poteto-mode/playbooks/runtime-forensics.md +11 -0
  73. package/skills/poteto-mode/playbooks/session-pickup.md +13 -0
  74. package/skills/poteto-mode/playbooks/shipping.md +20 -0
  75. package/skills/poteto-mode/playbooks/trace-forensics.md +14 -0
  76. package/skills/poteto-mode/playbooks/visual-parity.md +11 -0
  77. package/skills/poteto-mode/playbooks/worktree-cleanup.md +14 -0
  78. package/skills/poteto-mode/references/bugbot-triage.md +142 -0
  79. package/skills/poteto-mode/scripts/bootstrap.ts +30 -0
  80. package/skills/poteto-mode/scripts/bun.lock +67 -0
  81. package/skills/poteto-mode/scripts/check-plan.mjs +186 -0
  82. package/skills/poteto-mode/scripts/orch/orch.test.ts +634 -0
  83. package/skills/poteto-mode/scripts/orch/orch.ts +578 -0
  84. package/skills/poteto-mode/scripts/orch/store.ts +1607 -0
  85. package/skills/poteto-mode/scripts/package.json +16 -0
  86. package/skills/poteto-mode/scripts/watch-pr/cli.test.ts +224 -0
  87. package/skills/poteto-mode/scripts/watch-pr/cli.ts +223 -0
  88. package/skills/poteto-mode/scripts/watch-pr/fakes.test-helper.ts +118 -0
  89. package/skills/poteto-mode/scripts/watch-pr/github.test.ts +306 -0
  90. package/skills/poteto-mode/scripts/watch-pr/github.ts +699 -0
  91. package/skills/poteto-mode/scripts/watch-pr/policy.test.ts +420 -0
  92. package/skills/poteto-mode/scripts/watch-pr/policy.ts +832 -0
  93. package/skills/poteto-mode/scripts/watch-pr/render.ts +169 -0
  94. package/skills/poteto-mode/scripts/watch-pr/tsconfig.json +13 -0
  95. package/skills/poteto-mode/scripts/watch-pr/types.compile.ts +93 -0
  96. package/skills/poteto-mode/scripts/watch-pr/types.ts +401 -0
  97. package/skills/poteto-mode/scripts/watch-pr/watch-pr +6 -0
  98. package/skills/poteto-mode/scripts/worktree-audit.sh +89 -0
  99. package/skills/principle-boundary-discipline/SKILL.md +34 -0
  100. package/skills/principle-build-the-lever/SKILL.md +23 -0
  101. package/skills/principle-encode-lessons-in-structure/SKILL.md +31 -0
  102. package/skills/principle-exhaust-the-design-space/SKILL.md +21 -0
  103. package/skills/principle-experience-first/SKILL.md +19 -0
  104. package/skills/principle-fix-root-causes/SKILL.md +23 -0
  105. package/skills/principle-foundational-thinking/SKILL.md +21 -0
  106. package/skills/principle-guard-the-context-window/SKILL.md +17 -0
  107. package/skills/principle-laziness-protocol/SKILL.md +18 -0
  108. package/skills/principle-make-operations-idempotent/SKILL.md +24 -0
  109. package/skills/principle-migrate-callers-then-delete-legacy-apis/SKILL.md +22 -0
  110. package/skills/principle-minimize-reader-load/SKILL.md +23 -0
  111. package/skills/principle-model-the-domain/SKILL.md +26 -0
  112. package/skills/principle-never-block-on-the-human/SKILL.md +23 -0
  113. package/skills/principle-outcome-oriented-execution/SKILL.md +22 -0
  114. package/skills/principle-prove-it-works/SKILL.md +33 -0
  115. package/skills/principle-redesign-from-first-principles/SKILL.md +16 -0
  116. package/skills/principle-separate-before-serializing-shared-state/SKILL.md +16 -0
  117. package/skills/principle-sequence-verifiable-units/SKILL.md +22 -0
  118. package/skills/principle-subtract-before-you-add/SKILL.md +22 -0
  119. package/skills/principle-type-system-discipline/SKILL.md +31 -0
  120. package/skills/recall/SKILL.md +35 -0
  121. package/skills/reflect/SKILL.md +77 -0
  122. package/skills/reflect/references/divergent-reviewer.md +43 -0
  123. package/skills/reflect/references/judgment-reviewer.md +42 -0
  124. package/skills/reflect/references/synthesizer.md +56 -0
  125. package/skills/reflect/references/tooling-reviewer.md +57 -0
  126. package/skills/setup-pstack/SKILL.md +106 -0
  127. package/skills/show-me-your-work/SKILL.md +82 -0
  128. package/skills/show-me-your-work/references/decision-log-template.tsv +1 -0
  129. package/skills/show-me-your-work/scripts/log.sh +40 -0
  130. package/skills/swarm/SKILL.md +46 -0
  131. package/skills/tdd/SKILL.md +44 -0
  132. package/skills/teach/SKILL.md +21 -0
  133. package/skills/technical-writing/SKILL.md +130 -0
  134. package/skills/typescript-best-practices/SKILL.md +28 -0
  135. package/skills/typescript-best-practices/references/patterns.md +292 -0
  136. package/skills/unslop/SKILL.md +80 -0
  137. package/skills/why/SKILL.md +229 -0
  138. package/skills/why/references/epistemics.md +144 -0
  139. package/skills/why/references/investigator-prompt.md +103 -0
  140. package/skills/why/references/source-playbook.md +17 -0
  141. package/skills/why/references/sources/code-archaeology.md +88 -0
  142. package/skills/why/references/sources/databricks.md +70 -0
  143. package/skills/why/references/sources/datadog.md +99 -0
  144. package/skills/why/references/sources/incident-postmortem.md +15 -0
  145. package/skills/why/references/sources/linear.md +48 -0
  146. package/skills/why/references/sources/notion.md +55 -0
  147. package/skills/why/references/sources/sentry.md +100 -0
  148. package/skills/why/references/sources/slack.md +54 -0
  149. package/skills/why/references/synthesizer-prompt.md +135 -0
@@ -0,0 +1,71 @@
1
+ ---
2
+ name: arena
3
+ description: "Spawn N parallel candidates at the same task, pick a base, graft the strongest parts of the losers into it. Use for /arena, 'arena this', 'throw it in the arena', or when one attempt at a non-trivial artifact would lock in the wrong shape."
4
+ disable-model-invocation: true
5
+ ---
6
+
7
+ # Arena
8
+
9
+ Fan out N parallel attempts at the same task. Read every candidate end to end. Pick the strongest as the base. Graft the best ideas from the others into it. Verify the synthesized result.
10
+
11
+ ## Start
12
+
13
+ Open a todolist with one entry per phase before launching anything. The arena runs autonomously and the list keeps phases from silently disappearing.
14
+
15
+ 1. Frame
16
+ 2. Fan out
17
+ 3. Cross-judge
18
+ 4. Pick
19
+ 5. Graft
20
+ 6. Verify
21
+
22
+ ## Phase A: Frame
23
+
24
+ The N candidates will receive the same prompt, so the prompt is the contract. Get it right before spawning anything.
25
+
26
+ 1. State the artifact each candidate is producing.
27
+ 2. Derive the rubric. State what success looks like for *this* task, then turn it into 3-6 concrete gradeable criteria. Concrete: `Adds a --dry-run flag that skips writes`. Vague: `code is correct`. The rubric is the picker's tool in Phase D; candidates only see the task.
28
+ 3. Pick the runners. Use `arena runners` from the pstack model config (`/setup-pstack` writes it) when present. Otherwise default to one each on your judgment, precise-execution, and fast code models. Spawn more when the arena covers multiple design directions. Same model N times when the work is generation-bound rather than judgment-sensitive.
29
+ 4. Assign output paths. Each candidate writes to its own location (a git worktree where possible, otherwise `/tmp/arena-<slug>/candidate-<n>/`). N candidates writing to the same path is shared mutable state and fails the the **separate-before-serializing-shared-state** principle skill test.
30
+
31
+ ## Phase B: Fan out
32
+
33
+ Spawn all N subagents in one message with `run_in_background: true`, each with the task, the path to the shared grounding, its own output path, and instructions to produce both the artifact and a short rationale.
34
+
35
+ The rationale is mandatory. Without it, the parent cannot tell whether a candidate's structure is principled or accidental, which makes Phase E grafting unreliable. Each rationale names the alternatives the candidate considered and what it rejected.
36
+
37
+ If a candidate fails to produce output, proceed with N-1 and note the dropout in the synthesis record.
38
+
39
+ ## Phase C: Cross-judge
40
+
41
+ After all Phase B candidates complete, choose one model from the `arena cross-judge pool` in the pstack model config (`/setup-pstack` writes it) when present. Otherwise use one of each tier: judgment, precise-execution, fast code. Prefer a different model family from the parent's. Spawn one read-only judge subagent on that model. It sees the rubric and the candidates by path label, scores each criterion, and recommends a base with rationale. It runs in parallel with the parent's reading in Phase D, not with the candidates themselves. Spawning while candidates are still writing means the judge sees partial or empty outputs and reports them as dropouts.
42
+
43
+ ## Phase D: Pick a base
44
+
45
+ Read every candidate end to end before picking. Skimming N candidates surfaces only the candidate whose surface looks most familiar.
46
+
47
+ Score each candidate against the rubric criterion by criterion, not on holistic feel. Compare against the cross-judge. Agreement on the base confirms the pick. Disagreement means one of you is biased or the rubric was ambiguous. Read both rationales before deciding.
48
+
49
+ Pick the base on which candidate a future maintainer can extend most easily without breaking invariants. Prefer the cleaner boundary or smaller surface area when two feel tied, per the Laziness Protocol.
50
+
51
+ Record the pick and the reason in a short synthesis note alongside the base artifact, including the cross-judge's verdict.
52
+
53
+ ## Phase E: Graft
54
+
55
+ Walk each losing candidate once more and identify what is worth porting into the base. The signal is usually one or two things per candidate, not most of it.
56
+
57
+ Fold each graft in by hand, per the **redesign-from-first-principles** principle skill. Don't paste mechanically. The result has to remain coherent under one mental model.
58
+
59
+ Record what was grafted, from which candidate, and what was rejected and why. The rejection notes are the highest-signal part of the record. Future readers learn from what you considered and dropped, not just what you kept.
60
+
61
+ When N candidates converge on the same shape, that is a strong agreement signal. Note the convergence in the record and ship the consensus shape. No graft is needed. When N candidates wildly diverge, Phase A was under-specified. Reframe and re-run rather than averaging the divergence.
62
+
63
+ ## Phase F: Verify
64
+
65
+ The synthesized artifact has to hold up under the same scrutiny as any other output, per the **prove-it-works** principle skill. The arena does not earn you a pass.
66
+
67
+ If verification surfaces a problem the arena did not catch, either Phase A was wrong (re-frame and re-run) or one candidate caught it and you missed the graft (go back to Phase E). Don't paper over.
68
+
69
+ ## Outputs
70
+
71
+ One synthesized artifact. One short synthesis note alongside, naming the base, the grafts (with source candidate), the rejections, the dropouts if any, and the verification result.
@@ -0,0 +1,109 @@
1
+ ---
2
+ name: automate-me
3
+ description: "Use for \"automate me\", \"create/update/refresh my -mode skill\", \"turn/capture my preferences or working style into a skill\", or wanting agents to follow how the user works. Drafts or revises a personal -mode skill from the authoring-a-skill playbook + unslop, optionally pulling fresh evidence from recent transcripts."
4
+ disable-model-invocation: true
5
+ ---
6
+
7
+ # Automate me
8
+
9
+ A guided flow for turning the user's working conventions into a skill agents will follow. The output is one `-mode` skill tailored to them (e.g. `jay-mode`, `priya-mode`).
10
+
11
+ This skill orchestrates three passes: an inline mining pass (see step 1), the **Authoring a skill** playbook (`poteto-mode/playbooks/authoring-a-skill.md`) for the write-up, and the **unslop** skill for prose discipline. It sequences them; it doesn't replace them.
12
+
13
+ ## Flow
14
+
15
+ ### 0. Check for an existing skill
16
+
17
+ Look recursively for `*-mode/SKILL.md` under the host's skill roots (`.claude/skills/` and `~/.claude/skills/` on Claude Code, `.agents/skills/` and `~/.agents/skills/` on Codex) matching the user's handle. Mode skills can live in a personal category directory (`.claude/skills/<handle>/`), not only at the top level. If one exists, confirm intent with your host's structured-question tool (unless they already said "update my skill" or similar):
18
+
19
+ - Update the existing skill (default for repeat runs)
20
+ - Start fresh (rare; ask why before doing it)
21
+
22
+ Update mode changes the rest of the flow:
23
+ - Step 1 mines only history since the skill was last edited (`git log -1 --format=%cI <path>`).
24
+ - Step 2 asks what's changed or missing, not what to capture from zero.
25
+ - Step 4 edits the existing file in place. Preserve sections the user hasn't contradicted; revise ones with new evidence; add new sections only for genuinely new rules.
26
+
27
+ ### 1. Mine their history
28
+
29
+ Locate this workspace's transcripts before fanning out. They live in your host's transcript store. On Claude Code that is `~/.claude/projects/<slug>/<uuid>.jsonl`, where `<slug>` is the absolute workspace path with every `/` turned into `-` (so `/Users/you/proj` becomes `-Users-you-proj`, leading dash included; compute it with `pwd | tr / -`). On Codex it is `~/.codex/sessions/<yyyy>/<mm>/<dd>/rollout-*.jsonl`, which is not partitioned by workspace, so filter by the session's own cwd. Every line is one chat message. Scope to this workspace; never sweep the whole store, that reads private chats from unrelated projects.
30
+
31
+ Survey recent agent conversations within that scope for recurring patterns. Run multiple parallel subagents across slices of history (e.g. last 2-4 weeks, split into 3 slices so each has enough material). Each slice mining subagent reads transcripts from the workspace-scoped path the parent provides, looks for the signals below, and returns a short structured list of patterns it saw with evidence pointers. Default signals worth hunting:
32
+
33
+ - Response preferences (length, tone, format, "dumb it down" corrections)
34
+ - Delegation habits (subagents, models, specialized workflows, parallelism)
35
+ - Verification posture (what "done" means; unit tests vs live repro; reviewers)
36
+ - Code and prose discipline (style, principles cited, lint/format tools)
37
+ - Process conventions (worktrees, commits, PRs, review/merge tooling)
38
+ - Meta preferences (fixing skills mid-task, proposing new ones)
39
+
40
+ Cross-check across slices before elevating a signal. Patterns seen in 2+ slices are high-confidence; lone signals are weak and usually get dropped.
41
+
42
+ ### 2. Ask the user directly
43
+
44
+ Mining misses intent that hasn't come up yet. Use the `AskQuestion` tool (structured multi-choice) rather than asking the user to type from scratch. Lower cognitive load, higher hit rate.
45
+
46
+ Shape: one or two questions with 4-6 options each, `allow_multiple: true` for category questions. Start broad ("Which areas matter most?"), then follow up on selected areas with specific options. After the structured rounds, one free-form chat question catches anything the options missed.
47
+
48
+ Don't dump 20 questions. Two structured rounds plus one open question is usually enough.
49
+
50
+ ### 3. Cluster findings
51
+
52
+ Group the combined signals into sections. Common ones (use only what applies):
53
+
54
+ - **Response style**: length, tone, format.
55
+ - **Autonomy**: how much to do without asking; MCP tool use.
56
+ - **Understand first**: which skills to reach for when scoping or investigating a change.
57
+ - **Subagents**: default, parallelism, model-to-task, specialized workflows.
58
+ - **Prose / code discipline**: principles, lint tools, style guides.
59
+ - **Review and verify**: repro posture, verification skills, live-testing tools.
60
+ - **Process**: git worktrees, commits, PRs, review/merge tooling.
61
+ - **Skills**: skill-authoring habits, fix-the-skill-first, proposing new skills.
62
+
63
+ The **poteto-mode** skill shows the shape. Read it for granularity. Don't copy its content; the user's rules are not the same as poteto-mode's.
64
+
65
+ ### 4. Draft the skill
66
+
67
+ Author the skill per the **Authoring a skill** playbook (`poteto-mode/playbooks/authoring-a-skill.md`). Placement:
68
+
69
+ - Path: preserve an existing mode skill's category. For a new mode, use `.claude/skills/<handle>/<handle>-mode/SKILL.md` when the repo has an established personal category for that handle; otherwise default to `.claude/skills/<handle>-mode/SKILL.md` in the project (or `~/.claude/skills/<handle>-mode/` if the user prefers a personal skill).
70
+ - Handle: the user's first name or chosen identifier.
71
+ - Frontmatter `description`: trigger on their name + `/<handle>-mode` + "work in their style", not on generic keywords like "write code" or "review PR".
72
+ - Frontmatter formatting: `name` and `description` only, both plain YAML scalars. Keep `description` as one YAML scalar; quote it or use `description: >-` with indented continuation lines when punctuation or wrapping requires it.
73
+ - Frontmatter `disable-model-invocation: true` by default. Mode skills are heavy and opinionated; they should only apply when the user explicitly invokes them (by name or slash command), not auto-trigger on description matching. Opt out only if the user explicitly wants their mode to apply on every turn.
74
+
75
+ ### 5. Iterate on prose
76
+
77
+ Apply the **unslop** skill and the **technical-writing** skill to every line. Both apply to any agent-read prose, not just skills.
78
+
79
+ Show the draft to the user and take feedback. Expect multiple iterations. Cut ruthlessly; a mode skill is not a manual.
80
+
81
+ ### 6. Land it
82
+
83
+ Work in a worktree off main. Commit and open a PR so the user can review it. Don't push to main directly.
84
+
85
+ ## Guardrails
86
+
87
+ - **Don't overfit to one conversation.** A preference stated once and contradicted another time is noise. Require multiple instances before codifying it.
88
+ - **Don't be clever.** Restating other skills' contents, inventing metaphors, or writing "poetic" prose for an agent reader is cost without benefit. Keep it operational.
89
+ - **Reference, don't inline.** Other skills the user relies on should appear as path references, not pasted excerpts. Same for any principle docs they maintain elsewhere.
90
+ - **Keep sections minimal.** Only add a section if the user has a specific, non-default rule there. "Communicate clearly" is not a section. "Short paragraphs. Tables when comparing options. Bullets only when items are genuinely parallel." is.
91
+ - **Name conventions generic.** Use "the user" or "the human" in imperatives, not the author's first name. Others may read or adopt the skill.
92
+ - **Don't force symmetry.** If a user has no process rules worth writing down, skip the Process section entirely. Sparse is fine; bloated is not.
93
+
94
+ ## Evaluation
95
+
96
+ A `-mode` skill is subjective output. A blinded test/iterate benchmark loop isn't useful here. Vibe-check with the user: does it read like them? Did it miss anything? Then ship.
97
+
98
+ Run a description-optimization loop only if the skill's trigger accuracy turns out to be a problem in practice.
99
+
100
+ ## When not to use
101
+
102
+ - User wants a task-specific skill (not working conventions): the **Authoring a skill** playbook alone, no mining required.
103
+ - User wants to capture one narrow workflow (e.g. "how I write commit messages"): that's a regular skill, not a mode skill.
104
+
105
+ ## Reference files
106
+
107
+ - The **poteto-mode** skill: example of the output shape.
108
+ - The **unslop** skill: prose discipline for every line.
109
+ - The **Authoring a skill** playbook (`poteto-mode/playbooks/authoring-a-skill.md`): skill authoring process and writing guidelines.
@@ -0,0 +1,50 @@
1
+ ---
2
+ name: blast-radius
3
+ description: "Find what a change could break somewhere else before it ships, beyond the diff, and prove the one fact it's safe because of by running real code instead of writing it up. Use for 'blast radius of X', 'what could this break', or reviewing a small diff you don't trust."
4
+ disable-model-invocation: true
5
+ ---
6
+
7
+ # Blast radius
8
+
9
+ Find what a change breaks somewhere else, before it ships. Use for "blast radius of X", "what could this break", or reviewing a small diff you don't trust yet.
10
+
11
+ Companion to `how` and `why`. `how` tells you what the code does. `why` tells you why it's shaped that way. Blast radius tells you what it breaks somewhere else.
12
+
13
+ Listing the callers is not the job. The agent can grep those in a second. The job is the breakage grep won't show you.
14
+
15
+ ## Don't trust your own writeup
16
+
17
+ A blast-radius writeup that sounds right is worthless. It reads as convincing whether or not it's true, and that is the trap you are walking into. So don't hand back the writeup. Find the one or two facts the whole thing depends on and prove them by running code. Words are where you start, not what you ship.
18
+
19
+ ### How sure are you
20
+
21
+ For each fact the change's safety depends on, get it as far down this list as is cheap, and say where it stopped.
22
+
23
+ 1. You said so. Worthless on its own.
24
+ 2. You pointed at the line. A real `file:line`, or the library's own source.
25
+ 3. You showed the bad case can't happen. You walked the failure step by step and it doesn't reach.
26
+ 4. You ran it. A script or test that calls the real code and fails loud if you're wrong.
27
+ 5. You reproduced it in the running app.
28
+
29
+ Any safety fact you can't get to step 4, say so out loud. Don't write it up as settled. Step 4 is usually one small script that imports the same library the app ships and calls the exact function you're worried about.
30
+
31
+ ## Steps
32
+
33
+ 1. Read the change. The diff, the symbols it adds, changes, and deletes, and what it now does differently, including the part the diff doesn't spell out. Use `why` step 2 to pull the PR and commits.
34
+ 2. Find the one fact it's safe because of. Most changes that look scary are safe because of a single fact, like "this call only drops already-dead cache entries and does nothing else". Find that fact. If it holds, most of the scary cases die at once. Spend your time here, not on a long list of maybes.
35
+ 3. Look where grep stops. Read the source of the library you call, and check its pinned version and any local patch. Work out when things run: microtasks, unmount and teardown, Solid versus React. Follow what a symbol search misses: the JSON an API returns, a DB column, a wire format, another language reading the same bytes, a feature flag, code three hops downstream.
36
+ 4. Be honest about each risk. Give it a real chance of happening and a real cost if it does. Keep the risks you confirmed; list the ones you checked and cleared separately. Same rules as `why`. Cite a real `file:line`, a search that finds nothing is still an answer, and never make up a caller or an API.
37
+ 5. Prove the one fact. Write a script or test that runs the real code, run it, and paste what happened. If you can't prove it cheaply, mark it unproven. Don't round up.
38
+ 6. For a big or wide change, run it as an `arena`. Ask several models the same question and merge the answers. Different models catch different real bugs.
39
+
40
+ ## What to hand back
41
+
42
+ - **What it does.** What changed, including the part that isn't obvious.
43
+ - **The one fact it's safe because of.** State it, say which step you got it to, and show the proof. If you couldn't prove it, write unproven.
44
+ - **Risks.** Only the real ones. Each names how it breaks, the `file:line`, how likely and how bad, and how to check. Paste the proof for the ones that matter.
45
+ - **Cleared.** What you checked and why it's fine.
46
+ - **Before you merge.** The cheapest test or repro that catches the real bug, including the script you wrote.
47
+
48
+ Write it through `unslop`, cite real code, and strip anything private before it goes anywhere public.
49
+
50
+ **Reply:** the writeup above, with the one safety fact either proven or marked unproven.
@@ -0,0 +1,7 @@
1
+ ---
2
+ name: bro
3
+ description: Restate the last message in plain human language, with no jargon.
4
+ disable-model-invocation: true
5
+ ---
6
+
7
+ Restate your last message. Stop using jargon and speak coherently. State it more simply and concisely, like one human talking to another.
@@ -0,0 +1,44 @@
1
+ ---
2
+ name: create-verification-skill
3
+ description: "Generate a project-local verification skill that drives your app the way a user does — any language, framework, or platform. Use for /create-verification-skill, \"make a control skill for this repo\", or when a project has no scripted way to prove UI/CLI/service behavior."
4
+ disable-model-invocation: true
5
+ ---
6
+
7
+ # Create a verification skill
8
+
9
+ Every serious project needs a scripted way to drive the real app and prove behavior: launch it, exercise a feature the way a user would, and capture evidence. This skill generates that as a project-local skill (`.claude/skills/verify-<app>/` (`.agents/skills/verify-<app>/` on Codex)) tailored to the repo. You write the generator's output for the next agent, not for a human: it will be read cold, mid-task, by an agent that has never seen the app.
10
+
11
+ ## 1. Interview the repo, not the user
12
+
13
+ Answer these from the codebase and only ask the user what you cannot observe:
14
+
15
+ - **Surface:** what does a user actually touch? A web UI, a CLI/TUI, a desktop app, an API, a mobile app, a library? A repo can have several; pick the primary one and note the rest.
16
+ - **Run:** how does the app start locally? Prefer the repo's own documented dev command (package scripts, Makefile, README quickstart). Note ports, env vars, seed data, auth.
17
+ - **Drive:** how can an agent interact with it programmatically? Existing harnesses first — Playwright/Cypress specs, expect scripts, PTY helpers, curl-able endpoints, a debug port. Only then pick a generic recipe: browser/CDP for web and Electron, a tmux/PTY harness for CLI/TUI, plain HTTP for services.
18
+ - **Observe:** what evidence can be captured? Screenshots, terminal transcripts, response bodies, logs, exit codes, DB state.
19
+ - **Isolate:** can two instances run side by side (ports, data dirs, profiles)? If not, say so in the generated skill: refusing to double-drive a shared instance beats corrupting the user's session.
20
+
21
+ If the checkout doesn't build or start as-is, fix that first (or report it precisely) before generating; a skill written against a broken base teaches wrong steps. When an irrelevant missing asset blocks startup (a static dir the API never serves, a sample config), the generated skill may create it, clearly marked as verification scaffolding, and remove it in cleanup.
22
+
23
+ ## 2. Generate the skill
24
+
25
+ Write `.claude/skills/verify-<app>/SKILL.md` (`.agents/skills/` on Codex) with YAML frontmatter (`name: verify-<app>` and a `description` that names the app, the surface, and when to reach for it — without frontmatter the skill never registers) and these sections, each grounded in what the interview actually found (no placeholders left):
26
+
27
+ - **Launch:** the exact command that starts the app for verification, and how to tell it's ready (a log line, a port answering, a prompt). Include teardown. For a short-lived CLI or TUI there is no server to keep alive: launch means build the binary (or install deps) once, then start each drive in its own isolated PTY or tmux session.
28
+ - **Doctor:** one read-only check that answers "is this instance worth driving?" — process up, right version/build, port owned by us, auth valid. An agent runs this first whenever anything looks off.
29
+ - **Drive:** the harness recipe with real selectors/commands from this repo, not examples. Prefer stable handles (ARIA labels, data attributes, prompt strings, route paths) over coordinates and tab order.
30
+ - **Evidence:** what to capture for a proof and where it goes. State the proof standards: exercise the real user path, not internal setters or test-only endpoints; capture the action and the resulting state, not just the final screen; verify side effects (files written, rows inserted, messages sent) alongside what's visible; mocks only where a production boundary already isolates the external system. When the safe path is a dry-run or test mode, verify what it actually skips by observing (files, network, git refs) rather than trusting its name: some dry-runs still touch the network or open a browser.
31
+ - **Cleanup:** how to tear down instances the run created. Never kill by process name; kill what you started. Cleanup removes instances and scratch state, never the evidence: proof artifacts survive the teardown, in a location the skill names.
32
+ - **Helpers:** any script the skill ships is executable and its invocation is shown in the skill body. A helper the reader has to reverse-engineer is not a helper.
33
+
34
+ ## 3. Seed the feature map
35
+
36
+ Create `verify-<app>/features/README.md` plus one file per user-facing feature you can identify (aim for the top 3-5 to start, from routes, commands, menus, or docs). Follow the shape in [`references/feature-map-example/`](references/feature-map-example/), with a README index and one file per feature. Each file answers, from the user's point of view: what the feature is, how to reach it, how to drive it with the harness, and what observable end state proves it works. The four H2s are `Sub-features`, `How to get to it (user POV)`, `Driving it with <harness>`, and `Gotchas`. The map is the repo's maintained verification source; a proof that drives one convenient entry point is incomplete when the map lists others.
37
+
38
+ ## 4. Prove the generated skill before handing it over
39
+
40
+ Run its own instructions end to end once: launch, doctor, drive ONE mapped feature (one is enough; the map exists so later runs can cover the rest), capture evidence, clean up. After cleanup, confirm the evidence still exists at the named location — a cleanup that eats the proof fails this step. Fix what fails, and run the generated cleanup after every failed iteration too, so broken attempts don't strand processes and ports. A generated skill that was never executed is a draft, not a deliverable.
41
+
42
+ ## 5. Offer the maintenance loop
43
+
44
+ Point the user at `/maintain-verification-skill` for keeping the map honest as the app changes. Suggest a cadence only if they ask.
@@ -0,0 +1,47 @@
1
+ # Notes verification map
2
+
3
+ This directory is the maintained source for verifying the user-facing behavior of Notes. Read the index before driving the app, then use the matching feature file as the recipe.
4
+
5
+ ## Baseline preconditions
6
+
7
+ - Launch Notes at `http://127.0.0.1:4173` with a disposable data directory.
8
+ - Set `NOTES_DATA_DIR=/tmp/notes-verify-$RUN_ID` so concurrent runs do not share state.
9
+ - Seed notes titled `Quarterly plan` and `Grocery list`.
10
+ - Put `control-notes` and the `notes` CLI on `PATH`.
11
+ - Run `control-notes doctor` and require the expected URL, data directory, and build revision.
12
+ - Never drive an instance that was not started by this verification run.
13
+
14
+ ## Driving conventions
15
+
16
+ - Start every recipe from the baseline state unless its preconditions say otherwise.
17
+ - Prefer ARIA roles and accessible names over CSS selectors or DOM position.
18
+ - Treat every command as literal. Keep quoted names and flags unchanged.
19
+ - Run browser actions through `control-notes browser`.
20
+ - Run terminal actions through `control-notes cli -- <command>`.
21
+ - Restore seeded data after a mutation. Do not remove proof artifacts during cleanup.
22
+
23
+ ## Proof and skip reporting
24
+
25
+ - Capture the user action and the resulting state, not only the final screen.
26
+ - UI proof includes an ARIA snapshot and a screenshot with the app identity visible.
27
+ - CLI proof includes the command, stdout, stderr, and exit code.
28
+ - Mutation proof includes a read-only second view of the stored value.
29
+ - Record the feature ID and entry point used with every artifact.
30
+ - Report an unreachable path with the attempted command and the unmet precondition.
31
+ - Do not report a skipped entry point as verified through a different path.
32
+
33
+ ## Feature entry contract
34
+
35
+ Each feature file starts with an H1 title and one paragraph describing the user-visible behavior. It then uses exactly four H2 sections in this order.
36
+
37
+ 1. `Sub-features` lists short IDs with one line for each behavior.
38
+ 2. `How to get to it (user POV)` lists every user entry point.
39
+ 3. `Driving it with <harness>` starts with `Preconditions:` and uses labeled bullets that pair each user action with an exact command and observable result.
40
+ 4. `Gotchas` lists traps that can waste or invalidate a verification run.
41
+
42
+ Keep implementation details out of the map. Name only user paths, stable handles, required state, commands, and observable proof.
43
+
44
+ ## Features
45
+
46
+ - [Create a note](./create-note.md) covers browser and CLI creation, cancellation, persistence, and cleanup.
47
+ - [Search notes](./search.md) covers toolbar, keyboard, and CLI search with matching, empty, and clear states.
@@ -0,0 +1,39 @@
1
+ # Create a note
2
+
3
+ Create note lets a user save a titled note from the browser or CLI, cancel an unfinished draft, and confirm the saved note from a second user-facing view.
4
+
5
+ ## Sub-features
6
+
7
+ - `create-open` opens a blank editor from each browser entry point.
8
+ - `create-save` persists a title and body.
9
+ - `create-cancel` discards an unfinished browser draft.
10
+ - `create-cli` creates the same note shape from the terminal.
11
+
12
+ ## How to get to it (user POV)
13
+
14
+ - Choose the `New note` button in the browser toolbar.
15
+ - Press `n` in the browser while focus is outside an editable field.
16
+ - Run `notes create --title <title> --body <body>` in a terminal.
17
+
18
+ ## Driving it with control-notes
19
+
20
+ Preconditions:
21
+
22
+ - Notes is healthy at `http://127.0.0.1:4173`.
23
+ - No note is titled `Release checklist`.
24
+ - `control-notes doctor` reports the expected URL and disposable data directory.
25
+
26
+ - **Open editor.** Choose `New note`. Run `control-notes browser click --role button --name "New note"`. A form named `Note editor` appears with focus in the `Title` textbox.
27
+ - **Enter content.** Type the title and body. Run `control-notes browser fill --role textbox --name "Title" --value "Release checklist"` and `control-notes browser fill --role textbox --name "Body" --value "Tag and publish"`. The `Save note` button becomes enabled.
28
+ - **Save note.** Choose `Save note`. Run `control-notes browser click --role button --name "Save note"`. A status named `Note saved` appears and the heading reads `Release checklist`.
29
+ - **Confirm persistence.** Return to the note list and reopen the note. Run `control-notes browser click --role link --name "All notes"` and `control-notes browser click --role link --name "Release checklist"`. The editor shows both saved values.
30
+ - **Cancel draft.** Open a new note, enter `Discard me`, and choose `Cancel`. Run `control-notes browser click --role button --name "New note"`, `control-notes browser fill --role textbox --name "Title" --value "Discard me"`, and `control-notes browser click --role button --name "Cancel"`. The note list returns and has no `Discard me` link.
31
+ - **CLI entry.** Create a second note. Run `control-notes cli -- notes create --title "CLI note" --body "Created from terminal" --format json`. Exit code `0` and stdout contain the new note ID and title.
32
+ - **Proof.** Reopen both saved notes from `All notes`. Run `control-notes browser snapshot --aria --path artifacts/create-note/list.aria.txt` and `control-notes browser screenshot --path artifacts/create-note/list.png`. The artifacts show `Release checklist` and `CLI note`.
33
+
34
+ ## Gotchas
35
+
36
+ - Pressing `n` while a textbox has focus types the character instead of opening a new editor.
37
+ - Titles are trimmed on save. Assert the rendered title, not the draft input value.
38
+ - A save status alone is insufficient proof. Reopen the note from the list.
39
+ - Remove `Release checklist` and `CLI note` during fixture cleanup, but retain their proof artifacts.
@@ -0,0 +1,45 @@
1
+ # Search notes
2
+
3
+ Search lets a user find notes by title or body text, inspect a matching note, and distinguish no matches from an unavailable search.
4
+
5
+ ## Sub-features
6
+
7
+ - `search-open` opens search from each supported browser entry point.
8
+ - `search-match` returns title and body matches without changing note data.
9
+ - `search-open-result` opens a result in the note editor.
10
+ - `search-empty` shows a complete empty state for a query with no matches.
11
+ - `search-clear` removes the query and restores the recent-notes view.
12
+ - `search-cli` returns the same matching notes from the terminal.
13
+
14
+ ## How to get to it (user POV)
15
+
16
+ - Choose the `Search` button in the browser toolbar.
17
+ - Press `/` in the browser while focus is outside an editable field.
18
+ - Run `notes search <query>` in a terminal.
19
+
20
+ ## Driving it with control-notes
21
+
22
+ Preconditions:
23
+
24
+ - Notes is healthy at `http://127.0.0.1:4173`.
25
+ - The disposable data directory contains `Quarterly plan` with body text `Draft budget`.
26
+ - `control-notes doctor` reports the expected URL and data directory.
27
+
28
+ - **Toolbar entry.** Choose the `Search` button. Run `control-notes browser click --role button --name "Search"`. A dialog named `Search notes` appears with focus in its searchbox.
29
+ - **Keyboard entry.** Close the dialog, focus the page, and press `/`. Run `control-notes browser press --key "/"`. The same dialog appears and the page does not insert a slash.
30
+ - **Title match.** Type `quarterly`. Run `control-notes browser fill --role searchbox --name "Search notes" --value "quarterly"`. The `Search results` list contains `Quarterly plan` and does not contain `Grocery list`.
31
+ - **Body match.** Replace the query with `budget`. Run `control-notes browser fill --role searchbox --name "Search notes" --value "budget"`. The result `Quarterly plan` remains visible with a body-match excerpt.
32
+ - **Open result.** Choose `Quarterly plan`. Run `control-notes browser click --role link --name "Quarterly plan"`. The dialog closes and the editor heading reads `Quarterly plan`.
33
+ - **Empty state.** Reopen search and enter `volcano`. Run `control-notes browser fill --role searchbox --name "Search notes" --value "volcano"`. A status named `No matching notes` appears after search completes.
34
+ - **Clear query.** Choose `Clear search`. Run `control-notes browser click --role button --name "Clear search"`. The searchbox is empty and the `Recent notes` region replaces the result list.
35
+ - **CLI match.** Search from the terminal. Run `control-notes cli -- notes search "quarterly" --format json`. Exit code `0` and stdout contain one object whose title is `Quarterly plan`.
36
+ - **CLI miss.** Search for an absent value. Run `control-notes cli -- notes search "volcano" --format json`. Exit code `0` and stdout are `[]`.
37
+ - **Proof.** Capture the populated result state. Run `control-notes browser snapshot --aria --path artifacts/search/results.aria.txt` and `control-notes browser screenshot --path artifacts/search/results.png`. Both artifacts identify Notes, the query, and `Quarterly plan`.
38
+
39
+ ## Gotchas
40
+
41
+ - Pressing `/` while the editor or searchbox has focus inserts text instead of opening search.
42
+ - Results update after a short debounce. Wait for the results list or empty status, not a fixed sleep.
43
+ - Archived notes are excluded unless the user enables `Include archived`.
44
+ - The CLI defaults to human-readable output. Use `--format json` for stable assertions.
45
+ - Opening a result changes browser state. Reopen search before proving another query.
@@ -0,0 +1,55 @@
1
+ ---
2
+ name: figure-it-out
3
+ description: "Design an auditable playbook when no narrower one fits: a large migration, an ambitious multi-part change, or work a human reviews after stepping away. Scales rigor to the task, runs a hypothesis loop, and logs decisions via show-me-your-work. Use for /figure-it-out, 'figure it out', a large migration, or when no narrower playbook applies."
4
+ disable-model-invocation: true
5
+ ---
6
+
7
+ # Figure it out
8
+
9
+ When the task matches no playbook, design one. The deliverable before any code is the workflow itself: a sequence of phases that scales rigor to the task, runs the scientific method, and leaves a decision trail a human can audit after stepping away. Bias toward more rigor. The cost of building the wrong thing dwarfs the cost of being careful.
10
+
11
+ Don't reinvent a playbook you already have. A focused single-unit task that matches Bug fix, Perf, Feature, Visual parity, Eval, or Multi-phase plan routes there. But a large or cross-cutting version of one (a migration across many call sites, an ambitious multi-part change), or work the user reviews after stepping away, belongs here even though a single-unit version would be a Feature. The rigor and the audit trail are the point.
12
+
13
+ ## Start
14
+
15
+ Open a todolist whose first item is to read the Principles section of the **poteto-mode** skill. Then add the phases below as todos.
16
+
17
+ ## Phase A: Frame
18
+
19
+ Ground first, then commit. Don't start the run until you can state:
20
+
21
+ - The definition of done as a falsifiable predicate (the **prove-it-works** principle skill). "Done well" has to be checkable.
22
+ - Scope, quantified: rough units and effort, plus the blockers grounding surfaced. Raise them before spending hours, not after fifty doomed commits.
23
+ - The rigor level, biased high. One-way doors and high blast radius get more; reversible low-stakes steps get less. Rigor is gates and artifacts, not "try harder".
24
+
25
+ Present the framing and tradeoffs before committing to a long run. Reversible work proceeds (the **never-block-on-the-human** principle skill), but a multi-hour run earns one checkpoint.
26
+
27
+ ## Phase B: Design the workflow
28
+
29
+ Decompose into atomic, independently-landable units. Sequence riskiest-unknown-first so option value stays high. Scaffold and verification come before features (the **foundational-thinking** principle skill).
30
+
31
+ - Build the verification harness before the work, with the baseline captured from the pre-change state, so the check reads as "old value vs new value".
32
+ - For one-way-door design decisions, run the **architect** skill (it runs **arena**) with diverse, isolated, opinionated candidates and a read-only judge on a different model family. Skip it for mechanical work whose shape is already concrete. A second arena over a settled design is over-engineering (the **laziness-protocol** principle skill).
33
+ - Decide what fans out. Parallelize only across genuine seams, and give each worker its own worktree or branch (the **separate-before-serializing-shared-state** principle skill). Don't over-fan.
34
+ - Write the designed phase list down. That list is what the human reviews.
35
+
36
+ Then put the design into motion. Add its steps to the todolist as concrete items, after the Phase C entry and before Phase D. Run each under the Phase C loop discipline, and weave the Phase D log through them, a row as each step lands, rather than saving the whole trail for the end.
37
+
38
+ ## Phase C: Run the loop
39
+
40
+ Each unit is an experiment: state the hypothesis, make the smallest change, measure against the predicate on the real artifact, keep it if it advanced, revert it if it didn't.
41
+ Apply the **sequence-verifiable-units** principle skill, verifying each unit before starting the next instead of batching checks at the end.
42
+
43
+ - Verify by inspecting the artifact, never a self-report. When something passes too easily, suspect the observation method before the system. A blank screenshot passes a lazy gate.
44
+ - Pair delegated work with a judge and audit the delegates' artifacts yourself before trusting them. If a worker games the gate, reset and harden the contract. If the gate itself is wrong, fix the gate in its own change rather than routing around it.
45
+ - A verdict is VERIFIED, NOT VERIFIED, or INCONCLUSIVE. Inconclusive is not a pass. Don't hide a negative.
46
+
47
+ ## Phase D: Keep the audit trail
48
+
49
+ Log the run via the **show-me-your-work** skill, one canonical TSV with a row per decision and per unit, evidence as links. figure-it-out's work is usually ambitious enough to commit the trail so the reviewer can read it in the PR; commit it when confidence has to be shown. Prefer evidence produced by committed scripts so a reviewer can re-run it. The trail plus the diff is what lets the human come back and trust the work.
50
+
51
+ ## Phase E: Verify and hand back
52
+
53
+ Check the whole against the Phase A predicate on the real product, not just the harness. Encode any recurring correction as a gate, a lint rule, a check, or a script, so the win can't silently regress (the **encode-lessons-in-structure** principle skill).
54
+
55
+ **Reply:** the playbook you designed, the rigor level and why, the decision-trail path, what's verified against the predicate, and what's still open.
@@ -0,0 +1,134 @@
1
+ ---
2
+ name: how
3
+ description: "Use for \"how does X work\", code walkthroughs before changing something, and placement / ownership / layering questions (\"where should this live\", \"which package owns this\", \"is this the right layer\"). Explains subsystem architecture, runtime flow, onboarding mental models. Can critique architecture. Use why for motivation."
4
+ ---
5
+
6
+ # How
7
+
8
+ Explore the codebase to answer "how does X work?" questions. Produce clear architectural explanations at the level of a senior engineer onboarding onto a subsystem. Enough to build a working mental model, not annotated source code.
9
+
10
+ Two modes:
11
+
12
+ 1. **Explain** (default). Explore the codebase and produce a clear explanation
13
+ 2. **Critique.** Explain first, then spawn multiple models to independently identify architectural issues
14
+
15
+ ## Explain Mode
16
+
17
+ ### Step 1. Understand the Question and Assess Complexity
18
+
19
+ Parse what the user is asking about:
20
+
21
+ - "How does the rate limiter work?", a subsystem
22
+ - "How do we handle billing for on-demand usage?", a feature flow
23
+ - "How is the auth service structured?", an architectural overview
24
+ - "Walk me through what happens when a user submits a form", a runtime trace
25
+
26
+ Identify the scope. If ambiguous, state your best-guess interpretation before exploring. Don't ask. Let the user redirect if you're off.
27
+
28
+ **Assess complexity to decide the approach:**
29
+
30
+ - **Simple** (a single module, a small utility, a narrow question like "how does function X work"): skip explorer agents; the explainer explores and explains in a single pass. Go to Step 2b.
31
+ - **Complex** (a subsystem spanning multiple files/services, a cross-cutting feature, a full architectural overview): spawn parallel explorer agents first, then hand off to the explainer. Go to Step 2a.
32
+
33
+ When in doubt, lean simple. You can always spawn explorers if the explainer hits a wall.
34
+
35
+ ### Step 2a. Explore (complex questions only)
36
+
37
+ Decompose the question into 2-4 parallel exploration angles, each a distinct slice of the subsystem so explorers don't duplicate work. Example split for "how does the rate limiter work?":
38
+
39
+ - Explorer 1: data model and state management
40
+ - Explorer 2: request path and enforcement
41
+ - Explorer 3: configuration and metrics infrastructure
42
+
43
+ The right decomposition depends on the question. Use your judgment. Narrow questions: 2 explorers is fine. Broad subsystems: up to 4.
44
+
45
+ Spawn all explorers in a single message:
46
+
47
+ - a general-purpose subagent
48
+ - `model`: your configured how-explorer model (defaults to your fast code model)
49
+ - read-only: spawn a subagent that cannot edit or write files. It still needs MCP access, so "don't change anything" is enforced by the harness rather than by the prompt. On Claude Code that is `subagent_type: Explore`.
50
+
51
+ Each explorer gets the same base prompt from `references/explorer-prompt.md` plus a specific exploration angle naming its slice. Each explorer should:
52
+ - Start broad: Glob for relevant directories, Grep for key types/interfaces/class names
53
+ - Follow the thread: from an entry point, trace the call chain (callers, callees, data flow, type definitions)
54
+ - Read the actual code, don't guess from file names
55
+ - Stop when it can describe the full path from input to output (or trigger to effect) without hand-waving any step
56
+ - Note things that are surprising, non-obvious, or that a newcomer would get wrong
57
+
58
+ Each explorer returns structured findings: components found, flow traced, files read, anything non-obvious. Overlap between explorers is fine; the explainer reconciles.
59
+
60
+ Then proceed to Step 3.
61
+
62
+ ### Step 2b. Direct Explain (simple questions)
63
+
64
+ Spawn a single Task subagent that explores and explains in one pass:
65
+
66
+ - a general-purpose subagent
67
+ - `model`: your configured how-explainer model (defaults to your judgment model)
68
+ - read-only: spawn a subagent that cannot edit or write files. It still needs MCP access, so "don't change anything" is enforced by the harness rather than by the prompt. On Claude Code that is `subagent_type: Explore`.
69
+
70
+ The agent does its own exploration (Glob, Grep, Read) and writes the explanation directly. Read `references/explainer-prompt.md` for the communication style and output format. Same structure, just no explorer findings as input.
71
+
72
+ Proceed to Step 4.
73
+
74
+ ### Step 3. Synthesize (complex questions only)
75
+
76
+ Once all explorers return, spawn a single Task subagent to synthesize their findings into one coherent explanation:
77
+
78
+ - a general-purpose subagent
79
+ - `model`: your configured how-explainer model (defaults to your judgment model)
80
+ - read-only: spawn a subagent that cannot edit or write files. It still needs MCP access, so "don't change anything" is enforced by the harness rather than by the prompt. On Claude Code that is `subagent_type: Explore`.
81
+
82
+ The explainer gets all explorers' findings and writes the human-facing explanation (output format below). Read `references/explainer-prompt.md` for the full prompt template. The explainer reconciles overlapping findings, resolves contradictions, and weaves the slices into a unified picture.
83
+
84
+ ### Step 4. Present
85
+
86
+ Present the explainer's output to the user. You may lightly edit for clarity or add context from the conversation, but don't substantially rewrite. The explainer's communication is the product.
87
+
88
+ ### Output Format
89
+
90
+ Follow this structure, adapted to the question. Not every section is needed for every question.
91
+
92
+ **Overview.** 1-2 paragraphs. What it is, what it does, why it exists. Enough to decide whether to keep reading.
93
+
94
+ **Key Concepts.** The important types, services, or abstractions. Brief definition of each. Not exhaustive, just the ones needed to understand the rest.
95
+
96
+ **How It Works.** The core of the explanation. Walk through the flow: what triggers it, what happens step by step, where data goes, the decision points. Prose, not pseudocode. Reference specific files and functions so the reader can go look, but don't dump code blocks unless a snippet is genuinely necessary.
97
+
98
+ **Where Things Live.** A brief map of the relevant files/directories. Not every file, just the ones needed to start working in this area.
99
+
100
+ **Gotchas.** Non-obvious or surprising things that would trip someone up. Historical context that explains why something looks weird. Known sharp edges.
101
+
102
+ ## Critique Mode
103
+
104
+ Triggered when the user asks for architectural issues, problems, or improvements, not just understanding.
105
+
106
+ ### Step 1. Explain First
107
+
108
+ Run the full explain flow above (Steps 1-4). You must understand the architecture before critiquing it.
109
+
110
+ ### Step 2. Spawn Critics
111
+
112
+ After the explanation is complete, spawn one architectural critic per model in your configured how-critics list (defaults to one on each of your judgment, precise-execution, and fast code models), all in a single message.
113
+
114
+ For each critic:
115
+ - a general-purpose subagent
116
+ - `model`: one model from the configured how-critics list. These are minimum reasoning levels. The lead should escalate any model when the architecture warrants deeper analysis.
117
+ - read-only: spawn a subagent that cannot edit or write files. It still needs MCP access, so "don't change anything" is enforced by the harness rather than by the prompt. On Claude Code that is `subagent_type: Explore`.
118
+
119
+ Read `references/critic-prompt.md` for the prompt template. Each critic gets:
120
+ 1. The explanation from Step 1 (so they don't re-explore)
121
+ 2. The relevant file paths (so they can read the actual code)
122
+ 3. The architectural critique rubric from `references/critique-rubric.md`
123
+
124
+ ### Step 3. Lead Judgment
125
+
126
+ Same framework as the interrogate skill. You're a pragmatic lead, not an aggregator.
127
+
128
+ Categorize findings:
129
+ - **Act on.** Architectural problems worth fixing now
130
+ - **Consider.** Real concerns, but the cost/benefit is unclear
131
+ - **Noted.** Valid observations, low priority
132
+ - **Dismissed.** Wrong, missing context, or style preference
133
+
134
+ Present the explanation first (from Step 1), then the critique verdict below it. The explanation should stand on its own; someone who just wants to understand the system shouldn't wade through critique.