@nathapp/nax 0.18.1

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 (459) hide show
  1. package/.gitlab-ci.yml +96 -0
  2. package/BRIEF.md +140 -0
  3. package/CHANGELOG.md +60 -0
  4. package/CLAUDE.md +159 -0
  5. package/README.md +373 -0
  6. package/US-007-IMPLEMENTATION.md +139 -0
  7. package/bin/nax.ts +930 -0
  8. package/biome.json +14 -0
  9. package/bun.lock +168 -0
  10. package/bunfig.toml +11 -0
  11. package/docs/20260216-fix-plan-context-review.md +56 -0
  12. package/docs/20260216-relentless-vs-ngent-comparison.md +208 -0
  13. package/docs/20260216-v02-plan.md +136 -0
  14. package/docs/20260216-v02-review.md +685 -0
  15. package/docs/20260217-dogfood-findings.md +56 -0
  16. package/docs/20260217-p2-plus-plan.md +117 -0
  17. package/docs/20260217-partial-fixes-plan.md +62 -0
  18. package/docs/20260217-plan-analyze-spec.md +117 -0
  19. package/docs/20260217-post-impl-review.md +1137 -0
  20. package/docs/20260217-quick-wins-plan.md +66 -0
  21. package/docs/20260217-split-runner-plan.md +75 -0
  22. package/docs/20260217-v03-impl-plan.md +80 -0
  23. package/docs/20260217-v03-post-impl-review.md +589 -0
  24. package/docs/20260217-v04-impl-plan.md +86 -0
  25. package/docs/20260217-v05-post-impl-review.md +850 -0
  26. package/docs/20260217-v06-post-impl-review.md +817 -0
  27. package/docs/20260218-adr003-port-plan.md +151 -0
  28. package/docs/20260218-review-adr003-verification.md +175 -0
  29. package/docs/20260219-fix-plan-bug16-19.md +79 -0
  30. package/docs/20260219-fix-plan-bug20-22.md +114 -0
  31. package/docs/20260219-plan-llm-routing.md +116 -0
  32. package/docs/20260219-review-bug20-22-fixes.md +135 -0
  33. package/docs/20260219-routing-baseline-keyword.md +63 -0
  34. package/docs/20260220-plan-structured-logging-p1.md +80 -0
  35. package/docs/20260220-plan-structured-logging-p2.md +37 -0
  36. package/docs/20260220-review-llm-routing.md +180 -0
  37. package/docs/20260220-review-post-fix-llm-routing.md +70 -0
  38. package/docs/20260221-fix-plan-relevantfiles-split.md +101 -0
  39. package/docs/20260221-fix-plan-routing-mode.md +125 -0
  40. package/docs/20260221-review-v0.9-implementation.md +379 -0
  41. package/docs/20260222-fix-plan-v091-routing-isolation.md +197 -0
  42. package/docs/20260223-fix-plan-prompt-audit.md +62 -0
  43. package/docs/20260224-nax-roadmap-phases.md +189 -0
  44. package/docs/20260225-phase2-llm-service-layer.md +401 -0
  45. package/docs/20260225-review-v0.10.1.md +187 -0
  46. package/docs/20260303-v010-implementation-plan.md +165 -0
  47. package/docs/CLAUDE.md.bak +191 -0
  48. package/docs/ROADMAP.md +165 -0
  49. package/docs/SPEC-rectification.md +0 -0
  50. package/docs/SPEC.md +324 -0
  51. package/docs/US-001-plugin-loading-verification.md +152 -0
  52. package/docs/architecture-analysis.md +1076 -0
  53. package/docs/bugs/BUG-21-escalation-null-attempts.md +48 -0
  54. package/docs/bugs-from-dogfood-run-c.md +243 -0
  55. package/docs/code-review-20260228.md +612 -0
  56. package/docs/code-review-v0.15.0.md +629 -0
  57. package/docs/hook-lifecycle-test-plan.md +149 -0
  58. package/docs/releases/v0.11.0-and-earlier.md +20 -0
  59. package/docs/releases/v0.12.0.md +15 -0
  60. package/docs/releases/v0.13.0.md +14 -0
  61. package/docs/releases/v0.14.0.md +20 -0
  62. package/docs/releases/v0.14.1.md +36 -0
  63. package/docs/releases/v0.14.2.md +51 -0
  64. package/docs/releases/v0.14.3.md +174 -0
  65. package/docs/releases/v0.14.4.md +94 -0
  66. package/docs/releases/v0.15.0.md +502 -0
  67. package/docs/releases/v0.15.1.md +170 -0
  68. package/docs/releases/v0.15.3.md +193 -0
  69. package/docs/specs/status-file-v0.10.1.md +812 -0
  70. package/docs/v0.10-global-config.md +206 -0
  71. package/docs/v0.10-plugin-system.md +415 -0
  72. package/docs/v0.10-prompt-optimizer.md +234 -0
  73. package/docs/v0.3-spec.md +244 -0
  74. package/docs/v0.4-spec.md +140 -0
  75. package/docs/v0.5-spec.md +237 -0
  76. package/docs/v0.6-spec.md +371 -0
  77. package/docs/v0.7-spec.md +177 -0
  78. package/docs/v0.8-llm-routing.md +206 -0
  79. package/docs/v0.8-structured-logging.md +132 -0
  80. package/docs/v0.9.3-prompt-audit.md +112 -0
  81. package/examples/plugins/console-reporter/index.test.ts +207 -0
  82. package/examples/plugins/console-reporter/index.ts +110 -0
  83. package/nax/config.json +147 -0
  84. package/nax/features/bugfix-v0171/prd.json +52 -0
  85. package/nax/features/config-management/prd.json +108 -0
  86. package/nax/features/config-management/progress.txt +5 -0
  87. package/nax/features/diagnose/acceptance.test.ts +412 -0
  88. package/nax/features/diagnose/prd.json +41 -0
  89. package/nax/features/orchestration-fixes/prd.json +89 -0
  90. package/nax/features/orchestration-fixes/progress.txt +1 -0
  91. package/nax/features/plugin-integration/US-007-VERIFICATION.md +259 -0
  92. package/nax/features/plugin-integration/prd.json +208 -0
  93. package/nax/features/plugin-integration/progress.txt +5 -0
  94. package/nax/features/precheck/prd.json +205 -0
  95. package/nax/features/precheck/progress.txt +15 -0
  96. package/nax/features/structured-logging/prd.json +199 -0
  97. package/nax/features/unlock/prd.json +36 -0
  98. package/package.json +47 -0
  99. package/src/acceptance/fix-generator.ts +348 -0
  100. package/src/acceptance/generator.ts +282 -0
  101. package/src/acceptance/index.ts +30 -0
  102. package/src/acceptance/types.ts +79 -0
  103. package/src/agents/claude-decompose.ts +169 -0
  104. package/src/agents/claude-plan.ts +139 -0
  105. package/src/agents/claude.ts +324 -0
  106. package/src/agents/cost.ts +268 -0
  107. package/src/agents/index.ts +13 -0
  108. package/src/agents/registry.ts +48 -0
  109. package/src/agents/types-extended.ts +133 -0
  110. package/src/agents/types.ts +113 -0
  111. package/src/agents/validation.ts +69 -0
  112. package/src/analyze/classifier.ts +305 -0
  113. package/src/analyze/index.ts +16 -0
  114. package/src/analyze/scanner.ts +175 -0
  115. package/src/analyze/types.ts +51 -0
  116. package/src/cli/accept.ts +108 -0
  117. package/src/cli/analyze-parser.ts +284 -0
  118. package/src/cli/analyze.ts +207 -0
  119. package/src/cli/config.ts +561 -0
  120. package/src/cli/constitution.ts +109 -0
  121. package/src/cli/diagnose-analysis.ts +159 -0
  122. package/src/cli/diagnose-formatter.ts +87 -0
  123. package/src/cli/diagnose.ts +203 -0
  124. package/src/cli/generate.ts +127 -0
  125. package/src/cli/index.ts +37 -0
  126. package/src/cli/init.ts +188 -0
  127. package/src/cli/interact.ts +295 -0
  128. package/src/cli/plan.ts +198 -0
  129. package/src/cli/plugins.ts +111 -0
  130. package/src/cli/prompts.ts +295 -0
  131. package/src/cli/runs.ts +174 -0
  132. package/src/cli/status-cost.ts +151 -0
  133. package/src/cli/status-features.ts +338 -0
  134. package/src/cli/status.ts +13 -0
  135. package/src/commands/common.ts +171 -0
  136. package/src/commands/diagnose.ts +17 -0
  137. package/src/commands/index.ts +8 -0
  138. package/src/commands/logs.ts +384 -0
  139. package/src/commands/precheck.ts +86 -0
  140. package/src/commands/unlock.ts +96 -0
  141. package/src/config/defaults.ts +160 -0
  142. package/src/config/index.ts +22 -0
  143. package/src/config/loader.ts +121 -0
  144. package/src/config/merger.ts +147 -0
  145. package/src/config/path-security.ts +121 -0
  146. package/src/config/paths.ts +27 -0
  147. package/src/config/schema.ts +56 -0
  148. package/src/config/schemas.ts +286 -0
  149. package/src/config/types.ts +423 -0
  150. package/src/config/validate.ts +103 -0
  151. package/src/constitution/generator.ts +191 -0
  152. package/src/constitution/generators/aider.ts +41 -0
  153. package/src/constitution/generators/claude.ts +35 -0
  154. package/src/constitution/generators/cursor.ts +36 -0
  155. package/src/constitution/generators/opencode.ts +38 -0
  156. package/src/constitution/generators/types.ts +33 -0
  157. package/src/constitution/generators/windsurf.ts +36 -0
  158. package/src/constitution/index.ts +10 -0
  159. package/src/constitution/loader.ts +133 -0
  160. package/src/constitution/types.ts +31 -0
  161. package/src/context/auto-detect.ts +227 -0
  162. package/src/context/builder.ts +246 -0
  163. package/src/context/elements.ts +83 -0
  164. package/src/context/formatter.ts +107 -0
  165. package/src/context/generator.ts +129 -0
  166. package/src/context/generators/aider.ts +34 -0
  167. package/src/context/generators/claude.ts +28 -0
  168. package/src/context/generators/cursor.ts +28 -0
  169. package/src/context/generators/opencode.ts +30 -0
  170. package/src/context/generators/windsurf.ts +28 -0
  171. package/src/context/greenfield.ts +114 -0
  172. package/src/context/index.ts +33 -0
  173. package/src/context/injector.ts +279 -0
  174. package/src/context/test-scanner.ts +370 -0
  175. package/src/context/types.ts +98 -0
  176. package/src/errors.ts +67 -0
  177. package/src/execution/batching.ts +157 -0
  178. package/src/execution/crash-recovery.ts +373 -0
  179. package/src/execution/escalation/escalation.ts +44 -0
  180. package/src/execution/escalation/index.ts +13 -0
  181. package/src/execution/escalation/tier-escalation.ts +295 -0
  182. package/src/execution/escalation/tier-outcome.ts +158 -0
  183. package/src/execution/helpers.ts +38 -0
  184. package/src/execution/index.ts +45 -0
  185. package/src/execution/lifecycle/acceptance-loop.ts +272 -0
  186. package/src/execution/lifecycle/headless-formatter.ts +85 -0
  187. package/src/execution/lifecycle/index.ts +12 -0
  188. package/src/execution/lifecycle/parallel-lifecycle.ts +101 -0
  189. package/src/execution/lifecycle/precheck-runner.ts +140 -0
  190. package/src/execution/lifecycle/run-cleanup.ts +81 -0
  191. package/src/execution/lifecycle/run-completion.ts +129 -0
  192. package/src/execution/lifecycle/run-initialization.ts +141 -0
  193. package/src/execution/lifecycle/run-lifecycle.ts +312 -0
  194. package/src/execution/lifecycle/run-setup.ts +204 -0
  195. package/src/execution/lifecycle/story-hooks.ts +38 -0
  196. package/src/execution/lifecycle/story-size-prompts.ts +123 -0
  197. package/src/execution/lock.ts +115 -0
  198. package/src/execution/parallel-executor.ts +216 -0
  199. package/src/execution/parallel.ts +400 -0
  200. package/src/execution/pid-registry.ts +280 -0
  201. package/src/execution/pipeline-result-handler.ts +388 -0
  202. package/src/execution/post-verify-rectification.ts +188 -0
  203. package/src/execution/post-verify.ts +274 -0
  204. package/src/execution/progress.ts +25 -0
  205. package/src/execution/prompts.ts +127 -0
  206. package/src/execution/queue-handler.ts +109 -0
  207. package/src/execution/rectification.ts +13 -0
  208. package/src/execution/runner.ts +377 -0
  209. package/src/execution/sequential-executor.ts +388 -0
  210. package/src/execution/status-file.ts +264 -0
  211. package/src/execution/status-writer.ts +139 -0
  212. package/src/execution/story-context.ts +229 -0
  213. package/src/execution/test-output-parser.ts +14 -0
  214. package/src/execution/verification.ts +72 -0
  215. package/src/hooks/index.ts +2 -0
  216. package/src/hooks/runner.ts +286 -0
  217. package/src/hooks/types.ts +67 -0
  218. package/src/interaction/chain.ts +154 -0
  219. package/src/interaction/index.ts +60 -0
  220. package/src/interaction/init.ts +83 -0
  221. package/src/interaction/plugins/auto.ts +217 -0
  222. package/src/interaction/plugins/cli.ts +300 -0
  223. package/src/interaction/plugins/telegram.ts +384 -0
  224. package/src/interaction/plugins/webhook.ts +258 -0
  225. package/src/interaction/state.ts +171 -0
  226. package/src/interaction/triggers.ts +229 -0
  227. package/src/interaction/types.ts +163 -0
  228. package/src/logger/formatters.ts +84 -0
  229. package/src/logger/index.ts +16 -0
  230. package/src/logger/logger.ts +298 -0
  231. package/src/logger/types.ts +48 -0
  232. package/src/logging/formatter.ts +355 -0
  233. package/src/logging/index.ts +22 -0
  234. package/src/logging/types.ts +93 -0
  235. package/src/metrics/aggregator.ts +190 -0
  236. package/src/metrics/index.ts +14 -0
  237. package/src/metrics/tracker.ts +200 -0
  238. package/src/metrics/types.ts +109 -0
  239. package/src/optimizer/index.ts +62 -0
  240. package/src/optimizer/noop.optimizer.ts +24 -0
  241. package/src/optimizer/rule-based.optimizer.ts +248 -0
  242. package/src/optimizer/types.ts +53 -0
  243. package/src/pipeline/events.ts +130 -0
  244. package/src/pipeline/index.ts +19 -0
  245. package/src/pipeline/runner.ts +161 -0
  246. package/src/pipeline/stages/acceptance.ts +197 -0
  247. package/src/pipeline/stages/completion.ts +99 -0
  248. package/src/pipeline/stages/constitution.ts +63 -0
  249. package/src/pipeline/stages/context.ts +117 -0
  250. package/src/pipeline/stages/execution.ts +194 -0
  251. package/src/pipeline/stages/index.ts +62 -0
  252. package/src/pipeline/stages/optimizer.ts +74 -0
  253. package/src/pipeline/stages/prompt.ts +57 -0
  254. package/src/pipeline/stages/queue-check.ts +103 -0
  255. package/src/pipeline/stages/review.ts +181 -0
  256. package/src/pipeline/stages/routing.ts +81 -0
  257. package/src/pipeline/stages/verify.ts +100 -0
  258. package/src/pipeline/types.ts +167 -0
  259. package/src/plugins/index.ts +31 -0
  260. package/src/plugins/loader.ts +287 -0
  261. package/src/plugins/registry.ts +168 -0
  262. package/src/plugins/types.ts +327 -0
  263. package/src/plugins/validator.ts +352 -0
  264. package/src/prd/index.ts +172 -0
  265. package/src/prd/types.ts +202 -0
  266. package/src/precheck/checks-blockers.ts +391 -0
  267. package/src/precheck/checks-warnings.ts +142 -0
  268. package/src/precheck/checks.ts +30 -0
  269. package/src/precheck/index.ts +247 -0
  270. package/src/precheck/story-size-gate.ts +144 -0
  271. package/src/precheck/types.ts +31 -0
  272. package/src/queue/index.ts +2 -0
  273. package/src/queue/manager.ts +254 -0
  274. package/src/queue/types.ts +54 -0
  275. package/src/review/index.ts +8 -0
  276. package/src/review/runner.ts +172 -0
  277. package/src/review/types.ts +66 -0
  278. package/src/routing/builder.ts +81 -0
  279. package/src/routing/chain.ts +74 -0
  280. package/src/routing/index.ts +16 -0
  281. package/src/routing/loader.ts +58 -0
  282. package/src/routing/router.ts +303 -0
  283. package/src/routing/strategies/adaptive.ts +215 -0
  284. package/src/routing/strategies/index.ts +8 -0
  285. package/src/routing/strategies/keyword.ts +163 -0
  286. package/src/routing/strategies/llm-prompts.ts +209 -0
  287. package/src/routing/strategies/llm.ts +235 -0
  288. package/src/routing/strategies/manual.ts +50 -0
  289. package/src/routing/strategy.ts +99 -0
  290. package/src/tdd/cleanup.ts +111 -0
  291. package/src/tdd/index.ts +23 -0
  292. package/src/tdd/isolation.ts +123 -0
  293. package/src/tdd/orchestrator.ts +383 -0
  294. package/src/tdd/prompts.ts +270 -0
  295. package/src/tdd/rectification-gate.ts +183 -0
  296. package/src/tdd/session-runner.ts +179 -0
  297. package/src/tdd/types.ts +81 -0
  298. package/src/tdd/verdict.ts +271 -0
  299. package/src/tui/App.tsx +265 -0
  300. package/src/tui/components/AgentPanel.tsx +75 -0
  301. package/src/tui/components/CostOverlay.tsx +118 -0
  302. package/src/tui/components/HelpOverlay.tsx +107 -0
  303. package/src/tui/components/StatusBar.tsx +63 -0
  304. package/src/tui/components/StoriesPanel.tsx +177 -0
  305. package/src/tui/hooks/useKeyboard.ts +142 -0
  306. package/src/tui/hooks/useLayout.ts +137 -0
  307. package/src/tui/hooks/usePipelineEvents.ts +183 -0
  308. package/src/tui/hooks/usePty.ts +194 -0
  309. package/src/tui/index.tsx +38 -0
  310. package/src/tui/types.ts +76 -0
  311. package/src/utils/git.ts +83 -0
  312. package/src/utils/queue-writer.ts +54 -0
  313. package/src/verification/executor.ts +235 -0
  314. package/src/verification/gate.ts +207 -0
  315. package/src/verification/index.ts +12 -0
  316. package/src/verification/parser.ts +230 -0
  317. package/src/verification/rectification.ts +108 -0
  318. package/src/verification/types.ts +113 -0
  319. package/src/worktree/dispatcher.ts +65 -0
  320. package/src/worktree/index.ts +2 -0
  321. package/src/worktree/manager.ts +187 -0
  322. package/src/worktree/merge.ts +301 -0
  323. package/src/worktree/types.ts +4 -0
  324. package/test/TEST_COVERAGE_US001.md +217 -0
  325. package/test/TEST_COVERAGE_US003.md +84 -0
  326. package/test/TEST_COVERAGE_US005.md +86 -0
  327. package/test/US-002-orchestrator.test.ts +246 -0
  328. package/test/acceptance/cm-003-default-view.test.ts +194 -0
  329. package/test/execution/pid-registry.test.ts +240 -0
  330. package/test/execution/post-verify.test.ts +224 -0
  331. package/test/helpers/timeout.ts +42 -0
  332. package/test/integration/US-002-TEST-SUMMARY.md +107 -0
  333. package/test/integration/US-003-TEST-SUMMARY.md +149 -0
  334. package/test/integration/US-004-TEST-SUMMARY.md +106 -0
  335. package/test/integration/US-005-TEST-SUMMARY.md +138 -0
  336. package/test/integration/US-007-TEST-SUMMARY.md +100 -0
  337. package/test/integration/agent-validation.test.ts +439 -0
  338. package/test/integration/analyze-integration.test.ts +261 -0
  339. package/test/integration/analyze-scanner.test.ts +131 -0
  340. package/test/integration/cli-config-default-edge-cases.test.ts +222 -0
  341. package/test/integration/cli-config-default-view.test.ts +229 -0
  342. package/test/integration/cli-config-diff.test.ts +460 -0
  343. package/test/integration/cli-config.test.ts +736 -0
  344. package/test/integration/cli-diagnose.test.ts +592 -0
  345. package/test/integration/cli-logs.test.ts +314 -0
  346. package/test/integration/cli-plugins.test.ts +678 -0
  347. package/test/integration/cli-precheck.test.ts +371 -0
  348. package/test/integration/cli-run-headless.test.ts +173 -0
  349. package/test/integration/cli.test.ts +75 -0
  350. package/test/integration/config/merger.test.ts +465 -0
  351. package/test/integration/config/paths.test.ts +51 -0
  352. package/test/integration/config-loader.test.ts +265 -0
  353. package/test/integration/config.test.ts +444 -0
  354. package/test/integration/context-integration.test.ts +702 -0
  355. package/test/integration/context-provider-injection.test.ts +506 -0
  356. package/test/integration/context-verification-integration.test.ts +295 -0
  357. package/test/integration/e2e.test.ts +896 -0
  358. package/test/integration/execution.test.ts +625 -0
  359. package/test/integration/helpers.test.ts +295 -0
  360. package/test/integration/hooks.test.ts +361 -0
  361. package/test/integration/interaction-chain-pipeline.test.ts +464 -0
  362. package/test/integration/isolation.test.ts +143 -0
  363. package/test/integration/logger.test.ts +461 -0
  364. package/test/integration/parallel.test.ts +250 -0
  365. package/test/integration/path-security.test.ts +173 -0
  366. package/test/integration/pipeline-acceptance.test.ts +302 -0
  367. package/test/integration/pipeline-events.test.ts +475 -0
  368. package/test/integration/pipeline.test.ts +658 -0
  369. package/test/integration/plan.test.ts +157 -0
  370. package/test/integration/plugin-routing.test.ts +921 -0
  371. package/test/integration/plugins/config-integration.test.ts +172 -0
  372. package/test/integration/plugins/config-resolution.test.ts +522 -0
  373. package/test/integration/plugins/loader.test.ts +641 -0
  374. package/test/integration/plugins/registry.test.ts +746 -0
  375. package/test/integration/plugins/validator.test.ts +563 -0
  376. package/test/integration/prd-pause.test.ts +205 -0
  377. package/test/integration/prd-resolvers.test.ts +185 -0
  378. package/test/integration/precheck-integration.test.ts +468 -0
  379. package/test/integration/precheck.test.ts +805 -0
  380. package/test/integration/progress.test.ts +34 -0
  381. package/test/integration/rectification-flow.test.ts +512 -0
  382. package/test/integration/reporter-lifecycle.test.ts +860 -0
  383. package/test/integration/review-config-commands.test.ts +319 -0
  384. package/test/integration/review-config-schema.test.ts +116 -0
  385. package/test/integration/review-plugin-integration.test.ts +722 -0
  386. package/test/integration/review.test.ts +149 -0
  387. package/test/integration/routing-stage-bug-021.test.ts +274 -0
  388. package/test/integration/routing-stage-greenfield.test.ts +286 -0
  389. package/test/integration/runner-config-plugins.test.ts +461 -0
  390. package/test/integration/runner-fixes.test.ts +399 -0
  391. package/test/integration/runner-plugin-integration.test.ts +543 -0
  392. package/test/integration/runner.test.ts +1679 -0
  393. package/test/integration/s5-greenfield-fallback.test.ts +297 -0
  394. package/test/integration/status-file-integration.test.ts +325 -0
  395. package/test/integration/status-file.test.ts +379 -0
  396. package/test/integration/status-writer.test.ts +345 -0
  397. package/test/integration/story-id-in-events.test.ts +273 -0
  398. package/test/integration/tdd-cleanup.test.ts +246 -0
  399. package/test/integration/tdd-orchestrator.test.ts +1762 -0
  400. package/test/integration/test-scanner.test.ts +403 -0
  401. package/test/integration/verification-asset-check.test.ts +142 -0
  402. package/test/integration/verify-stage.test.ts +275 -0
  403. package/test/integration/worktree/manager.test.ts +218 -0
  404. package/test/integration/worktree/merge.test.ts +341 -0
  405. package/test/manual/logging-formatter-demo.ts +158 -0
  406. package/test/ui/tui-agent-panel.test.tsx +99 -0
  407. package/test/ui/tui-controls.test.ts +334 -0
  408. package/test/ui/tui-cost-and-pty.test.ts +189 -0
  409. package/test/ui/tui-layout.test.ts +378 -0
  410. package/test/ui/tui-pty-integration.test.tsx +159 -0
  411. package/test/ui/tui-stories.test.ts +332 -0
  412. package/test/unit/acceptance.test.ts +186 -0
  413. package/test/unit/agent-stderr-capture.test.ts +146 -0
  414. package/test/unit/analyze-classifier.test.ts +215 -0
  415. package/test/unit/analyze.test.ts +224 -0
  416. package/test/unit/auto-detect.test.ts +249 -0
  417. package/test/unit/cli-status.test.ts +417 -0
  418. package/test/unit/commands/common.test.ts +320 -0
  419. package/test/unit/commands/logs.test.ts +416 -0
  420. package/test/unit/commands/unlock.test.ts +319 -0
  421. package/test/unit/constitution-generators.test.ts +160 -0
  422. package/test/unit/constitution.test.ts +209 -0
  423. package/test/unit/context.test.ts +1722 -0
  424. package/test/unit/cost.test.ts +231 -0
  425. package/test/unit/crash-recovery.test.ts +308 -0
  426. package/test/unit/escalation.test.ts +126 -0
  427. package/test/unit/execution-logging-stderr.test.ts +156 -0
  428. package/test/unit/execution-stage.test.ts +122 -0
  429. package/test/unit/fix-generator.test.ts +275 -0
  430. package/test/unit/formatters.test.ts +469 -0
  431. package/test/unit/greenfield.test.ts +179 -0
  432. package/test/unit/helpers.test.ts +317 -0
  433. package/test/unit/interaction/human-review-trigger.test.ts +164 -0
  434. package/test/unit/interaction-network-failures.test.ts +389 -0
  435. package/test/unit/interaction-plugins.test.ts +164 -0
  436. package/test/unit/isolation.test.ts +134 -0
  437. package/test/unit/logging/formatter.test.ts +455 -0
  438. package/test/unit/merge.test.ts +268 -0
  439. package/test/unit/metrics.test.ts +276 -0
  440. package/test/unit/optimizer/noop.optimizer.test.ts +125 -0
  441. package/test/unit/optimizer/rule-based.optimizer.test.ts +358 -0
  442. package/test/unit/prd-auto-default.test.ts +290 -0
  443. package/test/unit/prd-failure-category.test.ts +176 -0
  444. package/test/unit/prd-get-next-story.test.ts +186 -0
  445. package/test/unit/precheck-checks.test.ts +840 -0
  446. package/test/unit/precheck-story-size-gate.test.ts +287 -0
  447. package/test/unit/precheck-types.test.ts +142 -0
  448. package/test/unit/prompts.test.ts +475 -0
  449. package/test/unit/queue.test.ts +237 -0
  450. package/test/unit/rectification.test.ts +284 -0
  451. package/test/unit/registry.test.ts +287 -0
  452. package/test/unit/routing.test.ts +937 -0
  453. package/test/unit/run-lifecycle.test.ts +140 -0
  454. package/test/unit/storyid-events.test.ts +224 -0
  455. package/test/unit/tdd-verdict.test.ts +492 -0
  456. package/test/unit/test-output-parser.test.ts +377 -0
  457. package/test/unit/verdict.test.ts +324 -0
  458. package/test/unit/worktree-manager.test.ts +158 -0
  459. package/tsconfig.json +27 -0
