aiwcli 0.15.5 → 0.15.7

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 (299) hide show
  1. package/README.md +6 -3
  2. package/dist/capabilities/branch/adapters.d.ts +2 -0
  3. package/dist/capabilities/branch/adapters.js +21 -0
  4. package/dist/capabilities/branch/contracts.d.ts +57 -0
  5. package/dist/capabilities/branch/contracts.js +1 -0
  6. package/dist/capabilities/branch/control-plane.d.ts +2 -0
  7. package/dist/capabilities/branch/control-plane.js +343 -0
  8. package/dist/capabilities/branch/runtime-core.d.ts +5 -0
  9. package/dist/capabilities/branch/runtime-core.js +36 -0
  10. package/dist/capabilities/installation/control-plane/clean-command.d.ts +41 -0
  11. package/dist/capabilities/installation/control-plane/clean-command.js +196 -0
  12. package/dist/capabilities/installation/control-plane/clear-command.d.ts +160 -0
  13. package/dist/capabilities/installation/control-plane/clear-command.js +1220 -0
  14. package/dist/capabilities/installation/control-plane/init-command.d.ts +81 -0
  15. package/dist/capabilities/installation/control-plane/init-command.js +449 -0
  16. package/dist/capabilities/launch/contracts.d.ts +51 -0
  17. package/dist/capabilities/launch/contracts.js +1 -0
  18. package/dist/capabilities/launch/control-plane/execute-launch.d.ts +2 -0
  19. package/dist/capabilities/launch/control-plane/execute-launch.js +222 -0
  20. package/dist/capabilities/launch/runtime-core/launch-options.d.ts +14 -0
  21. package/dist/capabilities/launch/runtime-core/launch-options.js +69 -0
  22. package/dist/cli/base-command.d.ts +18 -0
  23. package/dist/cli/base-command.js +55 -0
  24. package/dist/commands/branch.d.ts +0 -20
  25. package/dist/commands/branch.js +24 -416
  26. package/dist/commands/clean.d.ts +1 -41
  27. package/dist/commands/clean.js +1 -196
  28. package/dist/commands/clear.d.ts +1 -161
  29. package/dist/commands/clear.js +1 -1121
  30. package/dist/commands/init/index.d.ts +1 -98
  31. package/dist/commands/init/index.js +4 -478
  32. package/dist/commands/launch.d.ts +36 -11
  33. package/dist/commands/launch.js +135 -159
  34. package/dist/lib/base-command.d.ts +1 -114
  35. package/dist/lib/base-command.js +1 -153
  36. package/dist/lib/claude-settings-types.d.ts +31 -19
  37. package/dist/lib/context/context-formatter.d.ts +74 -0
  38. package/dist/lib/context/context-formatter.js +493 -0
  39. package/dist/lib/context/context-selector.d.ts +42 -0
  40. package/dist/lib/context/context-selector.js +451 -0
  41. package/dist/lib/context/context-store.d.ts +100 -0
  42. package/dist/lib/context/context-store.js +618 -0
  43. package/dist/lib/context/plan-manager.d.ts +54 -0
  44. package/dist/lib/context/plan-manager.js +282 -0
  45. package/dist/lib/context/task-tracker.d.ts +44 -0
  46. package/dist/lib/context/task-tracker.js +146 -0
  47. package/dist/lib/core-ide-base.d.ts +4 -0
  48. package/dist/lib/core-ide-base.js +77 -0
  49. package/dist/lib/core-installer.d.ts +5 -0
  50. package/dist/lib/core-installer.js +54 -0
  51. package/dist/lib/git-exclude-manager.d.ts +2 -2
  52. package/dist/lib/git-exclude-manager.js +3 -3
  53. package/dist/lib/hooks/hook-utils.d.ts +143 -0
  54. package/dist/lib/hooks/hook-utils.js +609 -0
  55. package/dist/lib/hooks/session-end-logic.d.ts +5 -0
  56. package/dist/lib/hooks/session-end-logic.js +63 -0
  57. package/dist/lib/hooks-merger.js +25 -19
  58. package/dist/lib/ide-path-resolver.d.ts +19 -7
  59. package/dist/lib/ide-path-resolver.js +25 -9
  60. package/dist/lib/install-state.d.ts +34 -0
  61. package/dist/lib/install-state.js +161 -0
  62. package/dist/lib/launch-options.d.ts +1 -0
  63. package/dist/lib/launch-options.js +1 -0
  64. package/dist/lib/lsp-patch.d.ts +12 -0
  65. package/dist/lib/lsp-patch.js +156 -0
  66. package/dist/lib/multiplexer.d.ts +57 -0
  67. package/dist/lib/multiplexer.js +19 -0
  68. package/dist/lib/multiplexers/psmux.d.ts +75 -0
  69. package/dist/lib/multiplexers/psmux.js +384 -0
  70. package/dist/lib/multiplexers/tmux.d.ts +44 -0
  71. package/dist/lib/multiplexers/tmux.js +262 -0
  72. package/dist/lib/mux-utils.d.ts +5 -0
  73. package/dist/lib/mux-utils.js +42 -0
  74. package/dist/lib/paths.d.ts +2 -2
  75. package/dist/lib/paths.js +2 -2
  76. package/dist/lib/platform-commands.d.ts +27 -0
  77. package/dist/lib/platform-commands.js +49 -0
  78. package/dist/lib/runtime/aiw-cli.d.ts +37 -0
  79. package/dist/lib/runtime/aiw-cli.js +74 -0
  80. package/dist/lib/runtime/atomic-write.d.ts +19 -0
  81. package/dist/lib/runtime/atomic-write.js +121 -0
  82. package/dist/lib/runtime/cli-args.d.ts +55 -0
  83. package/dist/lib/runtime/cli-args.js +185 -0
  84. package/dist/lib/runtime/constants.d.ts +56 -0
  85. package/dist/lib/runtime/constants.js +230 -0
  86. package/dist/lib/runtime/executable-policy.d.ts +16 -0
  87. package/dist/lib/runtime/executable-policy.js +57 -0
  88. package/dist/lib/runtime/git-state.d.ts +9 -0
  89. package/dist/lib/runtime/git-state.js +59 -0
  90. package/dist/lib/runtime/inference.d.ts +37 -0
  91. package/dist/lib/runtime/inference.js +262 -0
  92. package/dist/lib/runtime/lint-dispatch.d.ts +40 -0
  93. package/dist/lib/runtime/lint-dispatch.js +285 -0
  94. package/dist/lib/runtime/logger.d.ts +66 -0
  95. package/dist/lib/runtime/logger.js +201 -0
  96. package/dist/lib/runtime/models.d.ts +14 -0
  97. package/dist/lib/runtime/models.js +14 -0
  98. package/dist/lib/runtime/platform-adapter.d.ts +7 -0
  99. package/dist/lib/runtime/platform-adapter.js +21 -0
  100. package/dist/lib/runtime/preflight.d.ts +24 -0
  101. package/dist/lib/runtime/preflight.js +65 -0
  102. package/dist/lib/runtime/sentinel-ipc.d.ts +14 -0
  103. package/dist/lib/runtime/sentinel-ipc.js +67 -0
  104. package/dist/lib/runtime/state-io.d.ts +30 -0
  105. package/dist/lib/runtime/state-io.js +174 -0
  106. package/dist/lib/runtime/stop-words.d.ts +20 -0
  107. package/dist/lib/runtime/stop-words.js +150 -0
  108. package/dist/lib/runtime/subprocess-utils.d.ts +29 -0
  109. package/dist/lib/runtime/subprocess-utils.js +96 -0
  110. package/dist/lib/runtime/tmux-preflight.d.ts +13 -0
  111. package/dist/lib/runtime/tmux-preflight.js +78 -0
  112. package/dist/lib/runtime/utils.d.ts +54 -0
  113. package/dist/lib/runtime/utils.js +162 -0
  114. package/dist/lib/sentinel-wrapper.d.ts +9 -0
  115. package/dist/lib/sentinel-wrapper.js +20 -0
  116. package/dist/lib/shell-quoting.d.ts +5 -0
  117. package/dist/lib/shell-quoting.js +17 -0
  118. package/dist/lib/spawn-errors.d.ts +6 -0
  119. package/dist/lib/spawn-errors.js +15 -0
  120. package/dist/lib/spawn.js +5 -11
  121. package/dist/lib/template-installer.d.ts +4 -5
  122. package/dist/lib/template-installer.js +36 -34
  123. package/dist/lib/template-resolver.d.ts +6 -7
  124. package/dist/lib/template-resolver.js +26 -21
  125. package/dist/lib/template-settings-reconstructor.d.ts +7 -2
  126. package/dist/lib/template-settings-reconstructor.js +76 -45
  127. package/dist/lib/terminal-strategy.d.ts +11 -0
  128. package/dist/lib/terminal-strategy.js +49 -0
  129. package/dist/lib/terminal.d.ts +28 -0
  130. package/dist/lib/terminal.js +162 -112
  131. package/dist/lib/tmux-pane-placement.d.ts +17 -0
  132. package/dist/lib/tmux-pane-placement.js +58 -0
  133. package/dist/lib/tmux-primitives.d.ts +5 -0
  134. package/dist/lib/tmux-primitives.js +15 -0
  135. package/dist/lib/tmux-session.d.ts +32 -0
  136. package/dist/lib/tmux-session.js +86 -0
  137. package/dist/lib/tty-detection.js +1 -1
  138. package/dist/lib/types.d.ts +168 -0
  139. package/dist/lib/types.js +6 -0
  140. package/dist/lib/version.d.ts +1 -1
  141. package/dist/lib/version.js +1 -1
  142. package/dist/platform/launch.d.ts +10 -0
  143. package/dist/platform/launch.js +10 -0
  144. package/dist/templates/CLAUDE.md +31 -40
  145. package/dist/templates/cc-native/.claude/settings.json +27 -27
  146. package/dist/templates/cc-native/CC-NATIVE-README.md +1 -1
  147. package/dist/templates/cc-native/TEMPLATE-SCHEMA.md +10 -9
  148. package/dist/templates/cc-native/_cc-native/CLAUDE.md +18 -18
  149. package/dist/templates/cc-native/_cc-native/artifacts/CLAUDE.md +3 -3
  150. package/dist/templates/cc-native/_cc-native/artifacts/lib/format.ts +14 -14
  151. package/dist/templates/cc-native/_cc-native/artifacts/lib/tracker.ts +1 -1
  152. package/dist/templates/cc-native/_cc-native/artifacts/lib/write.ts +3 -3
  153. package/dist/templates/cc-native/_cc-native/cc-native.config.json +3 -3
  154. package/dist/templates/cc-native/_cc-native/hooks/CLAUDE.md +16 -15
  155. package/dist/templates/cc-native/_cc-native/hooks/cc-native-plan-review.ts +3 -3
  156. package/dist/templates/cc-native/_cc-native/hooks/enhance_plan_post_subagent.ts +2 -2
  157. package/dist/templates/cc-native/_cc-native/hooks/enhance_plan_post_write.ts +2 -2
  158. package/dist/templates/cc-native/_cc-native/hooks/mark_questions_asked.ts +3 -3
  159. package/dist/templates/cc-native/_cc-native/hooks/plan_questions_early.ts +2 -2
  160. package/dist/templates/cc-native/_cc-native/hooks/validate_task_prompt.ts +3 -3
  161. package/dist/templates/cc-native/_cc-native/lib-ts/CLAUDE.md +8 -8
  162. package/dist/templates/cc-native/_cc-native/lib-ts/aggregate-agents.ts +1 -1
  163. package/dist/templates/cc-native/_cc-native/lib-ts/cc-native-state.ts +4 -4
  164. package/dist/templates/cc-native/_cc-native/lib-ts/cli-output-parser.ts +1 -1
  165. package/dist/templates/cc-native/_cc-native/lib-ts/config.ts +1 -1
  166. package/dist/templates/cc-native/_cc-native/lib-ts/debug.ts +1 -1
  167. package/dist/templates/cc-native/_cc-native/lib-ts/json-parser.ts +1 -1
  168. package/dist/templates/cc-native/_cc-native/lib-ts/plan-discovery.ts +2 -2
  169. package/dist/templates/cc-native/_cc-native/lib-ts/rlm/logger.ts +1 -1
  170. package/dist/templates/cc-native/_cc-native/lib-ts/rlm/retrieval-pipeline.ts +2 -2
  171. package/dist/templates/cc-native/_cc-native/lib-ts/rlm/types.ts +1 -1
  172. package/dist/templates/cc-native/_cc-native/lib-ts/settings.ts +8 -8
  173. package/dist/templates/cc-native/_cc-native/lib-ts/state.ts +3 -3
  174. package/dist/templates/cc-native/_cc-native/lib-ts/tsconfig.json +2 -2
  175. package/dist/templates/cc-native/_cc-native/lib-ts/types.ts +3 -3
  176. package/dist/templates/cc-native/_cc-native/plan-review/CLAUDE.md +3 -1
  177. package/dist/templates/cc-native/_cc-native/plan-review/lib/__tests__/agent-selection.test.ts +345 -0
  178. package/dist/templates/cc-native/_cc-native/plan-review/lib/__tests__/preflight.test.ts +344 -0
  179. package/dist/templates/cc-native/_cc-native/plan-review/lib/agent-selection.ts +37 -15
  180. package/dist/templates/cc-native/_cc-native/plan-review/lib/corroboration.ts +16 -69
  181. package/dist/templates/cc-native/_cc-native/plan-review/lib/orchestrator.ts +1 -1
  182. package/dist/templates/cc-native/_cc-native/plan-review/lib/output-builder.ts +1 -1
  183. package/dist/templates/cc-native/_cc-native/plan-review/lib/plan-questions.ts +2 -2
  184. package/dist/templates/cc-native/_cc-native/plan-review/lib/preflight.ts +56 -26
  185. package/dist/templates/cc-native/_cc-native/plan-review/lib/review-pipeline.ts +7 -7
  186. package/dist/templates/cc-native/_cc-native/plan-review/lib/reviewers/agent.ts +4 -4
  187. package/dist/templates/cc-native/_cc-native/plan-review/lib/reviewers/base/base-agent.ts +3 -3
  188. package/dist/templates/cc-native/_cc-native/plan-review/lib/reviewers/index.ts +1 -1
  189. package/dist/templates/cc-native/_cc-native/plan-review/lib/reviewers/providers/claude-agent.ts +2 -2
  190. package/dist/templates/cc-native/_cc-native/plan-review/lib/reviewers/providers/codex-agent.ts +4 -4
  191. package/dist/templates/cc-native/_cc-native/plan-review/lib/reviewers/providers/gemini-agent.ts +1 -1
  192. package/dist/templates/cc-native/_cc-native/plan-review/lib/reviewers/providers/orchestrator-claude-agent.ts +5 -6
  193. package/dist/templates/core/.codex/workflows/codex.md +17 -0
  194. package/dist/templates/core/.codex/workflows/handoff.md +5 -0
  195. package/dist/templates/core/.codex/workflows/meta-plan.md +7 -0
  196. package/dist/templates/core/.cognition/AGENTS.md +5 -0
  197. package/dist/templates/core/.cognition/config.json +12 -0
  198. package/dist/templates/{_shared → core}/.windsurf/workflows/handoff.md +1 -1
  199. package/dist/templates/{_shared → core}/.windsurf/workflows/meta-plan.md +1 -1
  200. package/dist/templates/core/hooks-ts/_utils/git-state.ts +2 -0
  201. package/dist/templates/{_shared → core}/hooks-ts/archive_plan.ts +14 -23
  202. package/dist/templates/core/hooks-ts/codex_explorer.ts +160 -0
  203. package/dist/templates/{_shared → core}/hooks-ts/context_monitor.ts +23 -55
  204. package/dist/templates/{_shared → core}/hooks-ts/file-suggestion.ts +4 -3
  205. package/dist/templates/{_shared → core}/hooks-ts/lint_after_edit.ts +7 -9
  206. package/dist/templates/{_shared → core}/hooks-ts/pre_compact.ts +5 -5
  207. package/dist/templates/{_shared → core}/hooks-ts/session_end.ts +38 -78
  208. package/dist/templates/{_shared → core}/hooks-ts/session_start.ts +5 -5
  209. package/dist/templates/core/hooks-ts/task_create_capture.ts +32 -0
  210. package/dist/templates/{_shared → core}/hooks-ts/task_update_capture.ts +9 -24
  211. package/dist/templates/core/hooks-ts/user_prompt_submit.ts +46 -0
  212. package/dist/templates/{_shared → core}/lib-ts/CLAUDE.md +27 -16
  213. package/dist/templates/{_shared → core}/lib-ts/agent-exec/backends/headless.ts +3 -2
  214. package/dist/templates/{_shared → core}/lib-ts/agent-exec/backends/tmux.ts +44 -15
  215. package/dist/templates/{_shared → core}/lib-ts/agent-exec/base-agent.ts +6 -4
  216. package/dist/templates/{_shared → core}/lib-ts/agent-exec/execution-backend.ts +1 -1
  217. package/dist/templates/{_shared → core}/lib-ts/agent-exec/index.ts +2 -2
  218. package/dist/templates/{_shared → core}/lib-ts/agent-exec/structured-output.ts +4 -5
  219. package/dist/templates/{_shared → core}/lib-ts/context/CLAUDE.md +9 -6
  220. package/dist/templates/{_shared → core}/lib-ts/context/context-formatter.ts +16 -21
  221. package/dist/templates/{_shared → core}/lib-ts/context/context-selector.ts +8 -6
  222. package/dist/templates/{_shared → core}/lib-ts/context/context-store.ts +32 -20
  223. package/dist/templates/{_shared → core}/lib-ts/context/plan-manager.ts +19 -15
  224. package/dist/templates/{_shared → core}/lib-ts/context/task-tracker.ts +3 -3
  225. package/dist/templates/core/lib-ts/hooks/context-monitor-logic.ts +32 -0
  226. package/dist/templates/{_shared/lib-ts/base → core/lib-ts/hooks}/hook-utils.ts +168 -41
  227. package/dist/templates/core/lib-ts/hooks/prompt-binding-logic.ts +80 -0
  228. package/dist/templates/core/lib-ts/hooks/session-end-logic.ts +93 -0
  229. package/dist/templates/core/lib-ts/package.json +19 -0
  230. package/dist/templates/core/lib-ts/runtime/agent-launcher.ts +295 -0
  231. package/dist/templates/core/lib-ts/runtime/aiw-cli.ts +106 -0
  232. package/dist/templates/{_shared/lib-ts/base → core/lib-ts/runtime}/atomic-write.ts +12 -7
  233. package/dist/templates/{_shared/lib-ts/base → core/lib-ts/runtime}/cli-args.ts +8 -6
  234. package/dist/templates/{_shared/lib-ts/base → core/lib-ts/runtime}/constants.ts +326 -324
  235. package/dist/templates/core/lib-ts/runtime/executable-policy.ts +89 -0
  236. package/dist/templates/{_shared/lib-ts/base → core/lib-ts/runtime}/git-state.ts +6 -4
  237. package/dist/templates/{_shared/lib-ts/base → core/lib-ts/runtime}/inference.ts +59 -10
  238. package/dist/templates/{_shared/lib-ts/base → core/lib-ts/runtime}/lint-dispatch.ts +25 -23
  239. package/dist/templates/{_shared/lib-ts/base → core/lib-ts/runtime}/logger.ts +32 -29
  240. package/dist/templates/{_shared/lib-ts/base → core/lib-ts/runtime}/models.ts +2 -2
  241. package/dist/templates/core/lib-ts/runtime/platform-adapter.ts +33 -0
  242. package/dist/templates/{_shared/lib-ts/base → core/lib-ts/runtime}/preflight.ts +4 -3
  243. package/dist/templates/core/lib-ts/runtime/sentinel-ipc.ts +91 -0
  244. package/dist/templates/{_shared/lib-ts/base → core/lib-ts/runtime}/state-io.ts +11 -7
  245. package/dist/templates/core/lib-ts/runtime/stop-words.ts +185 -0
  246. package/dist/templates/core/lib-ts/runtime/subprocess-utils.ts +147 -0
  247. package/dist/templates/core/lib-ts/runtime/tmux-preflight.ts +93 -0
  248. package/dist/templates/{_shared/lib-ts/base → core/lib-ts/runtime}/utils.ts +4 -3
  249. package/dist/templates/{_shared → core}/lib-ts/templates/formatters.ts +7 -5
  250. package/dist/templates/{_shared → core}/lib-ts/templates/plan-context.ts +2 -1
  251. package/dist/templates/{_shared → core}/lib-ts/tsconfig.json +3 -1
  252. package/dist/templates/{_shared → core}/lib-ts/types.ts +78 -77
  253. package/dist/templates/core/scripts/resolve-run.ts +61 -0
  254. package/dist/templates/{_shared → core}/scripts/resolve_context.ts +3 -3
  255. package/dist/templates/{_shared → core}/scripts/status_line.ts +25 -20
  256. package/dist/templates/core/skills/codex/CLAUDE.md +78 -0
  257. package/dist/templates/{_shared → core}/skills/codex/SKILL.md +21 -18
  258. package/dist/templates/{_shared → core}/skills/codex/lib/codex-watcher.ts +76 -103
  259. package/dist/templates/{_shared → core}/skills/codex/scripts/launch-codex.ts +119 -133
  260. package/dist/templates/{_shared → core}/skills/codex/scripts/watch-codex.ts +6 -4
  261. package/dist/templates/core/skills/devin/CLAUDE.md +65 -0
  262. package/dist/templates/core/skills/devin/SKILL.md +73 -0
  263. package/dist/templates/core/skills/devin/lib/devin-watcher.ts +280 -0
  264. package/dist/templates/core/skills/devin/scripts/launch-devin.ts +257 -0
  265. package/dist/templates/{_shared → core}/skills/handoff-system/CLAUDE.md +436 -433
  266. package/dist/templates/{_shared → core}/skills/handoff-system/lib/document-generator.ts +9 -7
  267. package/dist/templates/{_shared → core}/skills/handoff-system/lib/handoff-reader.ts +6 -4
  268. package/dist/templates/{_shared → core}/skills/handoff-system/scripts/resume_handoff.ts +10 -8
  269. package/dist/templates/{_shared → core}/skills/handoff-system/scripts/save_handoff.ts +12 -10
  270. package/dist/templates/{_shared → core}/skills/handoff-system/workflows/handoff-resume.md +2 -2
  271. package/dist/templates/{_shared → core}/skills/handoff-system/workflows/handoff.md +6 -5
  272. package/dist/templates/{_shared → core}/skills/meta-plan/CLAUDE.md +2 -1
  273. package/dist/templates/{_shared → core}/skills/meta-plan/workflows/meta-plan.md +8 -7
  274. package/oclif.manifest.json +89 -13
  275. package/package.json +13 -12
  276. package/dist/templates/_shared/.claude/settings.json +0 -120
  277. package/dist/templates/_shared/.claude/skills/codex/SKILL.md +0 -35
  278. package/dist/templates/_shared/.claude/skills/handoff/SKILL.md +0 -13
  279. package/dist/templates/_shared/.claude/skills/handoff-resume/SKILL.md +0 -13
  280. package/dist/templates/_shared/.claude/skills/meta-plan/SKILL.md +0 -43
  281. package/dist/templates/_shared/.codex/workflows/codex.md +0 -11
  282. package/dist/templates/_shared/.codex/workflows/handoff.md +0 -226
  283. package/dist/templates/_shared/.codex/workflows/meta-plan.md +0 -347
  284. package/dist/templates/_shared/hooks-ts/_utils/git-state.ts +0 -2
  285. package/dist/templates/_shared/hooks-ts/task_create_capture.ts +0 -48
  286. package/dist/templates/_shared/hooks-ts/user_prompt_submit.ts +0 -93
  287. package/dist/templates/_shared/lib-ts/base/launchers/tmux-launcher.ts +0 -173
  288. package/dist/templates/_shared/lib-ts/base/launchers/window-launcher.ts +0 -93
  289. package/dist/templates/_shared/lib-ts/base/launchers/wt-launcher.ts +0 -64
  290. package/dist/templates/_shared/lib-ts/base/pane-launcher.ts +0 -55
  291. package/dist/templates/_shared/lib-ts/base/sentinel-ipc.ts +0 -87
  292. package/dist/templates/_shared/lib-ts/base/stop-words.ts +0 -184
  293. package/dist/templates/_shared/lib-ts/base/subprocess-utils.ts +0 -249
  294. package/dist/templates/_shared/lib-ts/base/tmux-driver.ts +0 -341
  295. package/dist/templates/_shared/lib-ts/base/tmux-pane-placement.ts +0 -78
  296. package/dist/templates/_shared/lib-ts/package.json +0 -20
  297. package/dist/templates/_shared/scripts/resolve-run.ts +0 -62
  298. package/dist/templates/_shared/skills/codex/CLAUDE.md +0 -70
  299. /package/dist/templates/{_shared → core}/lib-ts/agent-exec/backends/index.ts +0 -0
