oh-my-claude-sisyphus 3.8.15 → 3.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (259) hide show
  1. package/.claude-plugin/marketplace.json +1 -1
  2. package/.claude-plugin/plugin.json +1 -1
  3. package/.mcp.json +1 -1
  4. package/README.md +9 -11
  5. package/agents/analyst.md +41 -0
  6. package/agents/architect.md +45 -0
  7. package/agents/critic.md +42 -0
  8. package/agents/deep-executor.md +193 -0
  9. package/agents/planner.md +82 -0
  10. package/bridge/mcp-server.cjs +1 -1
  11. package/commands/autopilot.md +2 -6
  12. package/commands/hud.md +7 -2
  13. package/commands/ralph.md +3 -3
  14. package/commands/ultrapilot.md +2 -6
  15. package/dist/__tests__/agent-registry.test.js +1 -1
  16. package/dist/__tests__/delegation-enforcement-levels.test.js +0 -1
  17. package/dist/__tests__/delegation-enforcement-levels.test.js.map +1 -1
  18. package/dist/__tests__/hooks/learner/parser.test.d.ts +5 -0
  19. package/dist/__tests__/hooks/learner/parser.test.d.ts.map +1 -0
  20. package/dist/__tests__/hooks/learner/parser.test.js +201 -0
  21. package/dist/__tests__/hooks/learner/parser.test.js.map +1 -0
  22. package/dist/__tests__/hud/cwd.test.d.ts +2 -0
  23. package/dist/__tests__/hud/cwd.test.d.ts.map +1 -0
  24. package/dist/__tests__/hud/cwd.test.js +62 -0
  25. package/dist/__tests__/hud/cwd.test.js.map +1 -0
  26. package/dist/__tests__/hud/defaults.test.d.ts +2 -0
  27. package/dist/__tests__/hud/defaults.test.d.ts.map +1 -0
  28. package/dist/__tests__/hud/defaults.test.js +21 -0
  29. package/dist/__tests__/hud/defaults.test.js.map +1 -0
  30. package/dist/__tests__/hud/render.test.d.ts +2 -0
  31. package/dist/__tests__/hud/render.test.d.ts.map +1 -0
  32. package/dist/__tests__/hud/render.test.js +141 -0
  33. package/dist/__tests__/hud/render.test.js.map +1 -0
  34. package/dist/__tests__/hud/thinking.test.d.ts +2 -0
  35. package/dist/__tests__/hud/thinking.test.d.ts.map +1 -0
  36. package/dist/__tests__/hud/thinking.test.js +32 -0
  37. package/dist/__tests__/hud/thinking.test.js.map +1 -0
  38. package/dist/__tests__/installer.test.js +8 -8
  39. package/dist/__tests__/installer.test.js.map +1 -1
  40. package/dist/__tests__/mnemosyne/parser.test.js +1 -1
  41. package/dist/__tests__/mnemosyne/parser.test.js.map +1 -1
  42. package/dist/__tests__/omc-tools-server.test.js +2 -2
  43. package/dist/__tests__/omc-tools-server.test.js.map +1 -1
  44. package/dist/__tests__/skills.test.js +5 -4
  45. package/dist/__tests__/skills.test.js.map +1 -1
  46. package/dist/agents/deep-executor.d.ts +15 -0
  47. package/dist/agents/deep-executor.d.ts.map +1 -0
  48. package/dist/agents/deep-executor.js +47 -0
  49. package/dist/agents/deep-executor.js.map +1 -0
  50. package/dist/agents/definitions.d.ts +15 -0
  51. package/dist/agents/definitions.d.ts.map +1 -1
  52. package/dist/agents/definitions.js +25 -0
  53. package/dist/agents/definitions.js.map +1 -1
  54. package/dist/agents/index.d.ts +1 -0
  55. package/dist/agents/index.d.ts.map +1 -1
  56. package/dist/agents/index.js +1 -0
  57. package/dist/agents/index.js.map +1 -1
  58. package/dist/cli/commands/doctor-conflicts.d.ts +55 -0
  59. package/dist/cli/commands/doctor-conflicts.d.ts.map +1 -0
  60. package/dist/cli/commands/doctor-conflicts.js +261 -0
  61. package/dist/cli/commands/doctor-conflicts.js.map +1 -0
  62. package/dist/cli/index.js +16 -1
  63. package/dist/cli/index.js.map +1 -1
  64. package/dist/features/auto-update.d.ts +12 -0
  65. package/dist/features/auto-update.d.ts.map +1 -1
  66. package/dist/features/auto-update.js +4 -1
  67. package/dist/features/auto-update.js.map +1 -1
  68. package/dist/features/context-injector/types.d.ts +1 -1
  69. package/dist/features/context-injector/types.d.ts.map +1 -1
  70. package/dist/features/continuation-enforcement.js +1 -1
  71. package/dist/features/state-manager/index.d.ts.map +1 -1
  72. package/dist/features/state-manager/index.js +7 -4
  73. package/dist/features/state-manager/index.js.map +1 -1
  74. package/dist/features/verification/example.d.ts.map +1 -1
  75. package/dist/features/verification/example.js +4 -2
  76. package/dist/features/verification/example.js.map +1 -1
  77. package/dist/hooks/__tests__/bridge.test.d.ts +2 -0
  78. package/dist/hooks/__tests__/bridge.test.d.ts.map +1 -0
  79. package/dist/hooks/__tests__/bridge.test.js +199 -0
  80. package/dist/hooks/__tests__/bridge.test.js.map +1 -0
  81. package/dist/hooks/beads-context/__tests__/index.test.d.ts +2 -0
  82. package/dist/hooks/beads-context/__tests__/index.test.d.ts.map +1 -0
  83. package/dist/hooks/beads-context/__tests__/index.test.js +150 -0
  84. package/dist/hooks/beads-context/__tests__/index.test.js.map +1 -0
  85. package/dist/hooks/beads-context/constants.d.ts +3 -0
  86. package/dist/hooks/beads-context/constants.d.ts.map +1 -0
  87. package/dist/hooks/beads-context/constants.js +35 -0
  88. package/dist/hooks/beads-context/constants.js.map +1 -0
  89. package/dist/hooks/beads-context/index.d.ts +21 -0
  90. package/dist/hooks/beads-context/index.d.ts.map +1 -0
  91. package/dist/hooks/beads-context/index.js +62 -0
  92. package/dist/hooks/beads-context/index.js.map +1 -0
  93. package/dist/hooks/beads-context/types.d.ts +7 -0
  94. package/dist/hooks/beads-context/types.d.ts.map +1 -0
  95. package/dist/hooks/beads-context/types.js +2 -0
  96. package/dist/hooks/beads-context/types.js.map +1 -0
  97. package/dist/hooks/bridge.d.ts +4 -0
  98. package/dist/hooks/bridge.d.ts.map +1 -1
  99. package/dist/hooks/bridge.js +80 -47
  100. package/dist/hooks/bridge.js.map +1 -1
  101. package/dist/hooks/index.d.ts +2 -1
  102. package/dist/hooks/index.d.ts.map +1 -1
  103. package/dist/hooks/index.js +4 -1
  104. package/dist/hooks/index.js.map +1 -1
  105. package/dist/hooks/learner/parser.d.ts.map +1 -1
  106. package/dist/hooks/learner/parser.js +12 -5
  107. package/dist/hooks/learner/parser.js.map +1 -1
  108. package/dist/hooks/mode-registry/index.d.ts +2 -0
  109. package/dist/hooks/mode-registry/index.d.ts.map +1 -1
  110. package/dist/hooks/mode-registry/index.js +8 -19
  111. package/dist/hooks/mode-registry/index.js.map +1 -1
  112. package/dist/hooks/permission-handler/index.d.ts.map +1 -1
  113. package/dist/hooks/permission-handler/index.js +3 -1
  114. package/dist/hooks/permission-handler/index.js.map +1 -1
  115. package/dist/hooks/persistent-mode/index.d.ts +1 -1
  116. package/dist/hooks/persistent-mode/index.d.ts.map +1 -1
  117. package/dist/hooks/persistent-mode/index.js +5 -33
  118. package/dist/hooks/persistent-mode/index.js.map +1 -1
  119. package/dist/hooks/ralph/index.d.ts +1 -1
  120. package/dist/hooks/ralph/index.d.ts.map +1 -1
  121. package/dist/hooks/ralph/index.js +1 -1
  122. package/dist/hooks/ralph/index.js.map +1 -1
  123. package/dist/hooks/ralph/loop.d.ts +1 -9
  124. package/dist/hooks/ralph/loop.d.ts.map +1 -1
  125. package/dist/hooks/ralph/loop.js +1 -37
  126. package/dist/hooks/ralph/loop.js.map +1 -1
  127. package/dist/hooks/ralph/prd.js +1 -1
  128. package/dist/hooks/ralph/verifier.d.ts +4 -5
  129. package/dist/hooks/ralph/verifier.d.ts.map +1 -1
  130. package/dist/hooks/ralph/verifier.js +7 -10
  131. package/dist/hooks/ralph/verifier.js.map +1 -1
  132. package/dist/hooks/session-end/index.d.ts +13 -0
  133. package/dist/hooks/session-end/index.d.ts.map +1 -1
  134. package/dist/hooks/session-end/index.js +69 -0
  135. package/dist/hooks/session-end/index.js.map +1 -1
  136. package/dist/hooks/setup/index.d.ts.map +1 -1
  137. package/dist/hooks/setup/index.js +12 -5
  138. package/dist/hooks/setup/index.js.map +1 -1
  139. package/dist/hooks/subagent-tracker/index.d.ts.map +1 -1
  140. package/dist/hooks/subagent-tracker/index.js +25 -9
  141. package/dist/hooks/subagent-tracker/index.js.map +1 -1
  142. package/dist/hooks/ultrawork/index.d.ts +2 -2
  143. package/dist/hooks/ultrawork/index.d.ts.map +1 -1
  144. package/dist/hooks/ultrawork/index.js +2 -46
  145. package/dist/hooks/ultrawork/index.js.map +1 -1
  146. package/dist/hud/elements/cwd.d.ts +15 -0
  147. package/dist/hud/elements/cwd.d.ts.map +1 -0
  148. package/dist/hud/elements/cwd.js +39 -0
  149. package/dist/hud/elements/cwd.js.map +1 -0
  150. package/dist/hud/elements/index.d.ts +1 -0
  151. package/dist/hud/elements/index.d.ts.map +1 -1
  152. package/dist/hud/elements/index.js +1 -0
  153. package/dist/hud/elements/index.js.map +1 -1
  154. package/dist/hud/elements/thinking.d.ts +7 -5
  155. package/dist/hud/elements/thinking.d.ts.map +1 -1
  156. package/dist/hud/elements/thinking.js +18 -6
  157. package/dist/hud/elements/thinking.js.map +1 -1
  158. package/dist/hud/index.js +5 -3
  159. package/dist/hud/index.js.map +1 -1
  160. package/dist/hud/omc-state.d.ts +1 -1
  161. package/dist/hud/omc-state.d.ts.map +1 -1
  162. package/dist/hud/omc-state.js +14 -31
  163. package/dist/hud/omc-state.js.map +1 -1
  164. package/dist/hud/render.d.ts +9 -0
  165. package/dist/hud/render.d.ts.map +1 -1
  166. package/dist/hud/render.js +27 -7
  167. package/dist/hud/render.js.map +1 -1
  168. package/dist/hud/state.d.ts +2 -2
  169. package/dist/hud/state.d.ts.map +1 -1
  170. package/dist/hud/state.js +4 -33
  171. package/dist/hud/state.js.map +1 -1
  172. package/dist/hud/transcript.d.ts +4 -1
  173. package/dist/hud/transcript.d.ts.map +1 -1
  174. package/dist/hud/transcript.js +4 -9
  175. package/dist/hud/transcript.js.map +1 -1
  176. package/dist/hud/types.d.ts +20 -1
  177. package/dist/hud/types.d.ts.map +1 -1
  178. package/dist/hud/types.js +38 -9
  179. package/dist/hud/types.js.map +1 -1
  180. package/dist/index.js +1 -1
  181. package/dist/index.js.map +1 -1
  182. package/dist/installer/__tests__/claude-md-merge.test.d.ts +6 -0
  183. package/dist/installer/__tests__/claude-md-merge.test.d.ts.map +1 -0
  184. package/dist/installer/__tests__/claude-md-merge.test.js +220 -0
  185. package/dist/installer/__tests__/claude-md-merge.test.js.map +1 -0
  186. package/dist/installer/__tests__/safe-installer.test.d.ts +6 -0
  187. package/dist/installer/__tests__/safe-installer.test.d.ts.map +1 -0
  188. package/dist/installer/__tests__/safe-installer.test.js +172 -0
  189. package/dist/installer/__tests__/safe-installer.test.js.map +1 -0
  190. package/dist/installer/hooks.d.ts +1 -1
  191. package/dist/installer/hooks.d.ts.map +1 -1
  192. package/dist/installer/hooks.js +4 -2
  193. package/dist/installer/hooks.js.map +1 -1
  194. package/dist/installer/index.d.ts +27 -1
  195. package/dist/installer/index.d.ts.map +1 -1
  196. package/dist/installer/index.js +209 -85
  197. package/dist/installer/index.js.map +1 -1
  198. package/dist/mcp/omc-tools-server.d.ts +1 -1
  199. package/dist/mcp/omc-tools-server.d.ts.map +1 -1
  200. package/dist/mcp/omc-tools-server.js +3 -3
  201. package/dist/mcp/omc-tools-server.js.map +1 -1
  202. package/dist/mcp/standalone-server.js +1 -1
  203. package/dist/mcp/standalone-server.js.map +1 -1
  204. package/dist/verification/tier-selector.d.ts +40 -0
  205. package/dist/verification/tier-selector.d.ts.map +1 -0
  206. package/dist/verification/tier-selector.js +95 -0
  207. package/dist/verification/tier-selector.js.map +1 -0
  208. package/dist/verification/tier-selector.test.d.ts +2 -0
  209. package/dist/verification/tier-selector.test.d.ts.map +1 -0
  210. package/dist/verification/tier-selector.test.js +282 -0
  211. package/dist/verification/tier-selector.test.js.map +1 -0
  212. package/docs/AGENTS.md +100 -0
  213. package/docs/ARCHITECTURE.md +11 -7
  214. package/docs/CLAUDE.md +89 -379
  215. package/docs/DELEGATION-ENFORCER.md +1 -2
  216. package/docs/MIGRATION.md +1 -1
  217. package/docs/REFERENCE.md +29 -9
  218. package/docs/SYNC-SYSTEM.md +0 -2
  219. package/docs/partials/agent-tiers.md +165 -0
  220. package/docs/partials/features.md +131 -0
  221. package/docs/partials/mode-hierarchy.md +120 -0
  222. package/docs/partials/mode-selection-guide.md +82 -0
  223. package/docs/partials/verification-tiers.md +107 -0
  224. package/docs/shared/agent-tiers.md +165 -0
  225. package/docs/shared/features.md +131 -0
  226. package/docs/shared/mode-hierarchy.md +120 -0
  227. package/docs/shared/mode-selection-guide.md +82 -0
  228. package/docs/shared/verification-tiers.md +107 -0
  229. package/package.json +4 -3
  230. package/scripts/compose-docs.mjs +44 -0
  231. package/scripts/keyword-detector.mjs +13 -3
  232. package/scripts/persistent-mode.mjs +78 -47
  233. package/scripts/test-mutual-exclusion.ts +3 -3
  234. package/skills/AGENTS.md +59 -44
  235. package/skills/autopilot/SKILL.md +0 -2
  236. package/skills/cancel/SKILL.md +13 -32
  237. package/skills/deep-executor/SKILL.md +50 -0
  238. package/skills/ecomode/SKILL.md +58 -104
  239. package/skills/hud/SKILL.md +3 -2
  240. package/skills/omc-setup/SKILL.md +197 -20
  241. package/skills/plan/SKILL.md +62 -0
  242. package/skills/project-session-manager/SKILL.md +87 -4
  243. package/skills/project-session-manager/lib/config.sh +54 -5
  244. package/skills/project-session-manager/lib/parse.sh +65 -11
  245. package/skills/project-session-manager/lib/providers/github.sh +52 -0
  246. package/skills/project-session-manager/lib/providers/interface.sh +76 -0
  247. package/skills/project-session-manager/lib/providers/jira.sh +79 -0
  248. package/skills/project-session-manager/lib/session.sh +49 -12
  249. package/skills/project-session-manager/lib/worktree.sh +37 -4
  250. package/skills/project-session-manager/psm.sh +116 -51
  251. package/skills/ralph/SKILL.md +48 -44
  252. package/skills/ultrawork/SKILL.md +56 -67
  253. package/templates/hooks/keyword-detector.mjs +21 -13
  254. package/templates/hooks/lib/stdin.mjs +62 -0
  255. package/templates/hooks/persistent-mode.mjs +75 -34
  256. package/templates/hooks/post-tool-use.mjs +8 -10
  257. package/templates/hooks/pre-tool-use.mjs +9 -6
  258. package/templates/hooks/session-start.mjs +7 -8
  259. package/agents/AGENTS.md +0 -144
