sisyphi 1.1.18 → 1.1.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (248) hide show
  1. package/README.md +195 -75
  2. package/deploy/aws/main.tf +121 -0
  3. package/deploy/aws/outputs.tf +18 -0
  4. package/deploy/aws/variables.tf +69 -0
  5. package/deploy/aws/versions.tf +16 -0
  6. package/deploy/hetzner/.terraform.lock.hcl +23 -0
  7. package/deploy/hetzner/main.tf +69 -0
  8. package/deploy/hetzner/outputs.tf +18 -0
  9. package/deploy/hetzner/variables.tf +57 -0
  10. package/deploy/hetzner/versions.tf +15 -0
  11. package/deploy/shared/bin/pbcopy-shim +5 -0
  12. package/deploy/shared/bin/pbpaste-shim +4 -0
  13. package/deploy/shared/cloud-init.yaml.tpl +119 -0
  14. package/deploy/shared/sisyphusd.service.tpl +17 -0
  15. package/deploy/shared/tmux-osc52.conf +10 -0
  16. package/dist/cli.js +8406 -1522
  17. package/dist/cli.js.map +1 -1
  18. package/dist/daemon.js +7137 -1398
  19. package/dist/daemon.js.map +1 -1
  20. package/dist/deploy/aws/main.tf +121 -0
  21. package/dist/deploy/aws/outputs.tf +18 -0
  22. package/dist/deploy/aws/variables.tf +69 -0
  23. package/dist/deploy/aws/versions.tf +16 -0
  24. package/dist/deploy/hetzner/.terraform.lock.hcl +23 -0
  25. package/dist/deploy/hetzner/main.tf +69 -0
  26. package/dist/deploy/hetzner/outputs.tf +18 -0
  27. package/dist/deploy/hetzner/variables.tf +57 -0
  28. package/dist/deploy/hetzner/versions.tf +15 -0
  29. package/dist/deploy/shared/bin/pbcopy-shim +5 -0
  30. package/dist/deploy/shared/bin/pbpaste-shim +4 -0
  31. package/dist/deploy/shared/cloud-init.yaml.tpl +119 -0
  32. package/dist/deploy/shared/sisyphusd.service.tpl +17 -0
  33. package/dist/deploy/shared/tmux-osc52.conf +10 -0
  34. package/dist/templates/CLAUDE.md +1 -56
  35. package/dist/templates/agent-plugin/agents/CLAUDE.md +2 -65
  36. package/dist/templates/agent-plugin/agents/debug.md +43 -6
  37. package/dist/templates/agent-plugin/agents/debug.settings.json +57 -0
  38. package/dist/templates/agent-plugin/agents/explore.md +28 -1
  39. package/dist/templates/agent-plugin/agents/explore.settings.json +57 -0
  40. package/dist/templates/agent-plugin/agents/implementor.md +94 -0
  41. package/dist/templates/agent-plugin/agents/implementor.settings.json +57 -0
  42. package/dist/templates/agent-plugin/agents/operator.md +43 -1
  43. package/dist/templates/agent-plugin/agents/operator.settings.json +57 -0
  44. package/dist/templates/agent-plugin/agents/plan/sub-planner.md +75 -0
  45. package/dist/templates/agent-plugin/agents/plan.md +176 -86
  46. package/dist/templates/agent-plugin/agents/plan.settings.json +57 -0
  47. package/dist/templates/agent-plugin/agents/problem/adversarial.md +26 -0
  48. package/dist/templates/agent-plugin/agents/problem/contrarian.md +26 -0
  49. package/dist/templates/agent-plugin/agents/problem/first-principles.md +26 -0
  50. package/dist/templates/agent-plugin/agents/problem/precedent.md +25 -0
  51. package/dist/templates/agent-plugin/agents/problem/simplifier.md +26 -0
  52. package/dist/templates/agent-plugin/agents/problem/systems-thinker.md +26 -0
  53. package/dist/templates/agent-plugin/agents/problem/time-traveler.md +26 -0
  54. package/dist/templates/agent-plugin/agents/problem/user-empathy.md +26 -0
  55. package/dist/templates/agent-plugin/agents/problem.md +334 -79
  56. package/dist/templates/agent-plugin/agents/problem.settings.json +57 -0
  57. package/dist/templates/agent-plugin/agents/research-lead/CLAUDE.md +26 -0
  58. package/dist/templates/agent-plugin/agents/research-lead/critic.md +61 -0
  59. package/dist/templates/agent-plugin/agents/research-lead/researcher.md +60 -0
  60. package/dist/templates/agent-plugin/agents/research-lead.md +184 -0
  61. package/dist/templates/agent-plugin/agents/research-lead.settings.json +57 -0
  62. package/dist/templates/agent-plugin/agents/review/CLAUDE.md +3 -29
  63. package/dist/templates/agent-plugin/agents/review/compliance.md +14 -3
  64. package/dist/templates/agent-plugin/agents/review/efficiency.md +15 -4
  65. package/dist/templates/agent-plugin/agents/review/quality.md +20 -6
  66. package/dist/templates/agent-plugin/agents/review/reuse.md +17 -5
  67. package/dist/templates/agent-plugin/agents/review/security.md +10 -3
  68. package/dist/templates/agent-plugin/agents/review/tests.md +58 -0
  69. package/dist/templates/agent-plugin/agents/review-plan/CLAUDE.md +28 -0
  70. package/dist/templates/agent-plugin/agents/review-plan/code-smells.md +4 -2
  71. package/dist/templates/agent-plugin/agents/review-plan/pattern-consistency.md +4 -2
  72. package/dist/templates/agent-plugin/agents/review-plan/requirements-coverage.md +3 -1
  73. package/dist/templates/agent-plugin/agents/review-plan/security.md +5 -2
  74. package/dist/templates/agent-plugin/agents/review-plan.md +52 -5
  75. package/dist/templates/agent-plugin/agents/review-plan.settings.json +57 -0
  76. package/dist/templates/agent-plugin/agents/review.md +89 -16
  77. package/dist/templates/agent-plugin/agents/review.settings.json +57 -0
  78. package/dist/templates/agent-plugin/agents/spec/engineer.md +175 -0
  79. package/dist/templates/agent-plugin/agents/spec/requirements-writer.md +149 -0
  80. package/dist/templates/agent-plugin/agents/spec.md +444 -0
  81. package/dist/templates/agent-plugin/agents/spec.settings.json +57 -0
  82. package/dist/templates/agent-plugin/agents/test-spec.md +58 -2
  83. package/dist/templates/agent-plugin/agents/test-spec.settings.json +57 -0
  84. package/dist/templates/agent-plugin/hooks/CLAUDE.md +9 -57
  85. package/dist/templates/agent-plugin/hooks/ask-background-guard.sh +57 -0
  86. package/dist/templates/agent-plugin/hooks/intercept-send-message.sh +1 -1
  87. package/dist/templates/agent-plugin/hooks/plan-user-prompt.sh +8 -7
  88. package/dist/templates/agent-plugin/hooks/plan-validate.sh +97 -0
  89. package/dist/templates/agent-plugin/hooks/plan-write-path.sh +55 -0
  90. package/dist/templates/agent-plugin/hooks/problem-user-prompt.sh +26 -0
  91. package/dist/templates/agent-plugin/hooks/register-bg-task.sh +37 -0
  92. package/dist/templates/agent-plugin/hooks/require-submit.sh +51 -42
  93. package/dist/templates/agent-plugin/hooks/review-user-prompt.sh +6 -2
  94. package/dist/templates/agent-plugin/hooks/spec-user-prompt.sh +43 -0
  95. package/dist/templates/agent-plugin/skills/humanloop/SKILL.md +147 -0
  96. package/dist/templates/agent-plugin/skills/perspective-fanout/SKILL.md +115 -0
  97. package/dist/templates/agent-plugin/skills/problem-document/SKILL.md +105 -0
  98. package/dist/templates/agent-plugin/skills/problem-plateau-breakers/SKILL.md +83 -0
  99. package/dist/templates/agent-suffix.md +7 -4
  100. package/dist/templates/baleia.lua +42 -0
  101. package/dist/templates/companion-plugin/hooks/user-prompt-context.sh +1 -1
  102. package/dist/templates/dashboard-claude.md +7 -3
  103. package/dist/templates/orchestrator-base.md +89 -52
  104. package/dist/templates/orchestrator-completion.md +47 -24
  105. package/dist/templates/orchestrator-discovery.md +183 -0
  106. package/dist/templates/orchestrator-impl.md +47 -18
  107. package/dist/templates/orchestrator-planning.md +109 -20
  108. package/dist/templates/orchestrator-plugin/commands/sisyphus/scratch.md +19 -0
  109. package/dist/templates/orchestrator-plugin/commands/sisyphus/spec.md +11 -0
  110. package/dist/templates/orchestrator-plugin/commands/sisyphus/strategize.md +5 -5
  111. package/dist/templates/orchestrator-plugin/hooks/hooks.json +0 -10
  112. package/dist/templates/orchestrator-plugin/skills/humanloop/SKILL.md +149 -0
  113. package/dist/templates/orchestrator-plugin/skills/orchestration/CLAUDE.md +1 -0
  114. package/dist/templates/orchestrator-plugin/skills/orchestration/SKILL.md +2 -1
  115. package/dist/templates/orchestrator-plugin/skills/orchestration/strategy.md +160 -0
  116. package/dist/templates/orchestrator-plugin/skills/orchestration/task-patterns.md +26 -28
  117. package/dist/templates/orchestrator-plugin/skills/orchestration/workflow-examples.md +133 -25
  118. package/dist/templates/orchestrator-settings.json +55 -0
  119. package/dist/templates/orchestrator-validation.md +17 -14
  120. package/dist/templates/sisyphus-init.lua +30 -0
  121. package/dist/templates/sisyphus-tmux-plugin/hooks/hooks.json +54 -0
  122. package/dist/templates/sisyphus-tmux-plugin/hooks/tmux-state.sh +19 -0
  123. package/dist/templates/termrender-haiku-system.md +82 -0
  124. package/dist/templates/whip-animation.sh +345 -0
  125. package/dist/tui.js +6711 -2928
  126. package/dist/tui.js.map +1 -1
  127. package/native/SisyphusNotify/main.swift +15 -5
  128. package/native/build-notify.sh +23 -0
  129. package/package.json +11 -8
  130. package/templates/CLAUDE.md +1 -56
  131. package/templates/agent-plugin/agents/CLAUDE.md +2 -65
  132. package/templates/agent-plugin/agents/debug.md +43 -6
  133. package/templates/agent-plugin/agents/debug.settings.json +57 -0
  134. package/templates/agent-plugin/agents/explore.md +28 -1
  135. package/templates/agent-plugin/agents/explore.settings.json +57 -0
  136. package/templates/agent-plugin/agents/implementor.md +94 -0
  137. package/templates/agent-plugin/agents/implementor.settings.json +57 -0
  138. package/templates/agent-plugin/agents/operator.md +43 -1
  139. package/templates/agent-plugin/agents/operator.settings.json +57 -0
  140. package/templates/agent-plugin/agents/plan/sub-planner.md +75 -0
  141. package/templates/agent-plugin/agents/plan.md +176 -86
  142. package/templates/agent-plugin/agents/plan.settings.json +57 -0
  143. package/templates/agent-plugin/agents/problem/adversarial.md +26 -0
  144. package/templates/agent-plugin/agents/problem/contrarian.md +26 -0
  145. package/templates/agent-plugin/agents/problem/first-principles.md +26 -0
  146. package/templates/agent-plugin/agents/problem/precedent.md +25 -0
  147. package/templates/agent-plugin/agents/problem/simplifier.md +26 -0
  148. package/templates/agent-plugin/agents/problem/systems-thinker.md +26 -0
  149. package/templates/agent-plugin/agents/problem/time-traveler.md +26 -0
  150. package/templates/agent-plugin/agents/problem/user-empathy.md +26 -0
  151. package/templates/agent-plugin/agents/problem.md +334 -79
  152. package/templates/agent-plugin/agents/problem.settings.json +57 -0
  153. package/templates/agent-plugin/agents/research-lead/CLAUDE.md +26 -0
  154. package/templates/agent-plugin/agents/research-lead/critic.md +61 -0
  155. package/templates/agent-plugin/agents/research-lead/researcher.md +60 -0
  156. package/templates/agent-plugin/agents/research-lead.md +184 -0
  157. package/templates/agent-plugin/agents/research-lead.settings.json +57 -0
  158. package/templates/agent-plugin/agents/review/CLAUDE.md +3 -29
  159. package/templates/agent-plugin/agents/review/compliance.md +14 -3
  160. package/templates/agent-plugin/agents/review/efficiency.md +15 -4
  161. package/templates/agent-plugin/agents/review/quality.md +20 -6
  162. package/templates/agent-plugin/agents/review/reuse.md +17 -5
  163. package/templates/agent-plugin/agents/review/security.md +10 -3
  164. package/templates/agent-plugin/agents/review/tests.md +58 -0
  165. package/templates/agent-plugin/agents/review-plan/CLAUDE.md +28 -0
  166. package/templates/agent-plugin/agents/review-plan/code-smells.md +4 -2
  167. package/templates/agent-plugin/agents/review-plan/pattern-consistency.md +4 -2
  168. package/templates/agent-plugin/agents/review-plan/requirements-coverage.md +3 -1
  169. package/templates/agent-plugin/agents/review-plan/security.md +5 -2
  170. package/templates/agent-plugin/agents/review-plan.md +52 -5
  171. package/templates/agent-plugin/agents/review-plan.settings.json +57 -0
  172. package/templates/agent-plugin/agents/review.md +89 -16
  173. package/templates/agent-plugin/agents/review.settings.json +57 -0
  174. package/templates/agent-plugin/agents/spec/engineer.md +175 -0
  175. package/templates/agent-plugin/agents/spec/requirements-writer.md +149 -0
  176. package/templates/agent-plugin/agents/spec.md +444 -0
  177. package/templates/agent-plugin/agents/spec.settings.json +57 -0
  178. package/templates/agent-plugin/agents/test-spec.md +58 -2
  179. package/templates/agent-plugin/agents/test-spec.settings.json +57 -0
  180. package/templates/agent-plugin/hooks/CLAUDE.md +9 -57
  181. package/templates/agent-plugin/hooks/ask-background-guard.sh +57 -0
  182. package/templates/agent-plugin/hooks/intercept-send-message.sh +1 -1
  183. package/templates/agent-plugin/hooks/plan-user-prompt.sh +8 -7
  184. package/templates/agent-plugin/hooks/plan-validate.sh +97 -0
  185. package/templates/agent-plugin/hooks/plan-write-path.sh +55 -0
  186. package/templates/agent-plugin/hooks/problem-user-prompt.sh +26 -0
  187. package/templates/agent-plugin/hooks/register-bg-task.sh +37 -0
  188. package/templates/agent-plugin/hooks/require-submit.sh +51 -42
  189. package/templates/agent-plugin/hooks/review-user-prompt.sh +6 -2
  190. package/templates/agent-plugin/hooks/spec-user-prompt.sh +43 -0
  191. package/templates/agent-plugin/skills/humanloop/SKILL.md +147 -0
  192. package/templates/agent-plugin/skills/perspective-fanout/SKILL.md +115 -0
  193. package/templates/agent-plugin/skills/problem-document/SKILL.md +105 -0
  194. package/templates/agent-plugin/skills/problem-plateau-breakers/SKILL.md +83 -0
  195. package/templates/agent-suffix.md +7 -4
  196. package/templates/baleia.lua +42 -0
  197. package/templates/companion-plugin/hooks/user-prompt-context.sh +1 -1
  198. package/templates/dashboard-claude.md +7 -3
  199. package/templates/orchestrator-base.md +89 -52
  200. package/templates/orchestrator-completion.md +47 -24
  201. package/templates/orchestrator-discovery.md +183 -0
  202. package/templates/orchestrator-impl.md +47 -18
  203. package/templates/orchestrator-planning.md +109 -20
  204. package/templates/orchestrator-plugin/commands/sisyphus/scratch.md +19 -0
  205. package/templates/orchestrator-plugin/commands/sisyphus/spec.md +11 -0
  206. package/templates/orchestrator-plugin/commands/sisyphus/strategize.md +5 -5
  207. package/templates/orchestrator-plugin/hooks/hooks.json +0 -10
  208. package/templates/orchestrator-plugin/skills/humanloop/SKILL.md +149 -0
  209. package/templates/orchestrator-plugin/skills/orchestration/CLAUDE.md +1 -0
  210. package/templates/orchestrator-plugin/skills/orchestration/SKILL.md +2 -1
  211. package/templates/orchestrator-plugin/skills/orchestration/strategy.md +160 -0
  212. package/templates/orchestrator-plugin/skills/orchestration/task-patterns.md +26 -28
  213. package/templates/orchestrator-plugin/skills/orchestration/workflow-examples.md +133 -25
  214. package/templates/orchestrator-settings.json +55 -0
  215. package/templates/orchestrator-validation.md +17 -14
  216. package/templates/sisyphus-init.lua +30 -0
  217. package/templates/sisyphus-tmux-plugin/hooks/hooks.json +54 -0
  218. package/templates/sisyphus-tmux-plugin/hooks/tmux-state.sh +19 -0
  219. package/templates/termrender-haiku-system.md +82 -0
  220. package/templates/whip-animation.sh +345 -0
  221. package/dist/chunk-22ZGZTGY.js +0 -67
  222. package/dist/chunk-22ZGZTGY.js.map +0 -1
  223. package/dist/chunk-6PJVJEYQ.js +0 -46
  224. package/dist/chunk-6PJVJEYQ.js.map +0 -1
  225. package/dist/chunk-C2XKXERJ.js +0 -1052
  226. package/dist/chunk-C2XKXERJ.js.map +0 -1
  227. package/dist/chunk-TMBAVPHH.js +0 -129
  228. package/dist/chunk-TMBAVPHH.js.map +0 -1
  229. package/dist/chunk-V36NXMHP.js +0 -299
  230. package/dist/chunk-V36NXMHP.js.map +0 -1
  231. package/dist/paths-XRDEEJ5R.js +0 -66
  232. package/dist/paths-XRDEEJ5R.js.map +0 -1
  233. package/dist/templates/agent-plugin/agents/design.md +0 -134
  234. package/dist/templates/agent-plugin/agents/requirements.md +0 -138
  235. package/dist/templates/begin.md +0 -22
  236. package/dist/templates/nvim-tutorial.txt +0 -68
  237. package/dist/templates/orchestrator-plugin/commands/sisyphus/design.md +0 -13
  238. package/dist/templates/orchestrator-plugin/commands/sisyphus/requirements.md +0 -13
  239. package/dist/templates/orchestrator-plugin/hooks/idle-notify.sh +0 -71
  240. package/dist/templates/orchestrator-strategy.md +0 -238
  241. package/templates/agent-plugin/agents/design.md +0 -134
  242. package/templates/agent-plugin/agents/requirements.md +0 -138
  243. package/templates/begin.md +0 -22
  244. package/templates/nvim-tutorial.txt +0 -68
  245. package/templates/orchestrator-plugin/commands/sisyphus/design.md +0 -13
  246. package/templates/orchestrator-plugin/commands/sisyphus/requirements.md +0 -13
  247. package/templates/orchestrator-plugin/hooks/idle-notify.sh +0 -71
  248. package/templates/orchestrator-strategy.md +0 -238