@@ -0,0 +1,168 @@
1
+ /**
2
+ * Shared type definitions for the lib-ts library.
3
+ * All field names use snake_case for JSON backward compatibility with state.json.
4
+ * See SPEC.md §1 for full behavioral specification.
5
+ */
6
+ export type Mode = "active" | "has_staged_work" | "idle";
7
+ export interface ContextState {
8
+ created_at: string;
9
+ /** @deprecated Use work_consumed instead */
10
+ handoff_consumed?: boolean;
11
+ handoff_path: null | string;
12
+ id: string;
13
+ last_active: string;
14
+ last_session: LastSession | null;
15
+ method: string;
16
+ mode: Mode;
17
+ next_artifact_type: "handoff" | "plan" | null;
18
+ plan_anchors: string[];
19
+ /** @deprecated Use work_consumed instead */
20
+ plan_consumed?: boolean;
21
+ plan_hash: null | string;
22
+ plan_hash_consumed: null | string;
23
+ plan_id: null | string;
24
+ plan_path: null | string;
25
+ plan_signature: null | string;
26
+ session_ids: string[];
27
+ status: "active" | "completed";
28
+ summary: string;
29
+ tags: string[];
30
+ tasks: Task[];
31
+ work_consumed: boolean;
32
+ }
33
+ export interface GitState {
34
+ branch?: string;
35
+ last_commit_short?: string;
36
+ uncommitted_files?: string[];
37
+ }
38
+ export interface LastSession {
39
+ context_remaining_pct?: number;
40
+ context_warnings_fired?: number[];
41
+ git_state?: GitState;
42
+ save_reason?: string;
43
+ saved_at?: string;
44
+ session_id?: string;
45
+ transcript_path?: string;
46
+ }
47
+ export interface Task {
48
+ active_form: string;
49
+ completed_at: null | string;
50
+ created_at: string;
51
+ description: string;
52
+ evidence: string;
53
+ files_changed: string[];
54
+ id: string;
55
+ session_id?: string;
56
+ status: "blocked" | "completed" | "in_progress" | "pending";
57
+ subject: string;
58
+ work_summary: string;
59
+ }
60
+ export interface IndexEntry {
61
+ last_active: string;
62
+ mode: string;
63
+ summary: string;
64
+ }
65
+ export interface IndexFile {
66
+ contexts: Record<string, IndexEntry>;
67
+ sessions: Record<string, string>;
68
+ updated_at: string;
69
+ version: "3.0";
70
+ }
71
+ export interface LogEntry {
72
+ component?: string;
73
+ data?: unknown;
74
+ hook: string;
75
+ level: "debug" | "error" | "info" | "warn";
76
+ msg: string;
77
+ tb?: string;
78
+ ts: string;
79
+ }
80
+ export interface HookInput {
81
+ context_window?: {
82
+ context_window_size?: number;
83
+ current_usage?: {
84
+ cache_creation_input_tokens?: number;
85
+ cache_read_input_tokens?: number;
86
+ input_tokens?: number;
87
+ output_tokens?: number;
88
+ };
89
+ };
90
+ cwd?: string;
91
+ hook_event_name: string;
92
+ permission_mode?: string;
93
+ session_id?: string;
94
+ source?: string;
95
+ tool_input?: Record<string, unknown>;
96
+ tool_name?: string;
97
+ tool_result?: string;
98
+ transcript_path?: string;
99
+ }
100
+ export interface HookOutput {
101
+ decision?: "block";
102
+ hookSpecificOutput?: {
103
+ additionalContext?: string;
104
+ hookEventName?: string;
105
+ permissionDecision?: "allow" | "ask" | "deny";
106
+ permissionDecisionReason?: string;
107
+ updatedInput?: Record<string, unknown>;
108
+ };
109
+ reason?: string;
110
+ }
111
+ export interface PermissionRequestOutput {
112
+ decision: {
113
+ behavior: "allow" | "deny";
114
+ message?: string;
115
+ updatedInput?: Record<string, unknown>;
116
+ updatedPermissions?: Record<string, unknown>;
117
+ };
118
+ }
119
+ export interface InferenceResult {
120
+ error?: string;
121
+ latency_ms: number;
122
+ output: string;
123
+ success: boolean;
124
+ }
125
+ export interface HandoffDocument {
126
+ active_tasks: Task[];
127
+ completed_tasks_this_session: Array<{
128
+ subject: string;
129
+ }>;
130
+ context_folder: string;
131
+ context_id: string;
132
+ context_summary: string;
133
+ created_at: string;
134
+ events_log_path: string;
135
+ file_path: null | string;
136
+ important_notes: string[];
137
+ next_steps: string[];
138
+ plan_path: null | string;
139
+ reason: string;
140
+ session_id: string;
141
+ work_summary: string;
142
+ }
143
+ export interface HandoffSections {
144
+ completedWork: null | string;
145
+ context: null | string;
146
+ deadEnds: null | string;
147
+ decisions: null | string;
148
+ index: null | string;
149
+ pending: null | string;
150
+ plan: null | string;
151
+ }
152
+ export interface CaretCommand {
153
+ ends: string[];
154
+ new_context_desc: null | string;
155
+ remaining_prompt: string;
156
+ select: null | string;
157
+ }
158
+ export type { PreflightCheckResult, PreflightCommandConfig } from "./runtime/preflight.js";
159
+ /** Configuration for a CLI review agent */
160
+ export interface AgentConfig {
161
+ categories: string[];
162
+ description: string;
163
+ focus: string;
164
+ model: string;
165
+ name: string;
166
+ provider: string;
167
+ system_prompt: string;
168
+ }
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Shared type definitions for the lib-ts library.
3
+ * All field names use snake_case for JSON backward compatibility with state.json.
4
+ * See SPEC.md §1 for full behavioral specification.
5
+ */
6
+ export {};
@@ -51,7 +51,7 @@ interface VersionCheckResult {
51
51
  * - "claude 0.1.0"
52
52
  * - "claude version 0.1.0"
53
53
  *
54
- * Returns null on any failure (command not found, invalid output, etc.)
54
+ * Returns null on unknown failure (command not found, invalid output, etc.)
55
55
  * to support graceful degradation.
56
56
  *
57
57
  * @returns Version string (e.g., "0.1.0") or null if unavailable
@@ -45,7 +45,7 @@ const INCOMPATIBLE_VERSIONS = new Set(['0.0.9']);
45
45
  * - "claude 0.1.0"
46
46
  * - "claude version 0.1.0"
47
47
  *
48
- * Returns null on any failure (command not found, invalid output, etc.)
48
+ * Returns null on unknown failure (command not found, invalid output, etc.)
49
49
  * to support graceful degradation.
50
50
  *
51
51
  * @returns Version string (e.g., "0.1.0") or null if unavailable
@@ -0,0 +1,10 @@
1
+ export { ProcessSpawnError } from '../lib/errors.js';
2
+ export { ensureLspPatch } from '../lib/lsp-patch.js';
3
+ export { detectMultiplexer, type SplitPaneResult } from '../lib/multiplexer.js';
4
+ export { readSentinelExitCode, waitForSentinelFile } from '../lib/runtime/sentinel-ipc.js';
5
+ export { findExecutable } from '../lib/runtime/subprocess-utils.js';
6
+ export { quoteForSh } from '../lib/shell-quoting.js';
7
+ export { spawnProcess } from '../lib/spawn.js';
8
+ export { launchTerminal } from '../lib/terminal.js';
9
+ export { configureTmuxSession, findToolPath } from '../lib/tmux-session.js';
10
+ export { checkVersionCompatibility, getClaudeCodeVersion } from '../lib/version.js';
@@ -0,0 +1,10 @@
1
+ export { ProcessSpawnError } from '../lib/errors.js';
2
+ export { ensureLspPatch } from '../lib/lsp-patch.js';
3
+ export { detectMultiplexer } from '../lib/multiplexer.js';
4
+ export { readSentinelExitCode, waitForSentinelFile } from '../lib/runtime/sentinel-ipc.js';
5
+ export { findExecutable } from '../lib/runtime/subprocess-utils.js';
6
+ export { quoteForSh } from '../lib/shell-quoting.js';
7
+ export { spawnProcess } from '../lib/spawn.js';
8
+ export { launchTerminal } from '../lib/terminal.js';
9
+ export { configureTmuxSession, findToolPath } from '../lib/tmux-session.js';
10
+ export { checkVersionCompatibility, getClaudeCodeVersion } from '../lib/version.js';
@@ -6,8 +6,8 @@ Write all method outputs to `_output/{method}/`:
6
6
 
7
7
  ```
8
8
  _output/
9
- ├── gsd/.planning/ # GSD planning artifacts
10
- ├── bmad/docs/ # BMAD documentation
9
+ ├── cc-native/plans/ # Example method artifacts
10
+ ├── planning-with-files/plans/ # Example method artifacts
11
11
  └── {method}/{subdir}/ # Other method outputs
12
12
  ```
13
13
 
@@ -17,16 +17,17 @@ Include `_output/{method}/` in template `.gitignore`.
17
17
 
18
18
  ## Directory Structure
19
19
 
20
- Each template installs into `.aiwcli/` (method files) and `.{ide}/` (IDE integration). The `_shared/` template provides cross-method infrastructure used by all methods.
20
+ Template source lives under `src/templates/`. At install time, `core/` is copied into `.aiwcli/_core/` and used as the runtime base. Method templates add method-owned files (for example `.aiwcli/_cc-native/*`) and IDE-specific stubs.
21
21
 
22
22
  ```
23
23
  packages/cli/src/templates/
24
- ├── _shared/ # Cross-method infrastructure (installed by all methods)
24
+ ├── core/ # Core runtime source (installed as .aiwcli/_core)
25
25
  │ ├── hooks-ts/ # Shared TypeScript hook scripts (context, tasks, sessions)
26
26
  │ └── lib-ts/ # Shared TypeScript libraries
27
- │ ├── base/ # Core: atomic-write, constants, inference, utils
27
+ │ ├── runtime/ # Core runtime helpers
28
28
  │ ├── context/ # Context CRUD, selection, formatting, plans, tasks
29
- │ ├── handoff/ # Session handoff document generation
29
+ │ ├── hooks/ # Hook utility APIs
30
+ │ ├── agent-exec/ # Agent execution backends
30
31
  │ └── templates/ # Output formatters, plan context templates
31
32
 
32
33
  ├── cc-native/ # CC-Native method template
@@ -35,19 +36,6 @@ packages/cli/src/templates/
35
36
  │ ├── .windsurf/ # Windsurf: workflows/
36
37
  │ └── .gitignore
37
38
 
38
- ├── gsd/ # GSD method template
39
- │ ├── .aiwcli/_gsd/ # Templates, workflows, hooks, config, docs
40
- │ ├── .claude/ # Claude Code: settings.json, commands/, agents/
41
- │ ├── .windsurf/ # Windsurf: workflows/
42
- │ ├── GSD-README.md
43
- │ ├── TEMPLATE-SCHEMA.md
44
- │ └── MIGRATION.md
45
-
46
- ├── bmad/ # BMAD method template
47
- │ ├── .aiwcli/_bmad/ # Agents, workflows, teams, testarch, config
48
- │ ├── .claude/ # Claude Code: settings.json, commands/
49
- │ └── ...
50
-
51
39
  ├── planning-with-files/ # Planning-with-Files method template
52
40
  │ ├── .claude/ # Claude Code: settings.json, skills/
53
41
  │ ├── .windsurf/ # Windsurf: workflows/, scripts/
@@ -60,7 +48,7 @@ packages/cli/src/templates/
60
48
 
61
49
  | Tier | Location | Purpose |
62
50
  |------|----------|---------|
63
- | Shared | `_shared/` | Cross-method hooks and libraries (context management, task tracking, sessions) |
51
+ | Core Source | `core/` | Source for runtime payload copied into `.aiwcli/_core/` |
64
52
  | Method | `_{method}/` or `.aiwcli/_{method}/` | Method-specific templates, workflows, hooks, config |
65
53
  | IDE | `.{ide}/` | IDE-specific command stubs, settings, workflow definitions |
66
54
  | Config | `.{ide}/settings.json` | Hooks, model prefs, method settings (merged on install) |
@@ -72,12 +60,12 @@ packages/cli/src/templates/
72
60
  When multiple templates install, settings.json files merge:
73
61
 
74
62
  **Hook merging** - Hooks combine by lifecycle event
75
- **Method namespacing** - Use method name as top-level key: `"gsd": { ... }`
63
+ **Method namespacing** - Use method name as top-level key: `"cc-native": { ... }`
76
64
 
77
65
  ```json
78
66
  {
79
- "gsd": { "planReview": { "enabled": true } },
80
- "bmad": { "agents": { "defaultModel": "claude-3-opus" } }
67
+ "cc-native": { "planReview": { "enabled": true } },
68
+ "planning-with-files": { "planning": { "enabled": true } }
81
69
  }
82
70
  ```
83
71
 
@@ -85,7 +73,7 @@ When multiple templates install, settings.json files merge:
85
73
 
86
74
  ## Hooks
87
75
 
88
- **Location:** Hooks live in `.aiwcli/_shared/hooks-ts/` (cross-method, TypeScript) and `.aiwcli/_{method}/hooks/` (method-specific). They are configured in `.{ide}/settings.json`, not placed in IDE directories.
76
+ **Location:** Runtime hooks live in `.aiwcli/_core/hooks-ts/` (cross-method, TypeScript) and optional method hooks in `.aiwcli/_{method}/hooks/`. Template source paths remain under `core/` and `_{method}/` and are wired via reconstructed `.{ide}/settings.json`.
89
77
 
90
78
  **Configuration:**
91
79
  ```json
@@ -93,7 +81,7 @@ When multiple templates install, settings.json files merge:
93
81
  "hooks": {
94
82
  "PostToolUse": [{
95
83
  "matcher": "Write",
96
- "hooks": [{ "type": "command", "command": "bun run .aiwcli/_cc-native/hooks/cc-native-plan-review.ts", "timeout": 300000 }]
84
+ "hooks": [{ "type": "command", "command": "bun .aiwcli/_core/scripts/resolve-run.ts .aiwcli/_core/hooks-ts/lint_after_edit.ts", "timeout": 10000 }]
97
85
  }]
98
86
  }
99
87
  }