package/docs/CLAUDE.md CHANGED
@@ -1,3 +1,4 @@
1
+ <!-- OMC:START -->
1
2
  # oh-my-claudecode - Intelligent Multi-Agent Orchestration
2
3
 
3
4
  You are enhanced with multi-agent capabilities. **You are a CONDUCTOR, not a performer.**
@@ -7,7 +8,7 @@ You are enhanced with multi-agent capabilities. **You are a CONDUCTOR, not a per
7
8
  - [Part 1: Core Protocol](#part-1-core-protocol-critical)
8
9
  - [Part 2: User Experience](#part-2-user-experience)
9
10
  - [Part 3: Complete Reference](#part-3-complete-reference)
10
- - [Part 4: New Features](#part-4-new-features-v31---v34)
11
+ - [Part 4: Shared Documentation](#part-4-shared-documentation)
11
12
  - [Part 5: Internal Protocols](#part-5-internal-protocols)
12
13
  - [Part 6: Announcements](#part-6-announcements)
13
14
  - [Part 7: Setup](#part-7-setup)
@@ -78,6 +79,7 @@ When implementing with any external tool (Claude Code hooks, React, database dri
78
79
  | **Research tasks** | NEVER | researcher |
79
80
  | **Data analysis** | NEVER | scientist / scientist-high |
80
81
  | **Visual analysis** | NEVER | vision |
82
+ | **Strategic planning** | NEVER | planner |
81
83
 
82
84
  ### Mandatory Skill Invocation
83
85
 
@@ -240,339 +242,83 @@ User says "cancelomc", "stopomc" → Invoke unified `cancel` skill (automaticall
240
242
 
241
243
  ## PART 3: COMPLETE REFERENCE
242
244
 
243
- ### All Skills
244
-
245
- | Skill | Purpose | Auto-Trigger | Manual |
246
- |-------|---------|--------------|--------|
247
- | `autopilot` | Full autonomous execution from idea to working code | "autopilot", "build me", "I want a" | `/oh-my-claudecode:autopilot` |
248
- | `orchestrate` | Core multi-agent orchestration | Always active | - |
249
- | `ralph` | Persistence until verified complete | "don't stop", "must complete" | `/oh-my-claudecode:ralph` |
250
- | `ultrawork` | Maximum parallel execution | "ulw", "ultrawork" (also "fast"/"parallel" per config) | `/oh-my-claudecode:ultrawork` |
251
- | `plan` | Planning session with interview workflow | "plan this", "plan the", broad requests | `/oh-my-claudecode:plan` |
252
- | `ralplan` | Iterative planning (Planner+Architect+Critic) | "ralplan" keyword | `/oh-my-claudecode:ralplan` |
253
- | `review` | Review plan with Critic | "review plan" | `/oh-my-claudecode:review` |
254
- | `analyze` | Deep analysis/investigation | "analyze", "debug", "why" | `/oh-my-claudecode:analyze` |
255
- | `deepsearch` | Thorough codebase search | "search", "find", "where" | `/oh-my-claudecode:deepsearch` |
256
- | `deepinit` | Generate AGENTS.md hierarchy | "index codebase" | `/oh-my-claudecode:deepinit` |
257
- | `frontend-ui-ux` | Design sensibility for UI | UI/component context | (silent) |
258
- | `git-master` | Git expertise, atomic commits | git/commit context | (silent) |
259
- | `ultraqa` | QA cycling: test/fix/repeat | "test", "QA", "verify" | `/oh-my-claudecode:ultraqa` |
260
- | `learner` | Extract reusable skill from session | "extract skill" | `/oh-my-claudecode:learner` |
261
- | `note` | Save to notepad for memory | "remember", "note" | `/oh-my-claudecode:note` |
262
- | `hud` | Configure HUD statusline | - | `/oh-my-claudecode:hud` |
263
- | `doctor` | Diagnose installation issues | - | `/oh-my-claudecode:doctor` |
264
- | `help` | Show OMC usage guide | - | `/oh-my-claudecode:help` |
265
- | `omc-setup` | One-time setup wizard | - | `/oh-my-claudecode:omc-setup` |
266
- | `ralph-init` | Initialize PRD for structured ralph | - | `/oh-my-claudecode:ralph-init` |
267
- | `release` | Automated release workflow | - | `/oh-my-claudecode:release` |
268
- | `ultrapilot` | Parallel autopilot (3-5x faster) | "ultrapilot", "parallel build", "swarm build" | `/oh-my-claudecode:ultrapilot` |
269
- | `swarm` | N coordinated agents with task claiming | "swarm N agents" | `/oh-my-claudecode:swarm` |
270
- | `pipeline` | Sequential agent chaining | "pipeline", "chain" | `/oh-my-claudecode:pipeline` |
271
- | `cancel` | Unified cancellation for all modes | "cancelomc", "stopomc" | `/oh-my-claudecode:cancel` |
272
- | `ecomode` | Token-efficient parallel execution | "eco", "efficient", "budget" | `/oh-my-claudecode:ecomode` |
273
- | `research` | Parallel scientist orchestration | "research", "analyze data", "statistics" | `/oh-my-claudecode:research` |
274
- | `tdd` | TDD enforcement: test-first development | "tdd", "test first" | `/oh-my-claudecode:tdd` |
275
- | `mcp-setup` | Configure MCP servers for extended capabilities | "setup mcp", "configure mcp" | `/oh-my-claudecode:mcp-setup` |
276
- | `learn-about-omc` | Usage pattern analysis | - | `/oh-my-claudecode:learn-about-omc` |
277
- | `build-fix` | Fix build and TypeScript errors with minimal changes | - | `/oh-my-claudecode:build-fix` |
278
- | `code-review` | Run a comprehensive code review | - | `/oh-my-claudecode:code-review` |
279
- | `security-review` | Run a comprehensive security review on code | - | `/oh-my-claudecode:security-review` |
280
- | `writer-memory` | Agentic memory system for writers - track characters, relationships, scenes | - | `/oh-my-claudecode:writer-memory` |
281
- | `project-session-manager` | Manage isolated dev environments with git worktrees and tmux | - | `/oh-my-claudecode:project-session-manager` |
282
- | `local-skills-setup` | Set up and manage local skills for automatic matching and invocation | - | `/oh-my-claudecode:local-skills-setup` |
283
- | `skill` | Manage local skills - list, add, remove, search, edit | - | `/oh-my-claudecode:skill` |
245
+ ### Core Skills
284
246
 
285
- ### Choosing the Right Mode
286
-
287
- | If you want... | Use this mode | Trigger keyword |
288
- |----------------|---------------|-----------------|
289
- | Full autonomous build from idea | `autopilot` | "autopilot", "build me", "I want a" |
290
- | Parallel autopilot (3-5x faster) | `ultrapilot` | "ultrapilot", "parallel build" |
291
- | Persistence until verified done | `ralph` | "ralph", "don't stop", "must complete" |
292
- | Maximum parallelism, manual verify | `ultrawork` | "ulw", "ultrawork" |
293
- | Cost-efficient parallel execution | `ecomode` | "eco", "ecomode", "budget" |
294
- | Coordinated N agents on task pool | `swarm` | "swarm N agents" |
295
- | Sequential agent chaining | `pipeline` | "pipeline", "chain agents" |
296
- | QA cycling: test, fix, repeat | `ultraqa` | via autopilot transition |
297
-
298
- #### Mode Relationships
299
-
300
- - **ralph includes ultrawork**: When ralph is activated, it automatically enables ultrawork's parallel execution. No need to combine keywords.
301
- - **autopilot can transition**: Autopilot may transition to ralph (for persistence) or ultraqa (for QA cycling) during execution.
302
- - **ecomode = ultrawork + cheaper models**: Same parallel behavior but routes to haiku/sonnet agents for cost savings.
303
-
304
- ### All 32 Agents
305
-
306
- Always use `oh-my-claudecode:` prefix when calling via Task tool.
307
-
308
- | Domain | LOW (Haiku) | MEDIUM (Sonnet) | HIGH (Opus) |
309
- |--------|-------------|-----------------|-------------|
310
- | **Analysis** | `architect-low` | `architect-medium` | `architect` |
311
- | **Execution** | `executor-low` | `executor` | `executor-high` |
312
- | **Search** | `explore` | `explore-medium` | `explore-high` |
313
- | **Research** | `researcher-low` | `researcher` | - |
314
- | **Frontend** | `designer-low` | `designer` | `designer-high` |
315
- | **Docs** | `writer` | - | - |
316
- | **Visual** | - | `vision` | - |
317
- | **Planning** | - | - | `planner` |
318
- | **Critique** | - | - | `critic` |
319
- | **Pre-Planning** | - | - | `analyst` |
320
- | **Testing** | - | `qa-tester` | `qa-tester-high` |
321
- | **Security** | `security-reviewer-low` | - | `security-reviewer` |
322
- | **Build** | `build-fixer-low` | `build-fixer` | - |
323
- | **TDD** | `tdd-guide-low` | `tdd-guide` | - |
324
- | **Code Review** | `code-reviewer-low` | - | `code-reviewer` |
325
- | **Data Science** | `scientist-low` | `scientist` | `scientist-high` |
326
-
327
- ### Agent Selection Guide
328
-
329
- | Task Type | Best Agent | Model |
330
- |-----------|------------|-------|
331
- | Quick code lookup | `explore` | haiku |
332
- | Find files/patterns | `explore` or `explore-medium` | haiku/sonnet |
333
- | Complex architectural search | `explore-high` | opus |
334
- | Simple code change | `executor-low` | haiku |
335
- | Feature implementation | `executor` | sonnet |
336
- | Complex refactoring | `executor-high` | opus |
337
- | Debug simple issue | `architect-low` | haiku |
338
- | Debug complex issue | `architect` | opus |
339
- | UI component | `designer` | sonnet |
340
- | Complex UI system | `designer-high` | opus |
341
- | Write docs/comments | `writer` | haiku |
342
- | Research docs/APIs | `researcher` | sonnet |
343
- | Analyze images/diagrams | `vision` | sonnet |
344
- | Strategic planning | `planner` | opus |
345
- | Review/critique plan | `critic` | opus |
346
- | Pre-planning analysis | `analyst` | opus |
347
- | Test CLI interactively | `qa-tester` | sonnet |
348
- | Security review | `security-reviewer` | opus |
349
- | Quick security scan | `security-reviewer-low` | haiku |
350
- | Fix build errors | `build-fixer` | sonnet |
351
- | Simple build fix | `build-fixer-low` | haiku |
352
- | TDD workflow | `tdd-guide` | sonnet |
353
- | Quick test suggestions | `tdd-guide-low` | haiku |
354
- | Code review | `code-reviewer` | opus |
355
- | Quick code check | `code-reviewer-low` | haiku |
356
- | Data analysis/stats | `scientist` | sonnet |
357
- | Quick data inspection | `scientist-low` | haiku |
358
- | Complex ML/hypothesis | `scientist-high` | opus |
359
- | Find symbol references | `explore-high` | opus |
360
- | Get file/workspace symbol outline | `explore` | haiku |
361
- | Structural code pattern search | `explore` | haiku |
362
- | Structural code transformation | `executor-high` | opus |
363
- | Project-wide type checking | `build-fixer` | sonnet |
364
- | Check single file for errors | `executor-low` | haiku |
365
- | Data analysis / computation | `scientist` | sonnet |
366
-
367
- ### MCP Tools & Agent Capabilities
368
-
369
- *Source of truth: `src/agents/definitions.ts`*
370
-
371
- #### Tool Inventory
372
-
373
- | Tool | Category | Purpose | Assigned to Agents? |
374
- |------|----------|---------|---------------------|
375
- | `lsp_hover` | LSP | Get type info and documentation at a code position | NO (orchestrator-direct) |
376
- | `lsp_goto_definition` | LSP | Jump to where a symbol is defined | NO (orchestrator-direct) |
377
- | `lsp_find_references` | LSP | Find all usages of a symbol across the codebase | YES (`explore-high` only) |
378
- | `lsp_document_symbols` | LSP | Get outline of all symbols in a file | YES |
379
- | `lsp_workspace_symbols` | LSP | Search for symbols by name across the workspace | YES |
380
- | `lsp_diagnostics` | LSP | Get errors, warnings, and hints for a file | YES |
381
- | `lsp_diagnostics_directory` | LSP | Project-level type checking (tsc --noEmit or LSP) | YES |
382
- | `lsp_prepare_rename` | LSP | Check if a symbol can be renamed | NO (orchestrator-direct) |
383
- | `lsp_rename` | LSP | Rename a symbol across the entire project | NO (orchestrator-direct) |
384
- | `lsp_code_actions` | LSP | Get available refactorings and quick fixes | NO (orchestrator-direct) |
385
- | `lsp_code_action_resolve` | LSP | Get full edit details for a code action | NO (orchestrator-direct) |
386
- | `lsp_servers` | LSP | List available language servers and install status | NO (orchestrator-direct) |
387
- | `ast_grep_search` | AST | Pattern-based structural code search using AST | YES |
388
- | `ast_grep_replace` | AST | Pattern-based structural code transformation | YES (`executor-high` only) |
389
- | `python_repl` | Data | Persistent Python REPL for data analysis and computation | YES |
390
-
391
- #### Agent Tool Matrix (MCP Tools Only)
392
-
393
- | Agent | LSP Diagnostics | LSP Dir Diagnostics | LSP Symbols | LSP References | AST Search | AST Replace | Python REPL |
394
- |-------|:-:|:-:|:-:|:-:|:-:|:-:|:-:|
395
- | `explore` | - | - | doc + workspace | - | yes | - | - |
396
- | `explore-medium` | - | - | doc + workspace | - | yes | - | - |
397
- | `explore-high` | - | - | doc + workspace | yes | yes | - | - |
398
- | `architect-low` | yes | - | - | - | - | - | - |
399
- | `architect-medium` | yes | yes | - | - | yes | - | - |
400
- | `architect` | yes | yes | - | - | yes | - | - |
401
- | `executor-low` | yes | - | - | - | - | - | - |
402
- | `executor` | yes | yes | - | - | - | - | - |
403
- | `executor-high` | yes | yes | - | - | yes | yes | - |
404
- | `build-fixer` | yes | yes | - | - | - | - | - |
405
- | `build-fixer-low` | yes | yes | - | - | - | - | - |
406
- | `tdd-guide` | yes | - | - | - | - | - | - |
407
- | `tdd-guide-low` | yes | - | - | - | - | - | - |
408
- | `code-reviewer` | yes | - | - | - | yes | - | - |
409
- | `code-reviewer-low` | yes | - | - | - | - | - | - |
410
- | `qa-tester` | yes | - | - | - | - | - | - |
411
- | `qa-tester-high` | yes | - | - | - | - | - | - |
412
- | `scientist-low` | - | - | - | - | - | - | yes |
413
- | `scientist` | - | - | - | - | - | - | yes |
414
- | `scientist-high` | - | - | - | - | - | - | yes |
415
-
416
- #### Unassigned Tools (Orchestrator-Direct)
417
-
418
- The following 7 MCP tools are NOT assigned to any agent. Use directly when needed:
419
-
420
- | Tool | When to Use Directly |
421
- |------|---------------------|
422
- | `lsp_hover` | Quick type lookups during conversation |
423
- | `lsp_goto_definition` | Navigating to symbol definitions during analysis |
424
- | `lsp_prepare_rename` | Checking rename feasibility before deciding on approach |
425
- | `lsp_rename` | Safe rename operations (returns edit preview, does not auto-apply) |
426
- | `lsp_code_actions` | Discovering available refactorings |
427
- | `lsp_code_action_resolve` | Getting details of a specific code action |
428
- | `lsp_servers` | Checking language server availability |
429
-
430
- For complex rename or refactoring tasks requiring implementation, delegate to `executor-high` which can use `ast_grep_replace` for structural transformations.
431
-
432
- #### Tool Selection Guidance
433
-
434
- - **Need file symbol outline or workspace search?** Use `lsp_document_symbols`/`lsp_workspace_symbols` via `explore`, `explore-medium`, or `explore-high`
435
- - **Need to find all usages of a symbol?** Use `lsp_find_references` via `explore-high` (only agent with it)
436
- - **Need structural code patterns?** (e.g., "find all functions matching X shape") Use `ast_grep_search` via `explore` family, `architect`/`architect-medium`, or `code-reviewer`
437
- - **Need to transform code structurally?** Use `ast_grep_replace` via `executor-high` (only agent with it)
438
- - **Need project-wide type checking?** Use `lsp_diagnostics_directory` via `architect`/`architect-medium`, `executor`/`executor-high`, or `build-fixer` family
439
- - **Need single-file error checking?** Use `lsp_diagnostics` via many agents (see matrix)
440
- - **Need data analysis / computation?** Use `python_repl` via `scientist` agents (all tiers)
441
- - **Need quick type info or definition lookup?** Use `lsp_hover`/`lsp_goto_definition` directly (orchestrator-direct tools)
442
-
443
- ---
444
-
445
- ## PART 4: NEW FEATURES (v3.1 - v3.4)
446
-
447
- ### Notepad Wisdom System
448
-
449
- Plan-scoped wisdom capture for learnings, decisions, issues, and problems.
450
-
451
- **Location:** `.omc/notepads/{plan-name}/`
452
-
453
- | File | Purpose |
454
- |------|---------|
455
- | `learnings.md` | Technical discoveries and patterns |
456
- | `decisions.md` | Architectural and design decisions |
457
- | `issues.md` | Known issues and workarounds |
458
- | `problems.md` | Blockers and challenges |
459
-
460
- **API:** `initPlanNotepad()`, `addLearning()`, `addDecision()`, `addIssue()`, `addProblem()`, `getWisdomSummary()`, `readPlanWisdom()`
461
-
462
- ### Delegation Categories
463
-
464
- Semantic task categorization that auto-maps to model tier, temperature, and thinking budget.
465
-
466
- | Category | Tier | Temperature | Thinking | Use For |
467
- |----------|------|-------------|----------|---------|
468
- | `visual-engineering` | HIGH | 0.7 | high | UI/UX, frontend, design systems |
469
- | `ultrabrain` | HIGH | 0.3 | max | Complex reasoning, architecture, deep debugging |
470
- | `artistry` | MEDIUM | 0.9 | medium | Creative solutions, brainstorming |
471
- | `quick` | LOW | 0.1 | low | Simple lookups, basic operations |
472
- | `writing` | MEDIUM | 0.5 | medium | Documentation, technical writing |
473
-
474
- **Auto-detection:** Categories detect from prompt keywords automatically.
475
-
476
- ### Directory Diagnostics Tool
477
-
478
- Project-level type checking via `lsp_diagnostics_directory` tool.
479
-
480
- **Strategies:**
481
- - `auto` (default) - Auto-selects best strategy, prefers tsc when tsconfig.json exists
482
- - `tsc` - Fast, uses TypeScript compiler
483
- - `lsp` - Fallback, iterates files via Language Server
484
-
485
- **Usage:** Check entire project for errors before commits or after refactoring.
486
-
487
- ### Session Resume
247
+ **Execution modes:** `autopilot`, `ralph`, `ultrawork`, `ultrapilot`, `ecomode`, `swarm`, `pipeline`, `ultraqa`
488
248
 
489
- Background agents can be resumed with full context via `resume-session` tool.
249
+ **Planning:** `plan`, `ralplan`, `review`, `analyze`
490
250
 
491
- ### Ultrapilot (v3.4)
251
+ **Search:** `deepsearch`, `deepinit`
492
252
 
493
- Parallel autopilot with up to 5 concurrent workers for 3-5x faster execution.
253
+ **Silent activators:** `frontend-ui-ux` (UI work), `git-master` (commits), `orchestrate` (always active)
494
254
 
495
- **Trigger:** "ultrapilot", "parallel build", "swarm build"
255
+ **Utilities:** `cancel`, `note`, `learner`, `tdd`, `research`, `build-fix`, `code-review`, `security-review`
496
256
 
497
- **How it works:**
498
- 1. Task decomposition engine breaks complex tasks into parallelizable subtasks
499
- 2. File ownership coordinator assigns non-overlapping file sets to workers
500
- 3. Workers execute in parallel, coordinator manages shared files
501
- 4. Results integrated with conflict detection
257
+ **Setup:** `omc-setup`, `mcp-setup`, `hud`, `doctor`, `help`
502
258
 
503
- **Best for:** Multi-component systems, fullstack apps, large refactoring
259
+ Run `/oh-my-claudecode:help` for the complete skill reference with triggers.
504
260
 
505
- **State files:**
506
- - `.omc/state/ultrapilot-state.json` - Session state
507
- - `.omc/state/ultrapilot-ownership.json` - File ownership
508
-
509
- ### Swarm (v3.4)
510
-
511
- N coordinated agents with atomic task claiming from shared pool.
512
-
513
- **Usage:** `/swarm 5:executor "fix all TypeScript errors"`
261
+ ### Choosing the Right Mode
514
262
 
515
- **Features:**
516
- - Shared task list with pending/claimed/done status
517
- - 5-minute timeout per task with auto-release
518
- - Clean completion when all tasks done
263
+ See [Mode Selection Guide](./shared/mode-selection-guide.md) for detailed decision flowcharts and examples.
519
264
 
520
- ### Pipeline (v3.4)
265
+ #### Mode Relationships
521
266
 
522
- Sequential agent chaining with data passing between stages.
267
+ See [Mode Hierarchy](./shared/mode-hierarchy.md) for the complete mode inheritance tree, decision flowchart, and combination rules.
523
268
 
524
- **Built-in Presets:**
525
- | Preset | Stages |
526
- |--------|--------|
527
- | `review` | explore architect critic executor |
528
- | `implement` | planner → executor → tdd-guide |
529
- | `debug` | explore → architect → build-fixer |
530
- | `research` | parallel(researcher, explore) → architect → writer |
531
- | `refactor` | explore → architect-medium → executor-high → qa-tester |
532
- | `security` | explore → security-reviewer → executor → security-reviewer-low |
269
+ Key points:
270
+ - **ralph includes ultrawork**: ralph is a persistence wrapper around ultrawork's parallelism
271
+ - **ecomode is a modifier**: It only changes model routing, not execution behavior
272
+ - **autopilot can transition**: To ralph (persistence) or ultraqa (QA cycling)
533
273
 
534
- **Custom pipelines:** `/pipeline explore:haiku -> architect:opus -> executor:sonnet`
274
+ ### All 33 Agents
535
275
 
536
- ### Unified Cancel (v3.4)
276
+ See [Agent Tiers Reference](./shared/agent-tiers.md) for the complete agent tier matrix with all 33 agents organized by domain and tier.
537
277
 
538
- Smart cancellation that auto-detects active mode.
278
+ Always use `oh-my-claudecode:` prefix when calling via Task tool.
539
279
 
540
- **Usage:** `/cancel` or just say "cancelomc", "stopomc"
280
+ ### Agent Selection Guide
541
281
 
542
- Auto-detects and cancels: autopilot, ultrapilot, ralph, ultrawork, ultraqa, ecomode, swarm, pipeline
543
- Use `--force` or `--all` to clear ALL states.
282
+ See [Agent Tiers Reference](./shared/agent-tiers.md) for the complete agent-to-task selection guide.
544
283
 
545
- ### Verification Module (v3.4)
284
+ ### MCP Tools & Agent Capabilities
546
285
 
547
- Reusable verification protocol for workflows.
286
+ See [Agent Tiers Reference](./shared/agent-tiers.md) for the full MCP tool assignment matrix.
548
287
 
549
- **Standard Checks:** BUILD, TEST, LINT, FUNCTIONALITY, ARCHITECT, TODO, ERROR_FREE
288
+ **Key tools:**
289
+ - LSP tools (hover, definition, references, diagnostics) for code intelligence
290
+ - AST grep (search, replace) for structural code patterns
291
+ - Python REPL for data analysis
550
292
 
551
- **Evidence validation:** 5-minute freshness detection, pass/fail tracking
293
+ **Unassigned tools** (use directly): `lsp_hover`, `lsp_goto_definition`, `lsp_prepare_rename`, `lsp_rename`, `lsp_code_actions`, `lsp_code_action_resolve`, `lsp_servers`
552
294
 
553
- ### State Management (v3.4)
295
+ ---
554
296
 
555
- Standardized state file locations.
297
+ ## PART 4: NEW FEATURES & SHARED DOCUMENTATION
556
298
 
557
- **Standard paths for all mode state files:**
558
- - Primary: `.omc/state/{name}.json` (local, per-project)
559
- - Global backup: `~/.omc/state/{name}.json` (global, session continuity)
299
+ ### Features (v3.1 - v3.4)
560
300
 
561
- **Mode State Files:**
562
- | Mode | State File |
563
- |------|-----------|
564
- | ralph | `ralph-state.json` |
565
- | autopilot | `autopilot-state.json` |
566
- | ultrapilot | `ultrapilot-state.json` |
567
- | ultrawork | `ultrawork-state.json` |
568
- | ecomode | `ecomode-state.json` |
569
- | ultraqa | `ultraqa-state.json` |
570
- | pipeline | `pipeline-state.json` |
571
- | swarm | `swarm-summary.json` + `swarm-active.marker` |
301
+ See [Features Reference](./shared/features.md) for complete documentation of:
302
+ - Notepad Wisdom System (plan-scoped learning capture)
303
+ - Delegation Categories (auto-mapping to model tier/temperature)
304
+ - Directory Diagnostics Tool (project-level type checking)
305
+ - Session Resume (background agent continuation)
306
+ - Ultrapilot (parallel autopilot, 3-5x faster)
307
+ - Swarm (N-agent coordinated task pool)
308
+ - Pipeline (sequential agent chaining with presets)
309
+ - Unified Cancel (smart mode detection)
310
+ - Verification Module (standard checks, evidence validation)
311
+ - State Management (standardized paths, `~/.claude/` prohibition)
572
312
 
573
- **Important:** Never store OMC state in `~/.claude/` - that directory is reserved for Claude Code itself.
313
+ ### Shared Reference Documents
574
314
 
575
- Legacy locations auto-migrated on read.
315
+ | Topic | Document |
316
+ |-------|----------|
317
+ | Agent Tiers & Selection | [agent-tiers.md](./shared/agent-tiers.md) |
318
+ | Mode Hierarchy & Relationships | [mode-hierarchy.md](./shared/mode-hierarchy.md) |
319
+ | Mode Selection Guide | [mode-selection-guide.md](./shared/mode-selection-guide.md) |
320
+ | Verification Tiers | [verification-tiers.md](./shared/verification-tiers.md) |
321
+ | Features Reference | [features.md](./shared/features.md) |
576
322
 
577
323
  ---
578
324
 
@@ -599,75 +345,33 @@ When in planning/interview mode, use the `AskUserQuestion` tool for preference q
599
345
  **Applies to**: Plan skill, planning interviews
600
346
  **Question types**: Preference, Requirement, Scope, Constraint, Risk tolerance
601
347
 
602
- ### Mandatory Architect Verification
603
-
604
- **HARD RULE: Never claim completion without Architect approval.**
605
-
606
- ```
607
- 1. Complete all work
608
- 2. Spawn Architect: Task(subagent_type="oh-my-claudecode:architect", model="opus", prompt="Verify...")
609
- 3. WAIT for response
610
- 4. If APPROVED → output completion
611
- 5. If REJECTED → fix issues and re-verify
612
- ```
613
-
614
- ### Verification-Before-Completion Protocol
615
-
616
- **Iron Law:** NO COMPLETION CLAIMS WITHOUT FRESH VERIFICATION EVIDENCE
617
-
618
- Before ANY agent says "done", "fixed", or "complete":
348
+ ### Tiered Architect Verification
619
349
 
620
- | Step | Action |
621
- |------|--------|
622
- | 1 | IDENTIFY: What command proves this claim? |
623
- | 2 | RUN: Execute verification command |
624
- | 3 | READ: Check output - did it pass? |
625
- | 4 | CLAIM: Make claim WITH evidence |
350
+ **HARD RULE: Never claim completion without verification.**
626
351
 
627
- **Red Flags (agent must STOP and verify):**
628
- - Using "should", "probably", "seems to"
629
- - Expressing satisfaction before verification
630
- - Claiming completion without fresh test/build run
352
+ Verification scales with task complexity:
631
353
 
632
- **Evidence Types:**
633
- | Claim | Required Evidence |
634
- |-------|-------------------|
635
- | "Fixed" | Test showing it passes now |
636
- | "Implemented" | lsp_diagnostics clean + build pass |
637
- | "Refactored" | All tests still pass |
638
- | "Debugged" | Root cause identified with file:line |
354
+ | Tier | When | Agent |
355
+ |------|------|-------|
356
+ | LIGHT | <5 files, <100 lines, full tests | architect-low (haiku) |
357
+ | STANDARD | Default | architect-medium (sonnet) |
358
+ | THOROUGH | >20 files, security/architectural | architect (opus) |
639
359
 
640
- ### Parallelization Rules
360
+ See [Verification Tiers](./shared/verification-tiers.md) for complete selection rules.
641
361
 
642
- - **2+ independent tasks** with >30 seconds work Run in parallel
643
- - **Sequential dependencies** → Run in order
644
- - **Quick tasks** (<10 seconds) → Do directly (read, status check)
362
+ **Iron Law:** NO COMPLETION CLAIMS WITHOUT FRESH VERIFICATION EVIDENCE. Always: IDENTIFY what proves the claim, RUN the verification, READ the output, then CLAIM with evidence. Red flags: "should", "probably", "seems to" without a fresh test/build run.
645
363
 
646
- ### Background Execution
364
+ ### Parallelization & Background Execution
647
365
 
648
- **Run in Background** (`run_in_background: true`):
649
- - npm install, pip install, cargo build
650
- - npm run build, make, tsc
651
- - npm test, pytest, cargo test
652
-
653
- **Run Blocking** (foreground):
654
- - git status, ls, pwd
655
- - File reads/edits
656
- - Quick commands
657
-
658
- Maximum 5 concurrent background tasks.
366
+ - **Parallel:** 2+ independent tasks with >30s work each
367
+ - **Sequential:** Tasks with dependencies
368
+ - **Direct:** Quick tasks (<10s) like reads, status checks
369
+ - **Background** (`run_in_background: true`): installs, builds, tests (max 5 concurrent)
370
+ - **Foreground:** git, file ops, quick commands
659
371
 
660
372
  ### Context Persistence
661
373
 
662
- Use `<remember>` tags to survive conversation compaction:
663
-
664
- | Tag | Lifetime | Use For |
665
- |-----|----------|---------|
666
- | `<remember>info</remember>` | 7 days | Session-specific context |
667
- | `<remember priority>info</remember>` | Permanent | Critical patterns/facts |
668
-
669
- **DO capture:** Architecture decisions, error resolutions, user preferences
670
- **DON'T capture:** Progress (use todos), temporary state, info in AGENTS.md
374
+ Use `<remember>` tags to survive compaction: `<remember>info</remember>` (7 days) or `<remember priority>info</remember>` (permanent). Capture architecture decisions, error resolutions, user preferences. Do NOT capture progress (use todos) or info already in AGENTS.md.
671
375
 
672
376
  ### Continuation Enforcement
673
377
 
@@ -686,19 +390,7 @@ Before concluding ANY session, verify:
686
390
 
687
391
  ## PART 6: ANNOUNCEMENTS
688
392
 
689
- When you activate a major behavior, announce it:
690
-
691
- > "I'm activating **autopilot** for full autonomous execution from idea to working code."
692
-
693
- > "I'm activating **ralph-loop** to ensure this task completes fully."
694
-
695
- > "I'm activating **ultrawork** for maximum parallel execution."
696
-
697
- > "I'm starting a **planning session** - I'll interview you about requirements."
698
-
699
- > "I'm delegating this to the **architect** agent for deep analysis."
700
-
701
- This keeps users informed without requiring them to request features.
393
+ Announce major behavior activations to keep users informed: autopilot, ralph-loop, ultrawork, planning sessions, architect delegation. Example: "I'm activating **autopilot** for full autonomous execution."
702
394
 
703
395
  ---
704
396
 
@@ -713,8 +405,26 @@ Say "setup omc" or run `/oh-my-claudecode:omc-setup` to configure. After that, e
713
405
  - `/oh-my-claudecode:doctor` - Diagnose and fix installation issues
714
406
  - `/oh-my-claudecode:hud setup` - Install/repair HUD statusline
715
407
 
408
+ ### Task Tool Selection
409
+
410
+ During setup, you can choose your preferred task management tool:
411
+
412
+ | Tool | Description | Persistence |
413
+ |------|-------------|-------------|
414
+ | Built-in Tasks | Claude Code's native TaskCreate/TodoWrite | Session only |
415
+ | Beads (bd) | Git-backed distributed issue tracker | Permanent |
416
+ | Beads-Rust (br) | Lightweight Rust port of beads | Permanent |
417
+
418
+ To change your task tool:
419
+ 1. Run `/oh-my-claudecode:omc-setup`
420
+ 2. Select your preferred tool in Step 3.8.5
421
+ 3. Restart Claude Code for context injection to take effect
422
+
423
+ If using beads/beads-rust, usage instructions are automatically injected at session start.
424
+
716
425
  ---
717
426
 
718
427
  ## Migration
719
428
 
720
429
  For migration guides from earlier versions, see [MIGRATION.md](./MIGRATION.md).
430
+ <!-- OMC:END -->
@@ -277,6 +277,5 @@ No migration needed! The enforcer is backward compatible:
277
277
 
278
278
  ## Related
279
279
 
280
- - [Model Routing](./MODEL-ROUTING.md) - Intelligent task complexity analysis
281
280
  - [Agent Definitions](./AGENTS.md) - Complete agent reference
282
- - [Delegation Categories](./DELEGATION-CATEGORIES.md) - Semantic task grouping
281
+ - [Features Reference](./FEATURES.md) - Model routing and delegation categories
package/docs/MIGRATION.md CHANGED
@@ -7,7 +7,7 @@ This guide covers all migration paths for oh-my-claudecode. Find your current ve
7
7
  ## Table of Contents
8
8
 
9
9
  - [v3.5.3 → v3.5.5: Test Fixes & Cleanup](#v353--v355-test-fixes--cleanup)
10
- - [v3.5.2 → v3.5.3: Skill Consolidation](#v35--v36-skill-consolidation)
10
+ - [v3.5.2 → v3.5.3: Skill Consolidation](#v352--v353-skill-consolidation)
11
11
  - [v2.x → v3.0: Package Rename & Auto-Activation](#v2x--v30-package-rename--auto-activation)
12
12
  - [v3.0 → v3.1: Notepad Wisdom & Enhanced Features](#v30--v31-notepad-wisdom--enhanced-features)
13
13
  - [v3.x → v4.0: Major Architecture Overhaul](#v3x--v40-major-architecture-overhaul)
package/docs/REFERENCE.md CHANGED
@@ -227,6 +227,9 @@ Always use `oh-my-claudecode:` prefix when calling via Task tool.
227
227
  | `git-master` | Git expert for atomic commits and history | (silent activation) |
228
228
  | `tdd` | TDD enforcement: test-first development | `/oh-my-claudecode:tdd` |
229
229
  | `learner` | Extract reusable skill from session | `/oh-my-claudecode:learner` |
230
+ | `build-fix` | Fix build and TypeScript errors | `/oh-my-claudecode:build-fix` |
231
+ | `code-review` | Comprehensive code review | `/oh-my-claudecode:code-review` |
232
+ | `security-review` | Security vulnerability detection | `/oh-my-claudecode:security-review` |
230
233
 
231
234
  ### Utility Skills
232
235
 
@@ -286,7 +289,20 @@ All skills are available as slash commands with the prefix `/oh-my-claudecode:`.
286
289
 
287
290
  ## Hooks System
288
291
 
289
- Oh-my-claudecode includes 19 lifecycle hooks that enhance Claude Code's behavior.
292
+ Oh-my-claudecode includes 31 lifecycle hooks that enhance Claude Code's behavior.
293
+
294
+ ### Execution Mode Hooks
295
+
296
+ | Hook | Description |
297
+ |------|-------------|
298
+ | `autopilot` | Full autonomous execution from idea to working code |
299
+ | `ultrawork` | Maximum parallel agent execution |
300
+ | `ralph` | Persistence until verified complete |
301
+ | `ultrapilot` | Parallel autopilot with file ownership |
302
+ | `ultraqa` | QA cycling until goal met |
303
+ | `swarm` | Coordinated multi-agent with SQLite task claiming |
304
+ | `mode-registry` | Tracks active execution mode (incl. ecomode) |
305
+ | `persistent-mode` | Maintains mode state across sessions |
290
306
 
291
307
  ### Core Hooks
292
308
 
@@ -295,18 +311,18 @@ Oh-my-claudecode includes 19 lifecycle hooks that enhance Claude Code's behavior
295
311
  | `rules-injector` | Dynamic rules injection with YAML frontmatter parsing |
296
312
  | `omc-orchestrator` | Enforces orchestrator behavior and delegation |
297
313
  | `auto-slash-command` | Automatic slash command detection and execution |
298
- | `keyword-detector` | Magic keyword detection (ultrawork, search, analyze) |
299
- | `ralph-loop` | Self-referential development loop management |
314
+ | `keyword-detector` | Magic keyword detection (ultrawork, ralph, etc.) |
300
315
  | `todo-continuation` | Ensures todo list completion |
301
- | `notepad` | Compaction-resilient memory system with three-tier storage |
316
+ | `notepad` | Compaction-resilient memory system |
317
+ | `learner` | Skill extraction from conversations |
302
318
 
303
319
  ### Context & Recovery
304
320
 
305
321
  | Hook | Description |
306
322
  |------|-------------|
307
- | `context-window-limit-recovery` | Token limit error handling and recovery |
323
+ | `recovery` | Edit error, session, and context window recovery |
308
324
  | `preemptive-compaction` | Context usage monitoring to prevent limits |
309
- | `session-recovery` | Session state recovery on crashes |
325
+ | `pre-compact` | Pre-compaction processing |
310
326
  | `directory-readme-injector` | README context injection |
311
327
 
312
328
  ### Quality & Validation
@@ -316,16 +332,20 @@ Oh-my-claudecode includes 19 lifecycle hooks that enhance Claude Code's behavior
316
332
  | `comment-checker` | BDD detection and directive filtering |
317
333
  | `thinking-block-validator` | Extended thinking validation |
318
334
  | `empty-message-sanitizer` | Empty message handling |
319
- | `edit-error-recovery` | Automatic recovery from edit errors |
320
- | `post-tool-use` | Remember tag auto-capture to notepad system |
335
+ | `permission-handler` | Permission requests and validation |
336
+ | `think-mode` | Extended thinking detection |
321
337
 
322
- ### Environment & Notifications
338
+ ### Coordination & Environment
323
339
 
324
340
  | Hook | Description |
325
341
  |------|-------------|
342
+ | `subagent-tracker` | Tracks spawned sub-agents |
343
+ | `session-end` | Session termination handling |
326
344
  | `non-interactive-env` | CI/non-interactive environment handling |
327
345
  | `agent-usage-reminder` | Reminder to use specialized agents |
328
346
  | `background-notification` | Background task completion notifications |
347
+ | `plugin-patterns` | Plugin pattern detection |
348
+ | `setup` | Initial setup and configuration |
329
349
 
330
350
  ---
331
351