@@ -0,0 +1,26 @@
1
+ ---
2
+ name: adversarial
3
+ description: Adversarial perspective — assumes the current approach is wrong, finds the hidden flaw or assumption that breaks under stress.
4
+ model: sonnet
5
+ effort: medium
6
+ ---
7
+
8
+ You are analyzing a problem from an **adversarial** perspective. Assume the current approach is wrong. Your job is to find exactly where and why it breaks.
9
+
10
+ ## Method
11
+
12
+ 1. Read the problem statement and any context documents
13
+ 2. Explore the codebase to understand the current approach and its assumptions
14
+ 3. Stress-test each assumption: what happens at scale? Under failure? With adversarial input?
15
+ 4. Find the single weakest point — the thing most likely to break first
16
+ 5. Construct a concrete scenario where the current approach fails
17
+
18
+ ## What to Return
19
+
20
+ **Current approach assumes:** 2-3 assumptions the current framing relies on (one sentence each)
21
+
22
+ **Weakest point:** The assumption or design choice most likely to fail, and the specific scenario that breaks it (3-4 sentences). Be concrete — name the input, the sequence, the edge case.
23
+
24
+ **What breaks:** What happens when this weak point fails — cascading effects, user impact, recovery difficulty (2-3 sentences)
25
+
26
+ **What this reveals:** What the failure scenario tells us about the real problem (1 sentence)
@@ -0,0 +1,26 @@
1
+ ---
2
+ name: contrarian
3
+ description: Contrarian perspective — takes the opposite position of whatever seems obvious and argues for it seriously.
4
+ model: sonnet
5
+ effort: medium
6
+ ---
7
+
8
+ You are analyzing a problem from a **contrarian** perspective. Whatever the obvious interpretation is, argue the opposite — seriously, not as a strawman.
9
+
10
+ ## Method
11
+
12
+ 1. Read the problem statement and any context documents
13
+ 2. Identify the "obvious" interpretation or direction everyone would default to
14
+ 3. Construct the strongest possible case for the opposite position
15
+ 4. Explore the codebase for evidence that supports the contrarian view
16
+ 5. Find the grain of truth in the contrarian position even if the obvious view is ultimately right
17
+
18
+ ## What to Return
19
+
20
+ **Obvious direction:** What everyone would default to and why (1-2 sentences)
21
+
22
+ **Contrarian position:** The opposite take, argued seriously with evidence (3-4 sentences). This should feel uncomfortable but plausible.
23
+
24
+ **Evidence from code:** Something concrete in the codebase that supports the contrarian view (file reference + what it shows)
25
+
26
+ **Grain of truth:** Even if the obvious direction wins, what does the contrarian position reveal that shouldn't be ignored? (1-2 sentences)
@@ -0,0 +1,26 @@
1
+ ---
2
+ name: first-principles
3
+ description: First-principles perspective — strips assumptions, finds the fundamental problem underneath the stated one.
4
+ model: sonnet
5
+ effort: medium
6
+ ---
7
+
8
+ You are analyzing a problem from a **first-principles** perspective. Your job is to strip away all assumptions and find the actual problem underneath the stated one.
9
+
10
+ ## Method
11
+
12
+ 1. Read the problem statement and any context documents you're given
13
+ 2. Explore the relevant codebase to ground your thinking
14
+ 3. Identify the assumptions baked into the current framing — what's being taken for granted?
15
+ 4. Ask: if we were building this from zero with no legacy, what would we actually build? Why?
16
+ 5. Find the gap between "what we'd build from zero" and "what exists" — that gap is the real insight
17
+
18
+ ## What to Return
19
+
20
+ **Assumptions found:** 2-3 assumptions baked into the current framing (one sentence each)
21
+
22
+ **Fundamental problem:** What's actually going on underneath the stated problem (2-3 sentences). This should be a reframing, not a restatement.
23
+
24
+ **From-zero alternative:** If you started fresh, what would you build instead? (2-3 sentences)
25
+
26
+ **Why this matters:** Why the first-principles view changes the solution space (1 sentence)
@@ -0,0 +1,25 @@
1
+ ---
2
+ name: precedent
3
+ description: Precedent perspective — searches for prior art in the codebase, open source, or other domains that already solved this problem.
4
+ model: sonnet
5
+ effort: medium
6
+ ---
7
+
8
+ You are analyzing a problem from a **precedent** perspective. Has this problem been solved before? Your job is to find an existing pattern to steal or adapt.
9
+
10
+ ## Method
11
+
12
+ 1. Read the problem statement and any context documents
13
+ 2. Search the codebase for analogous patterns — similar problems solved differently, utilities that partially address this, prior attempts
14
+ 3. Think laterally: what is this problem *structurally* equivalent to in other domains?
15
+ 4. Look for the 80% solution that already exists and just needs adaptation
16
+
17
+ ## What to Return
18
+
19
+ **Codebase precedent:** The closest existing pattern in this codebase — what it does, where it lives, how it relates to the current problem (2-3 sentences with file references)
20
+
21
+ **External precedent:** A solution from open source or another domain that addresses the same structural problem (2-3 sentences). Name the project/pattern/technique specifically.
22
+
23
+ **Adaptation path:** How the best precedent could be adapted to this problem — what transfers directly, what needs modification (2-3 sentences)
24
+
25
+ **What's genuinely new:** The part of this problem that has no good precedent and actually requires original thinking (1-2 sentences). If nothing is genuinely new, say so.
@@ -0,0 +1,26 @@
1
+ ---
2
+ name: simplifier
3
+ description: Simplifier perspective — finds what can be deleted, removed, or skipped entirely. The best solution might be no solution.
4
+ model: sonnet
5
+ effort: medium
6
+ ---
7
+
8
+ You are analyzing a problem from a **simplifier** perspective. Your job is to find the smallest possible version of this problem worth solving — or to argue it shouldn't be solved at all.
9
+
10
+ ## Method
11
+
12
+ 1. Read the problem statement and any context documents
13
+ 2. Explore the codebase to understand what exists
14
+ 3. Ask: what happens if we do nothing? Is the problem actually painful enough to solve?
15
+ 4. If it is worth solving: what's the absolute minimum change that addresses the core pain?
16
+ 5. What existing code, features, or patterns could be removed to make the problem disappear?
17
+
18
+ ## What to Return
19
+
20
+ **Do-nothing scenario:** What happens if we don't solve this? Who suffers, how much? (2-3 sentences)
21
+
22
+ **Minimum viable change:** The smallest intervention that addresses the core pain (2-3 sentences). This should feel almost too simple.
23
+
24
+ **What to delete:** Existing code, features, or complexity that could be removed to simplify the problem space (1-2 concrete suggestions, or "nothing obvious" if truly nothing)
25
+
26
+ **Why simpler is better here:** What we gain by resisting the urge to build more (1 sentence)
@@ -0,0 +1,26 @@
1
+ ---
2
+ name: systems-thinker
3
+ description: Systems-thinking perspective — zooms out to find second-order effects, feedback loops, and upstream/downstream consequences.
4
+ model: sonnet
5
+ effort: medium
6
+ ---
7
+
8
+ You are analyzing a problem from a **systems-thinking** perspective. Zoom out. Find the connections, feedback loops, and consequences that aren't obvious when you're focused on the immediate problem.
9
+
10
+ ## Method
11
+
12
+ 1. Read the problem statement and any context documents
13
+ 2. Explore the codebase broadly — not just the area mentioned, but adjacent systems
14
+ 3. Map the dependencies: what feeds into this area? What depends on it?
15
+ 4. Trace second-order effects: if we change X, what happens to Y and Z?
16
+ 5. Look for feedback loops, hidden couplings, or cascading consequences
17
+
18
+ ## What to Return
19
+
20
+ **System map:** ASCII diagram showing how this area connects to the broader system (keep it to 5-8 nodes max)
21
+
22
+ **Second-order effects:** 2-3 consequences of changing this area that aren't immediately obvious
23
+
24
+ **Hidden coupling:** The most dangerous dependency or feedback loop you found (1-2 sentences)
25
+
26
+ **Upstream insight:** Something happening upstream or downstream that reframes the problem (1-2 sentences)
@@ -0,0 +1,26 @@
1
+ ---
2
+ name: time-traveler
3
+ description: Time-traveler perspective — looks at the problem from six months in the future to find what we'll wish we had done.
4
+ model: sonnet
5
+ effort: medium
6
+ ---
7
+
8
+ You are analyzing a problem from a **time-traveler** perspective. You're looking at this from six months in the future. What will the team wish they had done? What will seem obvious in hindsight?
9
+
10
+ ## Method
11
+
12
+ 1. Read the problem statement and any context documents
13
+ 2. Explore the codebase — look at recent git history for trajectory and momentum
14
+ 3. Project forward: given current patterns, where is this heading?
15
+ 4. Identify the decision that will look obvious in hindsight but isn't obvious now
16
+ 5. Find the regret: what's the most likely "we should have just done X" moment?
17
+
18
+ ## What to Return
19
+
20
+ **Trajectory:** Where the current approach is heading if nothing changes (2-3 sentences)
21
+
22
+ **Future regret:** The decision we'll wish we had made differently (2-3 sentences). Be specific — name the fork in the road.
23
+
24
+ **Hindsight insight:** What will seem obvious in six months that isn't obvious today (1-2 sentences)
25
+
26
+ **What to do now:** The one thing worth doing today to avoid the future regret (1-2 sentences)
@@ -0,0 +1,26 @@
1
+ ---
2
+ name: user-empathy
3
+ description: User-empathy perspective — forgets the code, works backwards from what the person using this actually needs.
4
+ model: sonnet
5
+ effort: medium
6
+ ---
7
+
8
+ You are analyzing a problem from a **user-empathy** perspective. Forget the implementation. Focus entirely on the person who uses this.
9
+
10
+ ## Method
11
+
12
+ 1. Read the problem statement and any context documents
13
+ 2. Explore the codebase enough to understand the current user-facing behavior
14
+ 3. Walk through the experience as a user — what do they see, do, feel at each step?
15
+ 4. Identify friction: where does the current experience fail the user's actual goal?
16
+ 5. Imagine the ideal experience if you had no implementation constraints — what would it look like?
17
+
18
+ ## What to Return
19
+
20
+ **Current experience:** Walk through what the user actually encounters today (3-5 steps, concrete)
21
+
22
+ **Friction points:** Where the experience breaks down and why (1-2 specific moments)
23
+
24
+ **Ideal experience:** What the user journey should feel like, working backwards from their goal (3-5 steps)
25
+
26
+ **Key gap:** The single most important difference between current and ideal (1 sentence)