@@ -147,7 +135,7 @@ Load and execute `_{method}/workflows/{name}.md`.
147
135
  | Reference Type | Pattern |
148
136
  |----------------|---------|
149
137
  | Templates | `_{method}/templates/FILE.md.template` |
150
- | Workflows (Claude) | `/gsd:workflow-name` (maps to `.claude/commands/gsd/workflow-name.md`) |
138
+ | Workflows (Claude) | `/{method}:workflow-name` (maps to `.claude/commands/{method}/workflow-name.md`) |
151
139
  | Workflows (Windsurf) | `workflow-name` from method workflows |
152
140
  | Outputs | `_output/{method}/{subdir}/FILE.md` |
153
141
 
@@ -157,13 +145,13 @@ Load and execute `_{method}/workflows/{name}.md`.
157
145
 
158
146
  | Element | Convention | Example |
159
147
  |---------|------------|---------|
160
- | Method folder | `_{lowercase}` | `_gsd` |
148
+ | Method folder | `_{lowercase}` | `_cc-native` |
161
149
  | Template file | `UPPERCASE.md.template` | `PROJECT.md.template` |
162
150
  | Workflow file | `kebab-case.md` | `new-project.md` |
163
151
  | Output file | `UPPERCASE.md` | `PROJECT.md` |