package/biome.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
3
+ "organizeImports": { "enabled": true },
4
+ "linter": {
5
+ "enabled": true,
6
+ "rules": { "recommended": true }
7
+ },
8
+ "formatter": {
9
+ "enabled": true,
10
+ "indentStyle": "space",
11
+ "indentWidth": 2,
12
+ "lineWidth": 120
13
+ }
14
+ }
package/bun.lock ADDED
@@ -0,0 +1,168 @@
1
+ {
2
+ "lockfileVersion": 1,
3
+ "configVersion": 1,
4
+ "workspaces": {
5
+ "": {
6
+ "name": "ngent",
7
+ "dependencies": {
8
+ "@anthropic-ai/sdk": "^0.74.0",
9
+ "@types/react": "^19.2.14",
10
+ "chalk": "^5.6.2",
11
+ "commander": "^13.1.0",
12
+ "ink": "^6.7.0",
13
+ "ink-spinner": "^5.0.0",
14
+ "ink-testing-library": "^4.0.0",
15
+ "node-pty": "^1.1.0",
16
+ "react": "^19.2.4",
17
+ "zod": "^4.3.6",
18
+ },
19
+ "devDependencies": {
20
+ "@biomejs/biome": "^1.9.4",
21
+ "@types/bun": "^1.2.4",
22
+ "react-devtools-core": "^7.0.1",
23
+ "typescript": "^5.7.3",
24
+ },
25
+ },
26
+ },
27
+ "packages": {
28
+ "@alcalzone/ansi-tokenize": ["@alcalzone/ansi-tokenize@0.2.5", "", { "dependencies": { "ansi-styles": "^6.2.1", "is-fullwidth-code-point": "^5.0.0" } }, "sha512-3NX/MpTdroi0aKz134A6RC2Gb2iXVECN4QaAXnvCIxxIm3C3AVB1mkUe8NaaiyvOpDfsrqWhYtj+Q6a62RrTsw=="],
29
+
30
+ "@anthropic-ai/sdk": ["@anthropic-ai/sdk@0.74.0", "", { "dependencies": { "json-schema-to-ts": "^3.1.1" }, "peerDependencies": { "zod": "^3.25.0 || ^4.0.0" }, "optionalPeers": ["zod"], "bin": { "anthropic-ai-sdk": "bin/cli" } }, "sha512-srbJV7JKsc5cQ6eVuFzjZO7UR3xEPJqPamHFIe29bs38Ij2IripoAhC0S5NslNbaFUYqBKypmmpzMTpqfHEUDw=="],
31
+
32
+ "@babel/runtime": ["@babel/runtime@7.28.6", "", {}, "sha512-05WQkdpL9COIMz4LjTxGpPNCdlpyimKppYNoJ5Di5EUObifl8t4tuLuUBBZEpoLYOmfvIWrsp9fCl0HoPRVTdA=="],
33
+
34
+ "@biomejs/biome": ["@biomejs/biome@1.9.4", "", { "optionalDependencies": { "@biomejs/cli-darwin-arm64": "1.9.4", "@biomejs/cli-darwin-x64": "1.9.4", "@biomejs/cli-linux-arm64": "1.9.4", "@biomejs/cli-linux-arm64-musl": "1.9.4", "@biomejs/cli-linux-x64": "1.9.4", "@biomejs/cli-linux-x64-musl": "1.9.4", "@biomejs/cli-win32-arm64": "1.9.4", "@biomejs/cli-win32-x64": "1.9.4" }, "bin": { "biome": "bin/biome" } }, "sha512-1rkd7G70+o9KkTn5KLmDYXihGoTaIGO9PIIN2ZB7UJxFrWw04CZHPYiMRjYsaDvVV7hP1dYNRLxSANLaBFGpog=="],
35
+
36
+ "@biomejs/cli-darwin-arm64": ["@biomejs/cli-darwin-arm64@1.9.4", "", { "os": "darwin", "cpu": "arm64" }, "sha512-bFBsPWrNvkdKrNCYeAp+xo2HecOGPAy9WyNyB/jKnnedgzl4W4Hb9ZMzYNbf8dMCGmUdSavlYHiR01QaYR58cw=="],
37
+
38
+ "@biomejs/cli-darwin-x64": ["@biomejs/cli-darwin-x64@1.9.4", "", { "os": "darwin", "cpu": "x64" }, "sha512-ngYBh/+bEedqkSevPVhLP4QfVPCpb+4BBe2p7Xs32dBgs7rh9nY2AIYUL6BgLw1JVXV8GlpKmb/hNiuIxfPfZg=="],
39
+
40
+ "@biomejs/cli-linux-arm64": ["@biomejs/cli-linux-arm64@1.9.4", "", { "os": "linux", "cpu": "arm64" }, "sha512-fJIW0+LYujdjUgJJuwesP4EjIBl/N/TcOX3IvIHJQNsAqvV2CHIogsmA94BPG6jZATS4Hi+xv4SkBBQSt1N4/g=="],
41
+
42
+ "@biomejs/cli-linux-arm64-musl": ["@biomejs/cli-linux-arm64-musl@1.9.4", "", { "os": "linux", "cpu": "arm64" }, "sha512-v665Ct9WCRjGa8+kTr0CzApU0+XXtRgwmzIf1SeKSGAv+2scAlW6JR5PMFo6FzqqZ64Po79cKODKf3/AAmECqA=="],
43
+
44
+ "@biomejs/cli-linux-x64": ["@biomejs/cli-linux-x64@1.9.4", "", { "os": "linux", "cpu": "x64" }, "sha512-lRCJv/Vi3Vlwmbd6K+oQ0KhLHMAysN8lXoCI7XeHlxaajk06u7G+UsFSO01NAs5iYuWKmVZjmiOzJ0OJmGsMwg=="],
45
+
46
+ "@biomejs/cli-linux-x64-musl": ["@biomejs/cli-linux-x64-musl@1.9.4", "", { "os": "linux", "cpu": "x64" }, "sha512-gEhi/jSBhZ2m6wjV530Yy8+fNqG8PAinM3oV7CyO+6c3CEh16Eizm21uHVsyVBEB6RIM8JHIl6AGYCv6Q6Q9Tg=="],
47
+
48
+ "@biomejs/cli-win32-arm64": ["@biomejs/cli-win32-arm64@1.9.4", "", { "os": "win32", "cpu": "arm64" }, "sha512-tlbhLk+WXZmgwoIKwHIHEBZUwxml7bRJgk0X2sPyNR3S93cdRq6XulAZRQJ17FYGGzWne0fgrXBKpl7l4M87Hg=="],
49
+
50
+ "@biomejs/cli-win32-x64": ["@biomejs/cli-win32-x64@1.9.4", "", { "os": "win32", "cpu": "x64" }, "sha512-8Y5wMhVIPaWe6jw2H+KlEm4wP/f7EW3810ZLmDlrEEy5KvBsb9ECEfu/kMWD484ijfQ8+nIi0giMgu9g1UAuuA=="],
51
+
52
+ "@types/bun": ["@types/bun@1.3.9", "", { "dependencies": { "bun-types": "1.3.9" } }, "sha512-KQ571yULOdWJiMH+RIWIOZ7B2RXQGpL1YQrBtLIV3FqDcCu6FsbFUBwhdKUlCKUpS3PJDsHlJ1QKlpxoVR+xtw=="],
53
+
54
+ "@types/node": ["@types/node@25.2.3", "", { "dependencies": { "undici-types": "~7.16.0" } }, "sha512-m0jEgYlYz+mDJZ2+F4v8D1AyQb+QzsNqRuI7xg1VQX/KlKS0qT9r1Mo16yo5F/MtifXFgaofIFsdFMox2SxIbQ=="],
55
+
56
+ "@types/react": ["@types/react@19.2.14", "", { "dependencies": { "csstype": "^3.2.2" } }, "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w=="],
57
+
58
+ "ansi-escapes": ["ansi-escapes@7.3.0", "", { "dependencies": { "environment": "^1.0.0" } }, "sha512-BvU8nYgGQBxcmMuEeUEmNTvrMVjJNSH7RgW24vXexN4Ven6qCvy4TntnvlnwnMLTVlcRQQdbRY8NKnaIoeWDNg=="],
59
+
60
+ "ansi-regex": ["ansi-regex@6.2.2", "", {}, "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg=="],
61
+
62
+ "ansi-styles": ["ansi-styles@6.2.3", "", {}, "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg=="],
63
+
64
+ "auto-bind": ["auto-bind@5.0.1", "", {}, "sha512-ooviqdwwgfIfNmDwo94wlshcdzfO64XV0Cg6oDsDYBJfITDz1EngD2z7DkbvCWn+XIMsIqW27sEVF6qcpJrRcg=="],
65
+
66
+ "bun-types": ["bun-types@1.3.9", "", { "dependencies": { "@types/node": "*" } }, "sha512-+UBWWOakIP4Tswh0Bt0QD0alpTY8cb5hvgiYeWCMet9YukHbzuruIEeXC2D7nMJPB12kbh8C7XJykSexEqGKJg=="],
67
+
68
+ "chalk": ["chalk@5.6.2", "", {}, "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA=="],
69
+
70
+ "cli-boxes": ["cli-boxes@3.0.0", "", {}, "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g=="],
71
+
72
+ "cli-cursor": ["cli-cursor@4.0.0", "", { "dependencies": { "restore-cursor": "^4.0.0" } }, "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg=="],
73
+
74
+ "cli-spinners": ["cli-spinners@2.9.2", "", {}, "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg=="],
75
+
76
+ "cli-truncate": ["cli-truncate@5.1.1", "", { "dependencies": { "slice-ansi": "^7.1.0", "string-width": "^8.0.0" } }, "sha512-SroPvNHxUnk+vIW/dOSfNqdy1sPEFkrTk6TUtqLCnBlo3N7TNYYkzzN7uSD6+jVjrdO4+p8nH7JzH6cIvUem6A=="],
77
+
78
+ "code-excerpt": ["code-excerpt@4.0.0", "", { "dependencies": { "convert-to-spaces": "^2.0.1" } }, "sha512-xxodCmBen3iy2i0WtAK8FlFNrRzjUqjRsMfho58xT/wvZU1YTM3fCnRjcy1gJPMepaRlgm/0e6w8SpWHpn3/cA=="],
79
+
80
+ "commander": ["commander@13.1.0", "", {}, "sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw=="],
81
+
82
+ "convert-to-spaces": ["convert-to-spaces@2.0.1", "", {}, "sha512-rcQ1bsQO9799wq24uE5AM2tAILy4gXGIK/njFWcVQkGNZ96edlpY+A7bjwvzjYvLDyzmG1MmMLZhpcsb+klNMQ=="],
83
+
84
+ "csstype": ["csstype@3.2.3", "", {}, "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ=="],
85
+
86
+ "emoji-regex": ["emoji-regex@10.6.0", "", {}, "sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A=="],
87
+
88
+ "environment": ["environment@1.1.0", "", {}, "sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q=="],
89
+
90
+ "es-toolkit": ["es-toolkit@1.44.0", "", {}, "sha512-6penXeZalaV88MM3cGkFZZfOoLGWshWWfdy0tWw/RlVVyhvMaWSBTOvXNeiW3e5FwdS5ePW0LGEu17zT139ktg=="],
91
+
92
+ "escape-string-regexp": ["escape-string-regexp@2.0.0", "", {}, "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w=="],
93
+
94
+ "get-east-asian-width": ["get-east-asian-width@1.4.0", "", {}, "sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q=="],
95
+
96
+ "indent-string": ["indent-string@5.0.0", "", {}, "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg=="],
97
+
98
+ "ink": ["ink@6.7.0", "", { "dependencies": { "@alcalzone/ansi-tokenize": "^0.2.4", "ansi-escapes": "^7.3.0", "ansi-styles": "^6.2.1", "auto-bind": "^5.0.1", "chalk": "^5.6.0", "cli-boxes": "^3.0.0", "cli-cursor": "^4.0.0", "cli-truncate": "^5.1.1", "code-excerpt": "^4.0.0", "es-toolkit": "^1.39.10", "indent-string": "^5.0.0", "is-in-ci": "^2.0.0", "patch-console": "^2.0.0", "react-reconciler": "^0.33.0", "scheduler": "^0.27.0", "signal-exit": "^3.0.7", "slice-ansi": "^7.1.0", "stack-utils": "^2.0.6", "string-width": "^8.1.1", "terminal-size": "^4.0.1", "type-fest": "^5.4.1", "widest-line": "^6.0.0", "wrap-ansi": "^9.0.0", "ws": "^8.18.0", "yoga-layout": "~3.2.1" }, "peerDependencies": { "@types/react": ">=19.0.0", "react": ">=19.0.0", "react-devtools-core": "^6.1.2" }, "optionalPeers": ["@types/react", "react-devtools-core"] }, "sha512-dhB16KfdTO8yYwF2K0E4wPXpL88tdrjjB6w44AZ0ljSktYoUQQcxccq9KL1vpRhk8JIa0A7B7zvjajHqI42teA=="],
99
+
100
+ "ink-spinner": ["ink-spinner@5.0.0", "", { "dependencies": { "cli-spinners": "^2.7.0" }, "peerDependencies": { "ink": ">=4.0.0", "react": ">=18.0.0" } }, "sha512-EYEasbEjkqLGyPOUc8hBJZNuC5GvXGMLu0w5gdTNskPc7Izc5vO3tdQEYnzvshucyGCBXc86ig0ujXPMWaQCdA=="],
101
+
102
+ "ink-testing-library": ["ink-testing-library@4.0.0", "", { "peerDependencies": { "@types/react": ">=18.0.0" }, "optionalPeers": ["@types/react"] }, "sha512-yF92kj3pmBvk7oKbSq5vEALO//o7Z9Ck/OaLNlkzXNeYdwfpxMQkSowGTFUCS5MSu9bWfSZMewGpp7bFc66D7Q=="],
103
+
104
+ "is-fullwidth-code-point": ["is-fullwidth-code-point@5.1.0", "", { "dependencies": { "get-east-asian-width": "^1.3.1" } }, "sha512-5XHYaSyiqADb4RnZ1Bdad6cPp8Toise4TzEjcOYDHZkTCbKgiUl7WTUCpNWHuxmDt91wnsZBc9xinNzopv3JMQ=="],
105
+
106
+ "is-in-ci": ["is-in-ci@2.0.0", "", { "bin": { "is-in-ci": "cli.js" } }, "sha512-cFeerHriAnhrQSbpAxL37W1wcJKUUX07HyLWZCW1URJT/ra3GyUTzBgUnh24TMVfNTV2Hij2HLxkPHFZfOZy5w=="],
107
+
108
+ "json-schema-to-ts": ["json-schema-to-ts@3.1.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "ts-algebra": "^2.0.0" } }, "sha512-+DWg8jCJG2TEnpy7kOm/7/AxaYoaRbjVB4LFZLySZlWn8exGs3A4OLJR966cVvU26N7X9TWxl+Jsw7dzAqKT6g=="],
109
+
110
+ "mimic-fn": ["mimic-fn@2.1.0", "", {}, "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg=="],
111
+
112
+ "node-addon-api": ["node-addon-api@7.1.1", "", {}, "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ=="],
113
+
114
+ "node-pty": ["node-pty@1.1.0", "", { "dependencies": { "node-addon-api": "^7.1.0" } }, "sha512-20JqtutY6JPXTUnL0ij1uad7Qe1baT46lyolh2sSENDd4sTzKZ4nmAFkeAARDKwmlLjPx6XKRlwRUxwjOy+lUg=="],
115
+
116
+ "onetime": ["onetime@5.1.2", "", { "dependencies": { "mimic-fn": "^2.1.0" } }, "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg=="],
117
+
118
+ "patch-console": ["patch-console@2.0.0", "", {}, "sha512-0YNdUceMdaQwoKce1gatDScmMo5pu/tfABfnzEqeG0gtTmd7mh/WcwgUjtAeOU7N8nFFlbQBnFK2gXW5fGvmMA=="],
119
+
120
+ "react": ["react@19.2.4", "", {}, "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ=="],
121
+
122
+ "react-devtools-core": ["react-devtools-core@7.0.1", "", { "dependencies": { "shell-quote": "^1.6.1", "ws": "^7" } }, "sha512-C3yNvRHaizlpiASzy7b9vbnBGLrhvdhl1CbdU6EnZgxPNbai60szdLtl+VL76UNOt5bOoVTOz5rNWZxgGt+Gsw=="],
123
+
124
+ "react-reconciler": ["react-reconciler@0.33.0", "", { "dependencies": { "scheduler": "^0.27.0" }, "peerDependencies": { "react": "^19.2.0" } }, "sha512-KetWRytFv1epdpJc3J4G75I4WrplZE5jOL7Yq0p34+OVOKF4Se7WrdIdVC45XsSSmUTlht2FM/fM1FZb1mfQeA=="],
125
+
126
+ "restore-cursor": ["restore-cursor@4.0.0", "", { "dependencies": { "onetime": "^5.1.0", "signal-exit": "^3.0.2" } }, "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg=="],
127
+
128
+ "scheduler": ["scheduler@0.27.0", "", {}, "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q=="],
129
+
130
+ "shell-quote": ["shell-quote@1.8.3", "", {}, "sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw=="],
131
+
132
+ "signal-exit": ["signal-exit@3.0.7", "", {}, "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="],
133
+
134
+ "slice-ansi": ["slice-ansi@7.1.2", "", { "dependencies": { "ansi-styles": "^6.2.1", "is-fullwidth-code-point": "^5.0.0" } }, "sha512-iOBWFgUX7caIZiuutICxVgX1SdxwAVFFKwt1EvMYYec/NWO5meOJ6K5uQxhrYBdQJne4KxiqZc+KptFOWFSI9w=="],
135
+
136
+ "stack-utils": ["stack-utils@2.0.6", "", { "dependencies": { "escape-string-regexp": "^2.0.0" } }, "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ=="],
137
+
138
+ "string-width": ["string-width@8.1.1", "", { "dependencies": { "get-east-asian-width": "^1.3.0", "strip-ansi": "^7.1.0" } }, "sha512-KpqHIdDL9KwYk22wEOg/VIqYbrnLeSApsKT/bSj6Ez7pn3CftUiLAv2Lccpq1ALcpLV9UX1Ppn92npZWu2w/aw=="],
139
+
140
+ "strip-ansi": ["strip-ansi@7.1.2", "", { "dependencies": { "ansi-regex": "^6.0.1" } }, "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA=="],
141
+
142
+ "tagged-tag": ["tagged-tag@1.0.0", "", {}, "sha512-yEFYrVhod+hdNyx7g5Bnkkb0G6si8HJurOoOEgC8B/O0uXLHlaey/65KRv6cuWBNhBgHKAROVpc7QyYqE5gFng=="],
143
+
144
+ "terminal-size": ["terminal-size@4.0.1", "", {}, "sha512-avMLDQpUI9I5XFrklECw1ZEUPJhqzcwSWsyyI8blhRLT+8N1jLJWLWWYQpB2q2xthq8xDvjZPISVh53T/+CLYQ=="],
145
+
146
+ "ts-algebra": ["ts-algebra@2.0.0", "", {}, "sha512-FPAhNPFMrkwz76P7cdjdmiShwMynZYN6SgOujD1urY4oNm80Ou9oMdmbR45LotcKOXoy7wSmHkRFE6Mxbrhefw=="],
147
+
148
+ "type-fest": ["type-fest@5.4.4", "", { "dependencies": { "tagged-tag": "^1.0.0" } }, "sha512-JnTrzGu+zPV3aXIUhnyWJj4z/wigMsdYajGLIYakqyOW1nPllzXEJee0QQbHj+CTIQtXGlAjuK0UY+2xTyjVAw=="],
149
+
150
+ "typescript": ["typescript@5.9.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw=="],
151
+
152
+ "undici-types": ["undici-types@7.16.0", "", {}, "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw=="],
153
+
154
+ "widest-line": ["widest-line@6.0.0", "", { "dependencies": { "string-width": "^8.1.0" } }, "sha512-U89AsyEeAsyoF0zVJBkG9zBgekjgjK7yk9sje3F4IQpXBJ10TF6ByLlIfjMhcmHMJgHZI4KHt4rdNfktzxIAMA=="],
155
+
156
+ "wrap-ansi": ["wrap-ansi@9.0.2", "", { "dependencies": { "ansi-styles": "^6.2.1", "string-width": "^7.0.0", "strip-ansi": "^7.1.0" } }, "sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww=="],
157
+
158
+ "ws": ["ws@7.5.10", "", { "peerDependencies": { "bufferutil": "^4.0.1", "utf-8-validate": "^5.0.2" }, "optionalPeers": ["bufferutil", "utf-8-validate"] }, "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ=="],
159
+
160
+ "yoga-layout": ["yoga-layout@3.2.1", "", {}, "sha512-0LPOt3AxKqMdFBZA3HBAt/t/8vIKq7VaQYbuA8WxCgung+p9TVyKRYdpvCb80HcdTN2NkbIKbhNwKUfm3tQywQ=="],
161
+
162
+ "zod": ["zod@4.3.6", "", {}, "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg=="],
163
+
164
+ "ink/ws": ["ws@8.19.0", "", { "peerDependencies": { "bufferutil": "^4.0.1", "utf-8-validate": ">=5.0.2" }, "optionalPeers": ["bufferutil", "utf-8-validate"] }, "sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg=="],
165
+
166
+ "wrap-ansi/string-width": ["string-width@7.2.0", "", { "dependencies": { "emoji-regex": "^10.3.0", "get-east-asian-width": "^1.0.0", "strip-ansi": "^7.1.0" } }, "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ=="],
167
+ }
168
+ }
package/bunfig.toml ADDED
@@ -0,0 +1,11 @@
1
+ # Bun Test Configuration
2
+
3
+ [test]
4
+ # Global test timeout: 30 seconds per test (unit/integration)
5
+ # This prevents individual tests from hanging indefinitely
6
+ timeout = 30000
7
+
8
+ # Exclude nax dogfood feature directories (contain acceptance tests from nax runs, not source tests)
9
+ exclude = ["nax/**"]
10
+
11
+ # Note: E2E tests may override this with longer timeouts using test options
@@ -0,0 +1,56 @@
1
+ # Fix Plan: Context Builder Review Findings
2
+ **Date:** 2026-02-16
3
+ **Branch:** main (local commits only)
4
+
5
+ ## Phase 1: DRY + Token Estimation + Dead Config
6
+
7
+ ### Fix 1: Extract context building helper in runner.ts
8
+ **File:** `src/execution/runner.ts`
9
+ **Impact:** Code duplication between TDD and single-session paths
10
+ **Change:** Extract the duplicated 8-line context building block (build + log) into a helper function like `maybeGetContext(story, config, useContext)` that returns `string | undefined`. Call it from both TDD and single-session branches.
11
+
12
+ ### Fix 2: Token estimation ratio
13
+ **File:** `src/context/builder.ts`
14
+ **Impact:** Budget underestimates for code (1:4 is too generous; code averages closer to 1:3)
15
+ **Change:** Change `estimateTokens()` from `Math.ceil(text.length / 4)` to `Math.ceil(text.length / 3)`. Update any test assertions that check specific token counts.
16
+
17
+ ### Fix 3: Remove dead config paths
18
+ **File:** `src/context/types.ts`, `src/context/builder.ts`, `src/execution/runner.ts`
19
+ **Impact:** `includeConfig` and `includeDependencies` in `ContextBuilderConfig` are set but never read in `buildContext()`
20
+ **Change:** Remove `includeConfig` and `includeDependencies` from `ContextBuilderConfig`. Remove them from the config object in `buildStoryContext()`. If dependencies should be used, wire them — otherwise remove the dead path. The `dependency` type in `ContextElement` can stay for future use.
21
+
22
+ ## Phase 2: Wire UserStory fields for real context
23
+
24
+ ### Fix 4: Add optional context fields to UserStory
25
+ **File:** `src/prd/types.ts`
26
+ **Change:** Add to `UserStory` interface:
27
+ ```ts
28
+ /** Relevant source files for context injection */
29
+ relevantFiles?: string[];
30
+ /** Prior error messages from failed attempts */
31
+ priorErrors?: string[];
32
+ /** Custom context strings */
33
+ customContext?: string[];
34
+ ```
35
+
36
+ ### Fix 5: Wire UserStory fields into buildStoryContext
37
+ **File:** `src/execution/runner.ts`
38
+ **Change:** Replace the hardcoded empty arrays in `buildStoryContext()` with actual values from `story`:
39
+ ```ts
40
+ relevantFiles: story.relevantFiles || [],
41
+ priorErrors: story.priorErrors,
42
+ customContext: story.customContext,
43
+ ```
44
+
45
+ ### Fix 6: Populate priorErrors on retry
46
+ **File:** `src/execution/runner.ts`
47
+ **Change:** When a story fails and gets retried (escalation), capture the error/failure reason and push it to `story.priorErrors` so the next attempt gets context about what went wrong.
48
+
49
+ ## Test Strategy
50
+ - Mode: test-after
51
+ - Run: `bun test` after each phase
52
+ - Update existing assertions in `test/context.test.ts` and `test/context-integration.test.ts` for token ratio change
53
+
54
+ ## Commits
55
+ - Phase 1: `refactor: DRY context helper, fix token estimation, remove dead config`
56
+ - Phase 2: `feat: wire UserStory context fields into context builder`
@@ -0,0 +1,208 @@
1
+ # Relentless vs ngent — Architecture Comparison & Port Recommendations
2
+
3
+ **Date:** 2026-02-16
4
+ **Relentless version:** v0.8.0 (~18,872 LOC src, 72 source files)
5
+ **ngent version:** v0.1 (~2,799 LOC src, 33 source files)
6
+
7
+ ## Executive Summary
8
+
9
+ Relentless is a mature, feature-rich orchestrator with 6 agent adapters, a sophisticated routing system, and a polished TUI. ngent is a focused proof-of-concept with stronger TDD enforcement and simpler architecture. Rather than trying to match Relentless feature-for-feature, ngent should **selectively port the highest-impact features** while preserving its architectural advantages.
10
+
11
+ **Bottom line:** Port 5 features from Relentless. Skip 4. Keep 3 ngent strengths.
12
+
13
+ ---
14
+
15
+ ## Feature-by-Feature Comparison
16
+
17
+ ### 1. Agent Adapters
18
+
19
+ | | Relentless | ngent |
20
+ |:---|:---|:---|
21
+ | **Agents** | 6 (Claude, Codex, Droid, OpenCode, Amp, Gemini) | 1 (Claude Code) |
22
+ | **LOC** | ~1,800 across 8 files | ~180 in 1 file |
23
+ | **Rate limit detection** | Yes (per-agent patterns) | No |
24
+ | **Cross-agent fallback** | Yes (cascade system) | No |
25
+
26
+ **Verdict:** ngent's single-agent focus is correct for v0.2. Multi-agent only matters when rate-limited or cost-optimizing with free models. **Port rate limit detection only** — cross-agent fallback is premature.
27
+
28
+ ### 2. Routing & Classification
29
+
30
+ | | Relentless | ngent |
31
+ |:---|:---|:---|
32
+ | **Model matrix** | 4x4 (free/cheap/good/genius x simple/medium/complex/expert) | 2-tier (haiku/sonnet) |
33
+ | **Classifier** | Hybrid (regex heuristic + LLM fallback at <0.8 confidence) | Tag-based + complexity field |
34
+ | **Confidence scoring** | Yes (0.0-1.0) | No |
35
+ | **Cost estimation** | Per-model token estimates | Per-tier fixed estimates |
36
+
37
+ **Verdict:** The 4-mode matrix is overkill for Claude-only. But **expanding to 3 tiers** (haiku/sonnet/opus) with the hybrid classifier approach would improve routing accuracy. The confidence-based LLM fallback is clever — worth porting.
38
+
39
+ ### 3. Cascade & Escalation
40
+
41
+ | | Relentless | ngent |
42
+ |:---|:---|:---|
43
+ | **Escalation path** | Configurable chain (e.g., haiku -> sonnet -> opus) | Simple tier bump |
44
+ | **Per-attempt cost tracking** | Yes (Zod schema, actual cost per step) | Partial (estimates only) |
45
+ | **Blocked detection** | Yes (marks stories as blocked with reason) | No |
46
+ | **Max attempts** | Configurable | Hardcoded (3) |
47
+
48
+ **Verdict:** ngent already has basic escalation. **Port per-attempt cost tracking and blocked detection.** Configurable max attempts is a quick win.
49
+
50
+ ### 4. Context Optimization
51
+
52
+ | | Relentless | ngent |
53
+ |:---|:---|:---|
54
+ | **Approach** | Extract current story + dependencies from tasks.md | Token-budgeted element builder |
55
+ | **LOC** | 417 (single file, focused) | 276 (builder.ts) + integration |
56
+ | **Story extraction** | Regex-based section parsing from tasks.md | Generic element types (file/config/error/custom) |
57
+ | **Checklist filtering** | Tag-based ([US-XXX], [Constitution], [Edge Case]) | Not implemented |
58
+ | **Progress summary** | Auto-generated ("5/18 stories complete") | Not implemented |
59
+ | **Token savings claim** | ~84% | Not measured yet |
60
+
61
+ **Verdict:** Relentless's context builder is more practical — it works with the actual tasks.md format. ngent's is more generic but currently inert (relevantFiles empty until PRD populates them). **Port the story extraction approach** — parse the PRD/tasks to inject only the current story + dependencies into each session prompt. This is the #1 cost saver.
62
+
63
+ ### 5. Queue & Mid-Run Control
64
+
65
+ | | Relentless | ngent |
66
+ |:---|:---|:---|
67
+ | **Queue file** | Custom format with commands | `.queue.txt` with cursor marker |
68
+ | **Commands** | PAUSE, ABORT, SKIP, RETRY | None (read-only) |
69
+ | **File locking** | Yes (lock.ts) | No |
70
+ | **Hot reload** | Yes (watches file changes) | Yes (reads between stories) |
71
+
72
+ **Verdict:** PAUSE/ABORT/SKIP are essential for production use. **Port queue commands.** File locking is nice-to-have.
73
+
74
+ ### 6. Review System
75
+
76
+ | | Relentless | ngent |
77
+ |:---|:---|:---|
78
+ | **Post-run review** | 6 micro-tasks (typecheck, lint, test, security, quality, docs) | None |
79
+ | **Review prompts** | Templated per task type | N/A |
80
+ | **Review runner** | Dedicated (337 LOC) | N/A |
81
+
82
+ **Verdict:** The 6-phase review is valuable for production but heavy for POC stage. **Port a simplified 3-phase version** (typecheck, test, lint) for v0.3. Security/quality/docs can wait.
83
+
84
+ ### 7. TUI
85
+
86
+ | | Relentless | ngent |
87
+ |:---|:---|:---|
88
+ | **Framework** | Ink (React for CLI) with 3-column layout | Console.log |
89
+ | **LOC** | ~2,000+ (App.tsx, components/, layouts/, hooks/) | 0 |
90
+ | **Live cost tracking** | Yes | No |
91
+ | **Story progress** | Visual grid | Text output |
92
+
93
+ **Verdict:** Ink TUI is polished but massive investment. **Skip for v0.2.** ngent's planned `node-pty` supervised mode serves the same need with less code. Consider a minimal progress display (single-line status updates) instead.
94
+
95
+ ### 8. Configuration
96
+
97
+ | | Relentless | ngent |
98
+ |:---|:---|:---|
99
+ | **Schema** | Zod with full validation | Zod with validation |
100
+ | **Constitution** | Versioned constitution system | Not implemented |
101
+ | **Init wizard** | Interactive `init` command | Not implemented |
102
+
103
+ **Verdict:** Constitution system is interesting but not critical. **Skip for v0.2.**
104
+
105
+ ---
106
+
107
+ ## ngent Advantages to Preserve
108
+
109
+ ### 1. Three-Session TDD (Architectural Enforcement)
110
+ Relentless uses prompt-based TDD ("write tests first, then implement"). ngent uses **session isolation** — separate Claude Code sessions for test writer, implementer, and verifier with git-diff verification. This is architecturally stronger and prevents the "AI writes tests that match its planned implementation" problem.
111
+
112
+ **Keep and strengthen.** This is ngent's #1 differentiator.
113
+
114
+ ### 2. Actual Cost Tracking
115
+ ngent tracks real API costs from Claude Code's output. Relentless estimates costs from token counts. Actual > estimated.
116
+
117
+ **Keep.** Extend with per-attempt tracking (from Relentless).
118
+
119
+ ### 3. Simplicity (2.8K vs 18.9K LOC)
120
+ ngent is 6.7x smaller. Easier to understand, modify, and debug. Every feature port should be evaluated against complexity cost.
121
+
122
+ **Keep.** Resist feature bloat. Each port must earn its LOC.
123
+
124
+ ---
125
+
126
+ ## Port Recommendations (Prioritized)
127
+
128
+ ### P0 — Do in v0.2 (High Impact, Moderate Effort)
129
+
130
+ | # | Feature | Source | Est. LOC | Impact |
131
+ |:---|:---|:---|:---|:---|
132
+ | 1 | **Story-scoped context extraction** | `execution/context-builder.ts` | ~200 | #1 cost saver (~84% token reduction per session) |
133
+ | 2 | **Queue commands (PAUSE/ABORT/SKIP)** | `queue/processor.ts`, `queue/parser.ts` | ~150 | Essential for production mid-run control |
134
+ | 3 | **3-tier model routing** (haiku/sonnet/opus) | `routing/router.ts` | ~80 | Better cost optimization, already partially exists |
135
+
136
+ ### P1 — Do in v0.3 (Medium Impact)
137
+
138
+ | # | Feature | Source | Est. LOC | Impact |
139
+ |:---|:---|:---|:---|:---|
140
+ | 4 | **Per-attempt cost tracking** | `routing/cascade.ts` | ~100 | Better cost visibility, debugging |
141
+ | 5 | **Hybrid classifier** (regex + LLM fallback) | `routing/classifier.ts` | ~150 | More accurate complexity routing |
142
+ | 6 | **Simplified review phase** (typecheck + test + lint) | `review/runner.ts`, `review/tasks/` | ~200 | Quality gate before marking story complete |
143
+ | 7 | **Blocked story detection** | `routing/cascade.ts` | ~50 | Avoid infinite retry loops |
144
+
145
+ ### P2 — Consider for v0.4+ (Lower Priority)
146
+
147
+ | # | Feature | Source | Reason to Defer |
148
+ |:---|:---|:---|:---|
149
+ | 8 | Multi-agent adapters | `agents/*.ts` | Only useful when rate-limited or using free models |
150
+ | 9 | Ink TUI | `tui/` | ~2K LOC investment, node-pty serves similar need |
151
+ | 10 | Constitution system | `config/` | Nice-to-have, not a blocker |
152
+ | 11 | Init wizard | `init/` | One-time convenience, low ROI |
153
+
154
+ ### Skip Entirely
155
+
156
+ | Feature | Reason |
157
+ |:---|:---|
158
+ | Cross-agent fallback | Claude-only for foreseeable future |
159
+ | File locking for queue | Single-instance execution = no contention |
160
+ | 4x4 mode-model matrix | Overkill for 1 agent; 3-tier sufficient |
161
+
162
+ ---
163
+
164
+ ## v0.2 Implementation Plan (from P0 items)
165
+
166
+ ### Phase 1: Story-Scoped Context (~200 LOC)
167
+ Replace the generic context builder with Relentless-style story extraction:
168
+ - Parse PRD to get current story + dependency stories
169
+ - Inject only those sections into session prompt
170
+ - Add progress summary ("Story 5/12, 4 passed")
171
+ - Wire into both single-session and TDD paths
172
+
173
+ ### Phase 2: Queue Commands (~150 LOC)
174
+ Extend `.queue.txt` parser:
175
+ - `PAUSE` — pause after current story completes
176
+ - `ABORT` — stop immediately, mark remaining as skipped
177
+ - `SKIP US-XXX` — skip a specific story
178
+ - Check queue between stories (existing hook point)
179
+
180
+ ### Phase 3: 3-Tier Model Routing (~80 LOC)
181
+ Extend existing config:
182
+ - Add `opus` tier for expert-complexity stories
183
+ - Update router to support 3 tiers
184
+ - Keep backward compat with existing 2-tier configs
185
+
186
+ **Estimated total: ~430 LOC added to ngent (15% growth)**
187
+
188
+ ---
189
+
190
+ ## Metrics Comparison (12-Story Benchmark)
191
+
192
+ | Metric | Relentless (estimated*) | ngent v0.1 | ngent v0.2 (projected) |
193
+ |:---|:---|:---|:---|
194
+ | Session overhead | ~2-3 min (context optimization) | ~9 min (full context per session) | ~3-4 min (story-scoped) |
195
+ | Cost (12 stories) | ~$0.40-0.60* | $1.17 | ~$0.50-0.70 |
196
+ | Test coverage | Prompt-based TDD | Session-isolated TDD | Session-isolated TDD |
197
+ | Mid-run control | PAUSE/ABORT/SKIP/RETRY | None | PAUSE/ABORT/SKIP |
198
+ | Review phase | 6 micro-tasks | None | None (P1 for v0.3) |
199
+
200
+ *Relentless estimates based on context optimization claims and architecture analysis; no direct benchmark run.
201
+
202
+ ---
203
+
204
+ ## Conclusion
205
+
206
+ ngent v0.2 should focus on the **three P0 features** (context extraction, queue commands, 3-tier routing) which together address the two biggest pain points from benchmarking: **session cost** and **lack of mid-run control**. Combined with the existing TDD enforcement advantage, this would make ngent competitive with Relentless for our use case while staying at ~3.2K LOC (vs 18.9K).
207
+
208
+ The key insight: **don't try to be Relentless.** Port the ideas, not the code. ngent's value is in being opinionated and simple — a tool that does one thing well (orchestrate Claude Code with TDD) rather than a platform that supports everything.
@@ -0,0 +1,136 @@
1
+ # ngent v0.2 Implementation Plan
2
+ **Date:** 2026-02-16
3
+ **Branch:** master (local commits only)
4
+
5
+ ## Overview
6
+ 4 features, 4 phases. ~530 LOC total. Each phase is self-contained.
7
+
8
+ ## Phase 1: Story-Scoped Context Extraction (~200 LOC)
9
+
10
+ Replace the generic token-budgeted context builder with PRD-aware story extraction.
11
+
12
+ ### Changes:
13
+ **`src/context/builder.ts`** — Rewrite `buildContext()`:
14
+ - Accept the full PRD + current story ID
15
+ - Extract only: current story description + AC + dependency stories from PRD
16
+ - Add progress summary line: "Progress: 5/12 stories complete (4 passed, 1 failed)"
17
+ - Keep token budget enforcement but feed it story-scoped content instead of file reads
18
+ - Remove `readFileSafe` and file-based context (not used in practice)
19
+
20
+ **`src/context/types.ts`** — Simplify:
21
+ - `StoryContext` should accept `PRD` + `currentStoryId` instead of `relevantFiles[]`
22
+ - Keep `BuiltContext` and `ContextBudget` as-is
23
+ - Remove `ContextBuilderConfig` (over-engineered for what we need)
24
+
25
+ **`src/execution/runner.ts`** — Update `maybeGetContext()`:
26
+ - Pass the loaded PRD + current story to the new builder
27
+ - Remove the `ContextBuilderConfig` construction
28
+
29
+ **`test/context.test.ts`** + **`test/context-integration.test.ts`** — Update tests:
30
+ - Test story extraction from a sample PRD
31
+ - Test dependency story inclusion
32
+ - Test progress summary generation
33
+ - Remove file-read tests
34
+
35
+ **Run:** `bun test`
36
+ **Commit:** `feat(context): story-scoped extraction from PRD`
37
+
38
+ ## Phase 2: Queue Commands — PAUSE/ABORT/SKIP (~150 LOC)
39
+
40
+ Add mid-run control commands to `.queue.txt`.
41
+
42
+ ### Changes:
43
+ **`src/queue/types.ts`** — Add:
44
+ ```ts
45
+ export type QueueCommand = "PAUSE" | "ABORT" | { type: "SKIP"; storyId: string };
46
+ export interface QueueFileResult {
47
+ commands: QueueCommand[];
48
+ guidance: string[]; // Non-command lines (existing behavior)
49
+ }
50
+ ```
51
+
52
+ **`src/queue/manager.ts`** — Add `parseQueueFile(content: string): QueueFileResult`:
53
+ - Parse lines: `PAUSE`, `ABORT`, `SKIP US-XXX` are commands
54
+ - Everything else after `--- PENDING ---` is guidance (existing behavior)
55
+ - Commands are case-insensitive
56
+ - Return both commands and guidance
57
+
58
+ **`src/execution/runner.ts`** — Check queue between stories:
59
+ - After each story completes, read `.queue.txt` and parse
60
+ - `PAUSE` → log "⏸️ Paused by user", break loop, return partial results
61
+ - `ABORT` → mark remaining stories as skipped, break loop
62
+ - `SKIP US-XXX` → set that story's status to "skipped", continue
63
+ - Clear processed commands from `.queue.txt` after handling
64
+
65
+ **`test/queue.test.ts`** — Add tests:
66
+ - Parse PAUSE, ABORT, SKIP commands
67
+ - Mixed commands + guidance text
68
+ - Case insensitivity
69
+ - Integration: runner respects PAUSE/ABORT/SKIP
70
+
71
+ **Run:** `bun test`
72
+ **Commit:** `feat(queue): add PAUSE/ABORT/SKIP commands`
73
+
74
+ ## Phase 3: 3-Tier Model Routing (~80 LOC)
75
+
76
+ The config already has 3 tiers (fast/balanced/powerful). The router maps complexity→tier correctly. What's missing: the escalation path should support all 3 tiers explicitly, and the `escalateModelTier()` function in runner.ts needs to handle the full chain.
77
+
78
+ ### Changes:
79
+ **`src/execution/runner.ts`** — Fix `escalateModelTier()`:
80
+ - Current: simple tier bump that may not cover all tiers
81
+ - New: explicit chain `fast → balanced → powerful → null` (null = max reached)
82
+ - Log the escalation with tier names
83
+
84
+ **`src/config/schema.ts`** — Add validation:
85
+ - Ensure `complexityRouting` values are valid `ModelTier` keys
86
+ - Ensure escalation `maxAttempts` >= 1
87
+
88
+ **`test/routing.test.ts`** — Add tests:
89
+ - Verify all 4 complexities route to correct tiers
90
+ - Verify escalation chain: fast→balanced→powerful→null
91
+ - Verify config validation catches invalid tiers
92
+
93
+ **Run:** `bun test`
94
+ **Commit:** `feat(routing): explicit 3-tier escalation chain`
95
+
96
+ ## Phase 4: Story Batching (~100 LOC)
97
+
98
+ Group consecutive simple-complexity stories into a single agent session to reduce startup overhead.
99
+
100
+ ### Changes:
101
+ **`src/execution/runner.ts`** — Add batching logic:
102
+ - Before the main loop, scan pending stories
103
+ - Group consecutive simple stories into batches (max 4 per batch)
104
+ - For batched stories: build a combined prompt with all stories
105
+ - Execute batch in a single session, parse results per-story
106
+ - Non-simple stories execute individually (existing behavior)
107
+ - Add `--no-batch` CLI flag to disable
108
+
109
+ **`bin/ngent.ts`** — Add `--no-batch` flag
110
+
111
+ **`src/execution/runner.ts`** — Add `buildBatchPrompt(stories: UserStory[]): string`:
112
+ - Combine multiple stories into one prompt
113
+ - Number each story clearly: "## Story 1: ...", "## Story 2: ..."
114
+ - Instruct agent to commit each story separately
115
+
116
+ **`test/runner.test.ts`** — Add tests:
117
+ - Batch grouping logic (consecutive simple stories)
118
+ - Mixed complexity stops batching
119
+ - Max batch size enforcement
120
+ - Batch prompt generation
121
+
122
+ **Run:** `bun test`
123
+ **Commit:** `feat(execution): story batching for simple stories`
124
+
125
+ ## Test Strategy
126
+ - Mode: hybrid
127
+ - TDD targets: Phase 2 (queue commands — new public API, write tests first)
128
+ - Test-after targets: Phase 1, 3, 4 (extending existing tested modules)
129
+
130
+ ## Summary
131
+ | Phase | Feature | Est. LOC | Strategy |
132
+ |:---|:---|:---|:---|
133
+ | 1 | Story-scoped context | ~200 | test-after |
134
+ | 2 | Queue commands | ~150 | test-first |
135
+ | 3 | 3-tier escalation | ~80 | test-after |
136
+ | 4 | Story batching | ~100 | test-after |