164
- | Hook file | `{method}-{name}.{ext}` | `gsd-plan-review.ts` |
165
- | Settings key | `{method}` | `"gsd": {}` |
166
- | Readme | `{METHOD}-README.md` | `GSD-README.md` |
152
+ | Hook file | `{method}-{name}.{ext}` | `cc-native-plan-review.ts` |
153
+ | Settings key | `{method}` | `"cc-native": {}` |
154
+ | Readme | `{METHOD}-README.md` | `CC-NATIVE-README.md` |
167
155
 
168
156
  ---
169
157
 
@@ -202,31 +190,34 @@ Load and execute `_{method}/workflows/{name}.md`.
202
190
  - Full workflows in IDE command files
203
191
  - Hardcoded paths without method namespace
204
192
  - Putting hook scripts directly in IDE directories (`.claude/hooks/`)
205
- - Creating `_shared/` directories inside method templates (e.g., `cc-native/_shared/`). All shared code lives in `packages/cli/src/templates/_shared/`. Method templates reference shared code via imports at runtime, not by copying.
193
+ - Creating `core/` directories inside method templates (e.g., `cc-native/core/`). All shared code lives in `packages/cli/src/templates/core/`. Method templates reference shared code via imports at runtime, not by copying.
206
194
 
207
195
  ---
208
196
 
209
197
  ## System Co-location Pattern
210
198
 
211
- Cohesive subsystems are organized as self-contained folders, following the handoff system model. Each system folder lives at the `_shared/` or `_cc-native/` level and contains:
199
+ Cohesive subsystems are organized as self-contained folders. In source they live under `core/` or method folders; at runtime, `core` subsystems execute from `.aiwcli/_core/*`.
212
200
 
213
201
  ```
214
202
  {system-name}/
215
203
  ├── CLAUDE.md ← Spec: lifecycle, API reference, design decisions, gotchas
216
204
  ├── lib/ ← TypeScript implementation (imported by hooks and other systems)
217
- ├── agents/ ← Agent spec .md files used by this system (if any)
218
- ├── scripts/ ← Standalone entry points invoked independently (if any)
219
- └── workflows/ ← User-facing procedural workflow docs (if any)
205
+ ├── agents/ ← Agent spec .md files used by this system (if present)
206
+ ├── scripts/ ← Standalone entry points invoked independently (if present)
207
+ └── workflows/ ← User-facing procedural workflow docs (if present)
220
208
  ```
221
209
 
222
210
  **Existing systems following this pattern:**
223
- - `_shared/skills/handoff-system/` — handoff creation and restoration
224
- - `_cc-native/plan-review/` — multi-agent plan review pipeline
225
- - `_cc-native/artifacts/` — review artifact generation and tracking
226
- - `_cc-native/lib-ts/rlm/` — retrieval-augmented learning memory
211
+ - `core/skills/handoff-system/` — handoff creation and restoration
212
+ - `core/skills/codex/` — Codex launch + watch integration
213
+ - `core/skills/meta-plan/` — prompt amplification workflow
214
+ - `cc-native/_cc-native/plan-review/` — method-specific plan review pipeline
215
+ - `cc-native/_cc-native/artifacts/` — method-specific review artifacts
216
+ - `cc-native/_cc-native/lib-ts/rlm/` — method-specific retrieval memory
227
217
 
228
218
  **Hooks are NOT co-located with their owning system.**
229
219
  Claude Code hooks are path-referenced in `.claude/settings.json` at install time.
230
220
  Moving a hook file requires settings.json updates — high blast-radius, fragile.
231
- Hooks live in `_shared/hooks-ts/` or `_cc-native/hooks/`. Each system's CLAUDE.md
221
+ Core hooks live in `core/hooks-ts/` source (installed to `.aiwcli/_core/hooks-ts/`), and method hooks live in method folders (for example `cc-native/_cc-native/hooks/`). Each system's CLAUDE.md
232
222
  lists the hooks that invoke it under a "Hooks" section.
223
+
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "statusLine": {
3
3
  "type": "command",
4
- "command": "NO_COLOR= FORCE_COLOR=2 bun ~/.aiwcli/bin/resolve-run.ts .aiwcli/_shared/scripts/status_line.ts"
4
+ "command": "bun .aiwcli/_core/scripts/resolve-run.ts .aiwcli/_core/scripts/status_line.ts"
5
5
  },
6
6
  "fileSuggestion": {
7
7
  "type": "command",
8
- "command": "bun ~/.aiwcli/bin/resolve-run.ts .aiwcli/_shared/hooks-ts/file-suggestion.ts"
8
+ "command": "bun .aiwcli/_core/scripts/resolve-run.ts .aiwcli/_core/hooks-ts/file-suggestion.ts"
9
9
  },
10
10
  "hooks": {
11
11
  "UserPromptSubmit": [
@@ -13,7 +13,7 @@
13
13
  "hooks": [
14
14
  {
15
15
  "type": "command",
16
- "command": "bun ~/.aiwcli/bin/resolve-run.ts .aiwcli/_shared/hooks-ts/user_prompt_submit.ts",
16
+ "command": "bun .aiwcli/_core/scripts/resolve-run.ts .aiwcli/_core/hooks-ts/user_prompt_submit.ts",
17
17
  "timeout": 10000
18
18
  }
19
19
  ]
@@ -22,10 +22,19 @@
22
22
  "hooks": [
23
23
  {
24
24
  "type": "command",
25
- "command": "bun ~/.aiwcli/bin/resolve-run.ts .aiwcli/_cc-native/hooks/plan_questions_early.ts",
25
+ "command": "bun .aiwcli/_core/scripts/resolve-run.ts .aiwcli/_cc-native/hooks/plan_questions_early.ts",
26
26
  "timeout": 3000
27
27
  }
28
28
  ]
29
+ },
30
+ {
31
+ "hooks": [
32
+ {
33
+ "type": "command",
34
+ "command": "bun .aiwcli/_core/scripts/resolve-run.ts .aiwcli/_core/hooks-ts/codex_explorer.ts",
35
+ "timeout": 55000
36
+ }
37
+ ]
29
38
  }
30
39
  ],
31
40
  "PostToolUse": [
@@ -34,7 +43,7 @@
34
43
  "hooks": [
35
44
  {
36
45
  "type": "command",
37
- "command": "bun ~/.aiwcli/bin/resolve-run.ts .aiwcli/_shared/hooks-ts/context_monitor.ts",
46
+ "command": "bun .aiwcli/_core/scripts/resolve-run.ts .aiwcli/_core/hooks-ts/context_monitor.ts",
38
47
  "timeout": 5000
39
48
  }
40
49
  ]
@@ -44,7 +53,7 @@
44
53
  "hooks": [
45
54
  {
46
55
  "type": "command",
47
- "command": "bun ~/.aiwcli/bin/resolve-run.ts .aiwcli/_shared/hooks-ts/task_create_capture.ts",
56
+ "command": "bun .aiwcli/_core/scripts/resolve-run.ts .aiwcli/_core/hooks-ts/task_create_capture.ts",
48
57
  "timeout": 3000
49
58
  }
50
59
  ]
@@ -54,7 +63,7 @@
54
63
  "hooks": [
55
64
  {
56
65
  "type": "command",
57
- "command": "bun ~/.aiwcli/bin/resolve-run.ts .aiwcli/_shared/hooks-ts/task_update_capture.ts",
66
+ "command": "bun .aiwcli/_core/scripts/resolve-run.ts .aiwcli/_core/hooks-ts/task_update_capture.ts",
58
67
  "timeout": 3000
59
68
  }
60
69
  ]
@@ -64,7 +73,7 @@
64
73
  "hooks": [
65
74
  {
66
75
  "type": "command",
67
- "command": "bun ~/.aiwcli/bin/resolve-run.ts .aiwcli/_shared/hooks-ts/archive_plan.ts",
76
+ "command": "bun .aiwcli/_core/scripts/resolve-run.ts .aiwcli/_core/hooks-ts/archive_plan.ts",
68
77
  "timeout": 5000
69
78
  }
70
79
  ]
@@ -74,7 +83,7 @@
74
83
  "hooks": [
75
84
  {
76
85
  "type": "command",
77
- "command": "bun ~/.aiwcli/bin/resolve-run.ts .aiwcli/_shared/hooks-ts/lint_after_edit.ts",
86
+ "command": "bun .aiwcli/_core/scripts/resolve-run.ts .aiwcli/_core/hooks-ts/lint_after_edit.ts",
78
87
  "timeout": 10000
79
88
  }
80
89
  ]
@@ -84,7 +93,7 @@
84
93
  "hooks": [
85
94
  {
86
95
  "type": "command",
87
- "command": "bun ~/.aiwcli/bin/resolve-run.ts .aiwcli/_cc-native/hooks/mark_questions_asked.ts",
96
+ "command": "bun .aiwcli/_core/scripts/resolve-run.ts .aiwcli/_cc-native/hooks/mark_questions_asked.ts",
88
97
  "timeout": 3000
89
98
  }
90
99
  ]
@@ -94,7 +103,7 @@
94
103
  "hooks": [
95
104
  {
96
105
  "type": "command",
97
- "command": "bun ~/.aiwcli/bin/resolve-run.ts .aiwcli/_cc-native/hooks/enhance_plan_post_write.ts",
106
+ "command": "bun .aiwcli/_core/scripts/resolve-run.ts .aiwcli/_cc-native/hooks/enhance_plan_post_write.ts",
98
107
  "timeout": 5000
99
108
  }
100
109
  ]
@@ -104,7 +113,7 @@
104
113
  "hooks": [
105
114
  {
106
115
  "type": "command",
107
- "command": "bun ~/.aiwcli/bin/resolve-run.ts .aiwcli/_cc-native/hooks/enhance_plan_post_subagent.ts",
116
+ "command": "bun .aiwcli/_core/scripts/resolve-run.ts .aiwcli/_cc-native/hooks/enhance_plan_post_subagent.ts",
108
117
  "timeout": 10000,
109
118
  "blockOnFail": false
110
119
  }
@@ -116,7 +125,7 @@
116
125
  "hooks": [
117
126
  {
118
127
  "type": "command",
119
- "command": "bun ~/.aiwcli/bin/resolve-run.ts .aiwcli/_shared/hooks-ts/session_start.ts",
128
+ "command": "bun .aiwcli/_core/scripts/resolve-run.ts .aiwcli/_core/hooks-ts/session_start.ts",
120
129
  "timeout": 5000
121
130
  }
122
131
  ]
@@ -127,7 +136,7 @@
127
136
  "hooks": [
128
137
  {
129
138
  "type": "command",
130
- "command": "bun ~/.aiwcli/bin/resolve-run.ts .aiwcli/_shared/hooks-ts/session_end.ts",
139
+ "command": "bun .aiwcli/_core/scripts/resolve-run.ts .aiwcli/_core/hooks-ts/session_end.ts",
131
140
  "timeout": 5000
132
141
  }
133
142
  ]
@@ -138,7 +147,7 @@
138
147
  "hooks": [
139
148
  {
140
149
  "type": "command",
141
- "command": "bun ~/.aiwcli/bin/resolve-run.ts .aiwcli/_shared/hooks-ts/pre_compact.ts",
150
+ "command": "bun .aiwcli/_core/scripts/resolve-run.ts .aiwcli/_core/hooks-ts/pre_compact.ts",
142
151
  "timeout": 5000
143
152
  }
144
153
  ]
@@ -150,7 +159,7 @@
150
159
  "hooks": [
151
160
  {
152
161
  "type": "command",
153
- "command": "bun ~/.aiwcli/bin/resolve-run.ts .aiwcli/_shared/hooks-ts/archive_plan.ts",
162
+ "command": "bun .aiwcli/_core/scripts/resolve-run.ts .aiwcli/_core/hooks-ts/archive_plan.ts",
154
163
  "timeout": 5000
155
164
  }
156
165
  ]
@@ -171,7 +180,7 @@
171
180
  "hooks": [
172
181
  {
173
182
  "type": "command",
174
- "command": "bun ~/.aiwcli/bin/resolve-run.ts .aiwcli/_cc-native/hooks/validate_task_prompt.ts",
183
+ "command": "bun .aiwcli/_core/scripts/resolve-run.ts .aiwcli/_cc-native/hooks/validate_task_prompt.ts",
175
184
  "timeout": 20000
176
185
  }
177
186
  ]
@@ -181,7 +190,7 @@
181
190
  "hooks": [
182
191
  {
183
192
  "type": "command",
184
- "command": "bun ~/.aiwcli/bin/resolve-run.ts .aiwcli/_cc-native/hooks/cc-native-plan-review.ts",
193
+ "command": "bun .aiwcli/_core/scripts/resolve-run.ts .aiwcli/_cc-native/hooks/cc-native-plan-review.ts",
185
194
  "timeout": 5000
186
195
  }
187
196
  ]
@@ -194,14 +203,5 @@
194
203
  },
195
204
  "env": {
196
205
  "CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1"
197
- },
198
- "enabledPlugins": {},
199
- "methods": {
200
- "cc-native": {
201
- "ides": [
202
- "claude"
203
- ],
204
- "installedAt": "2026-02-21T16:59:33.520Z"
205
- }
206
206
  }
207
207
  }
@@ -94,7 +94,7 @@ The brackets indicate optional steps. Research only needs Clarify → Explore
94
94
 
95
95
  ## Context Management (Phase 2 - Shared Infrastructure)
96
96
 
97
- CC-Native uses **direct-state context management** via shared infrastructure in `_shared/`:
97
+ CC-Native uses **direct-state context management** via shared infrastructure in `core/`:
98
98
 
99
99
  ```
100
100
  _output/contexts/
@@ -103,9 +103,9 @@ CC-Native settings are stored in `_cc-native/cc-native.config.json`:
103
103
  "timeout": 30
104
104
  },
105
105
  "agentSelection": {
106
- "simple": { "min": 0, "max": 0 },
107
- "medium": { "min": 1, "max": 2 },
108
- "high": { "min": 2, "max": 4 },
106
+ "simple": { "min": 3, "max": 3 },
107
+ "medium": { "min": 5, "max": 5 },
108
+ "high": { "min": 7, "max": 7 },
109
109
  "fallbackCount": 2
110
110
  }
111
111
  }
@@ -129,12 +129,12 @@ CC-Native settings are stored in `_cc-native/cc-native.config.json`:
129
129
  |---------|---------|---------|
130
130
  | `agentReview.enabled` | Master switch for agent review | `true` |
131
131
  | `agentReview.timeout` | Seconds per agent before timeout | `120` |
132
- | `agentReview.blockOnFail` | Block Claude if any agent fails | `true` |
132
+ | `agentReview.blockOnFail` | Block Claude if unknown agent fails | `true` |
133
133
  | `agentReview.orchestrator.enabled` | Use orchestrator for complexity analysis | `true` |
134
134
  | `agentReview.orchestrator.model` | Model for orchestrator | `haiku` |
135
- | `agentReview.agentSelection.simple` | Agent count for simple plans | `0-0` |
136
- | `agentReview.agentSelection.medium` | Agent count for medium plans | `1-2` |
137
- | `agentReview.agentSelection.high` | Agent count for complex plans | `2-4` |
135
+ | `agentReview.agentSelection.simple` | Agent count for simple plans | `3-3` |
136
+ | `agentReview.agentSelection.medium` | Agent count for medium plans | `5-5` |
137
+ | `agentReview.agentSelection.high` | Agent count for complex plans | `7-7` |
138
138
 
139
139
  ### Environment Variables
140
140
 
@@ -268,7 +268,7 @@ The orchestrator uses a fast model (Haiku) to:
268
268
  - Categorize the plan (code/infrastructure/documentation/life/business/design/research)
269
269
  - Select appropriate agents based on complexity and category
270
270
 
271
- Simple plans skip agent review entirely. Medium/high complexity plans get 1-4 agents based on configuration.
271
+ Plans run a complexity-tiered reviewer set: simple plans use 3 agents, medium plans use 5, and high-complexity plans use 7 (including mandatory reviewers).
272
272
 
273
273
  #### Agent Execution
274
274
 
@@ -297,8 +297,9 @@ Each selected agent:
297
297
 
298
298
  | Version | Changes |
299
299
  |---------|---------|
300
- | 1.4.0 | **Phase 1 Shared Infrastructure**: Event-sourced context management in `_shared/`, contexts in `_output/contexts/`, atomic writes. **BREAKING**: Renamed config.json → cc-native.config.json |
300
+ | 1.4.0 | **Phase 1 Shared Infrastructure**: Event-sourced context management in `core/`, contexts in `_output/contexts/`, atomic writes. **BREAKING**: Renamed config.json → cc-native.config.json |
301
301
  | 1.3.0 | Consolidated CLI + agent review into single unified hook with combined output |
302
302
  | 1.2.0 | Added multi-agent plan review via Claude Code agents, reordered hooks (archive last) |
303
303
  | 1.1.0 | Added plan review via Codex/Gemini with Claude feedback, config.json |
304
304
  | 1.0.0 | Initial release with fix, research, implement workflows |
305
+