@pugi/cli 0.1.0-beta.9 → 0.1.0-beta.91

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 (411) hide show
  1. package/CHANGELOG.md +132 -0
  2. package/LICENSE +1 -1
  3. package/assets/pugi-prozr2-mascot.ansi +9 -0
  4. package/bin/run.js +33 -1
  5. package/dist/commands/deploy.js +40 -40
  6. package/dist/commands/flatten.js +191 -0
  7. package/dist/commands/jobs-watch.js +201 -0
  8. package/dist/commands/jobs.js +42 -27
  9. package/dist/commands/smoke.js +133 -0
  10. package/dist/core/agent-progress/cleanup.js +134 -0
  11. package/dist/core/agent-progress/schema.js +144 -0
  12. package/dist/core/agent-progress/writer.js +101 -0
  13. package/dist/core/agents/adaptive-router.js +330 -0
  14. package/dist/core/agents/query-decomposer.js +297 -0
  15. package/dist/core/agents/registry.js +3 -3
  16. package/dist/core/approvals/shortcut-resolver.js +98 -0
  17. package/dist/core/artifact-chain/dispatcher.js +148 -0
  18. package/dist/core/artifact-chain/exporter.js +164 -0
  19. package/dist/core/artifact-chain/state.js +243 -0
  20. package/dist/core/artifact-chain/steps.js +169 -0
  21. package/dist/core/ask-user/question.js +92 -0
  22. package/dist/core/audit/audit-trail.js +275 -0
  23. package/dist/core/auth/ensure-authenticated.js +129 -0
  24. package/dist/core/auth/env-provider.js +238 -0
  25. package/dist/core/auto-open-browser.js +4 -4
  26. package/dist/core/auto-update/channels.js +122 -0
  27. package/dist/core/auto-update/checker.js +241 -0
  28. package/dist/core/auto-update/state.js +235 -0
  29. package/dist/core/bare-mode/index.js +107 -0
  30. package/dist/core/bash/redirect.js +281 -0
  31. package/dist/core/bash-classifier.js +436 -40
  32. package/dist/core/checkpoint/resumer.js +149 -0
  33. package/dist/core/checkpoint/rewinder.js +291 -0
  34. package/dist/core/checkpoints/shadow-git.js +670 -0
  35. package/dist/core/citations/parser.js +109 -0
  36. package/dist/core/classifier/yolo-classifier.js +88 -0
  37. package/dist/core/codegraph/decision-store.js +248 -0
  38. package/dist/core/codegraph/detect-repo.js +459 -0
  39. package/dist/core/codegraph/install.js +134 -0
  40. package/dist/core/codegraph/offer-hook.js +220 -0
  41. package/dist/core/compact/auto-trigger.js +96 -0
  42. package/dist/core/compact/buffer-rewriter.js +115 -0
  43. package/dist/core/compact/summarizer.js +208 -0
  44. package/dist/core/compact/token-counter.js +108 -0
  45. package/dist/core/consensus/anvil-fanout.js +25 -25
  46. package/dist/core/consensus/diff-capture.js +121 -12
  47. package/dist/core/consensus/rubric.js +21 -21
  48. package/dist/core/context/builder.js +6 -6
  49. package/dist/core/context/compaction-events.js +8 -8
  50. package/dist/core/context/compaction.js +31 -31
  51. package/dist/core/context/index.js +15 -8
  52. package/dist/core/context/invariants.js +51 -51
  53. package/dist/core/context/markdown-loader.js +28 -10
  54. package/dist/core/context/markdown-traverse.js +255 -0
  55. package/dist/core/context/pugiignore.js +41 -41
  56. package/dist/core/context/repo-skeleton.js +37 -37
  57. package/dist/core/context/tool-eviction.js +55 -0
  58. package/dist/core/context/watcher.js +32 -32
  59. package/dist/core/context/working-set.js +23 -23
  60. package/dist/core/coordinator/agent-tools.js +77 -0
  61. package/dist/core/coordinator/agent-toolset.js +65 -0
  62. package/dist/core/coordinator/fsm.js +73 -0
  63. package/dist/core/coordinator/mode-fsm.js +70 -0
  64. package/dist/core/cost/rate-card.js +129 -0
  65. package/dist/core/cost/tracker.js +221 -0
  66. package/dist/core/credentials.js +13 -13
  67. package/dist/core/cron/scheduler.js +138 -0
  68. package/dist/core/denial-tracking/index.js +8 -0
  69. package/dist/core/denial-tracking/state.js +264 -0
  70. package/dist/core/diagnostics/probe-runner.js +93 -0
  71. package/dist/core/diagnostics/probes/api.js +46 -0
  72. package/dist/core/diagnostics/probes/auth.js +93 -0
  73. package/dist/core/diagnostics/probes/bare-mode.js +42 -0
  74. package/dist/core/diagnostics/probes/cli-version.js +127 -0
  75. package/dist/core/diagnostics/probes/config.js +72 -0
  76. package/dist/core/diagnostics/probes/denial-tracking.js +57 -0
  77. package/dist/core/diagnostics/probes/disk.js +81 -0
  78. package/dist/core/diagnostics/probes/engine-live.js +46 -0
  79. package/dist/core/diagnostics/probes/git.js +65 -0
  80. package/dist/core/diagnostics/probes/hooks.js +118 -0
  81. package/dist/core/diagnostics/probes/mcp.js +75 -0
  82. package/dist/core/diagnostics/probes/node.js +59 -0
  83. package/dist/core/diagnostics/probes/pnpm.js +36 -0
  84. package/dist/core/diagnostics/probes/pugi-md.js +89 -0
  85. package/dist/core/diagnostics/probes/sandbox.js +40 -0
  86. package/dist/core/diagnostics/probes/session.js +74 -0
  87. package/dist/core/diagnostics/probes/status-snapshot.js +488 -0
  88. package/dist/core/diagnostics/probes/workspace.js +63 -0
  89. package/dist/core/diagnostics/types.js +70 -0
  90. package/dist/core/dispatch/cache-cleanup.js +197 -0
  91. package/dist/core/dispatch/cache-handoff.js +295 -0
  92. package/dist/core/edits/apply-patch-layer-e.js +189 -0
  93. package/dist/core/edits/dispatch.js +333 -7
  94. package/dist/core/edits/format-detector.js +260 -0
  95. package/dist/core/edits/format-matrix.js +26 -0
  96. package/dist/core/edits/fuzzy-ladder.js +650 -0
  97. package/dist/core/edits/index.js +5 -1
  98. package/dist/core/edits/journal.js +199 -0
  99. package/dist/core/edits/layer-a-apply.js +15 -15
  100. package/dist/core/edits/layer-a-fuzzy-apply.js +198 -0
  101. package/dist/core/edits/layer-b-apply.js +9 -9
  102. package/dist/core/edits/layer-c-apply.js +6 -6
  103. package/dist/core/edits/layer-d-ast.js +557 -14
  104. package/dist/core/edits/marker-parser.js +12 -12
  105. package/dist/core/edits/security-gate.js +27 -27
  106. package/dist/core/edits/verify-hook.js +273 -0
  107. package/dist/core/edits/worktree.js +29 -29
  108. package/dist/core/engine/anvil-client.js +214 -26
  109. package/dist/core/engine/auto-compact.js +179 -0
  110. package/dist/core/engine/budgets.js +186 -0
  111. package/dist/core/engine/context-prefix.js +155 -0
  112. package/dist/core/engine/index.js +1 -1
  113. package/dist/core/engine/intensity.js +158 -0
  114. package/dist/core/engine/intent.js +260 -0
  115. package/dist/core/engine/native-pugi.js +1295 -227
  116. package/dist/core/engine/prompts.js +129 -19
  117. package/dist/core/engine/strip-internal-fields.js +124 -0
  118. package/dist/core/engine/tool-bridge.js +1792 -59
  119. package/dist/core/evaluation/golden-dataset.js +293 -0
  120. package/dist/core/feedback/queue.js +177 -0
  121. package/dist/core/feedback/submitter.js +145 -0
  122. package/dist/core/file-cache.js +113 -1
  123. package/dist/core/flatten/flatten-repo.js +439 -0
  124. package/dist/core/format/osc8-link.js +28 -0
  125. package/dist/core/hook-chains.js +392 -0
  126. package/dist/core/hooks/citation-verify-hook.js +138 -0
  127. package/dist/core/hooks/citation-verify.js +112 -0
  128. package/dist/core/hooks/events.js +46 -0
  129. package/dist/core/hooks/index.js +15 -0
  130. package/dist/core/hooks/registry.js +216 -0
  131. package/dist/core/hooks/runner.js +236 -0
  132. package/dist/core/hooks/v2/event-emitter.js +115 -0
  133. package/dist/core/hooks/v2/executor.js +282 -0
  134. package/dist/core/hooks/v2/index.js +25 -0
  135. package/dist/core/hooks/v2/lifecycle.js +104 -0
  136. package/dist/core/hooks/v2/loader.js +216 -0
  137. package/dist/core/hooks/v2/matcher.js +125 -0
  138. package/dist/core/hooks/v2/trust.js +143 -0
  139. package/dist/core/hooks/v2/types.js +86 -0
  140. package/dist/core/hooks/worktree-events.js +158 -0
  141. package/dist/core/image/renderer.js +71 -0
  142. package/dist/core/init/detector.js +582 -0
  143. package/dist/core/init/template-renderer.js +242 -0
  144. package/dist/core/jobs/registry.js +18 -18
  145. package/dist/core/ledger/results-tsv.js +142 -0
  146. package/dist/core/log-discipline/stdout-redirect.js +51 -0
  147. package/dist/core/lsp/cache.js +105 -0
  148. package/dist/core/lsp/client.js +551 -41
  149. package/dist/core/lsp/language-detect.js +66 -0
  150. package/dist/core/lsp/post-edit-diagnostics.js +171 -0
  151. package/dist/core/lsp/server-detect.js +173 -0
  152. package/dist/core/lsp/symbol-cache.js +162 -0
  153. package/dist/core/lsp/symbol-tools.js +664 -0
  154. package/dist/core/mcp/client.js +97 -28
  155. package/dist/core/mcp/http-server.js +553 -0
  156. package/dist/core/mcp/orchestrator-tools.js +662 -0
  157. package/dist/core/mcp/permission.js +190 -0
  158. package/dist/core/mcp/registry.js +39 -17
  159. package/dist/core/mcp/server-tools.js +219 -0
  160. package/dist/core/mcp/server.js +397 -0
  161. package/dist/core/mcp/trust.js +10 -10
  162. package/dist/core/memory/dual-write.js +416 -0
  163. package/dist/core/memory/passive-extract.js +130 -0
  164. package/dist/core/memory/phase1-kinds.js +20 -0
  165. package/dist/core/memory/secret-scanner.js +304 -0
  166. package/dist/core/memory-sync/queue.js +170 -0
  167. package/dist/core/metrics/extract.js +113 -0
  168. package/dist/core/modes/roo-modes.js +68 -0
  169. package/dist/core/onboarding/ensure-initialized.js +133 -0
  170. package/dist/core/onboarding/marker.js +111 -0
  171. package/dist/core/onboarding/telemetry-state.js +108 -0
  172. package/dist/core/output-style/presets.js +176 -0
  173. package/dist/core/output-style/state.js +185 -0
  174. package/dist/core/path-security.js +287 -5
  175. package/dist/core/permission.js +82 -22
  176. package/dist/core/permissions/auto-classifier.js +124 -0
  177. package/dist/core/permissions/bash-parser.js +371 -0
  178. package/dist/core/permissions/circuit-breaker.js +83 -0
  179. package/dist/core/permissions/constrained-edit.js +91 -0
  180. package/dist/core/permissions/gate.js +278 -0
  181. package/dist/core/permissions/index.js +20 -0
  182. package/dist/core/permissions/mode.js +174 -0
  183. package/dist/core/permissions/network-egress.js +137 -0
  184. package/dist/core/permissions/state.js +241 -0
  185. package/dist/core/permissions/tool-class.js +93 -0
  186. package/dist/core/plan-mode/ui-state.js +51 -0
  187. package/dist/core/plans/plan-artifact.js +721 -0
  188. package/dist/core/policy-limits/etag-store.js +122 -0
  189. package/dist/core/prd-check/parser.js +215 -0
  190. package/dist/core/prd-check/reporter.js +127 -0
  191. package/dist/core/prd-check/session-review.js +557 -0
  192. package/dist/core/prd-check/verifiers.js +223 -0
  193. package/dist/core/prompt-cache/client-cache.js +99 -0
  194. package/dist/core/prompts/assembly.js +29 -0
  195. package/dist/core/prompts/registry.js +364 -0
  196. package/dist/core/pugi-md/cc-compat-rules.js +735 -0
  197. package/dist/core/pugi-md/context-injector.js +76 -0
  198. package/dist/core/pugi-md/walk-up.js +207 -0
  199. package/dist/core/python/uv-installer.js +270 -0
  200. package/dist/core/python/uv-resolver.js +83 -0
  201. package/dist/core/rate-limit/narrator.js +146 -0
  202. package/dist/core/recipes/cli-types.js +20 -0
  203. package/dist/core/recipes/loader.js +103 -0
  204. package/dist/core/recipes/runner.js +345 -0
  205. package/dist/core/recipes/schema.js +587 -0
  206. package/dist/core/release-notes/parser.js +241 -0
  207. package/dist/core/release-notes/state.js +116 -0
  208. package/dist/core/repl/ask.js +37 -37
  209. package/dist/core/repl/cancellation.js +26 -26
  210. package/dist/core/repl/cap-warning.js +4 -4
  211. package/dist/core/repl/clipboard-read.js +11 -11
  212. package/dist/core/repl/dispatch-fsm.js +12 -12
  213. package/dist/core/repl/history-search.js +15 -15
  214. package/dist/core/repl/history.js +28 -18
  215. package/dist/core/repl/kill-ring.js +5 -5
  216. package/dist/core/repl/model-pricing.js +135 -0
  217. package/dist/core/repl/privacy-banner.js +22 -22
  218. package/dist/core/repl/session.js +2148 -217
  219. package/dist/core/repl/slash-commands.js +501 -41
  220. package/dist/core/repl/store/index.js +1 -1
  221. package/dist/core/repl/store/jsonl-log.js +22 -22
  222. package/dist/core/repl/store/lockfile.js +10 -10
  223. package/dist/core/repl/store/session-store.js +136 -107
  224. package/dist/core/repl/store/types.js +15 -15
  225. package/dist/core/repl/store/uuid-v7.js +12 -12
  226. package/dist/core/repl/workspace-context.js +43 -21
  227. package/dist/core/repo-map/build.js +125 -0
  228. package/dist/core/repo-map/cache.js +185 -0
  229. package/dist/core/repo-map/extractor.js +254 -0
  230. package/dist/core/repo-map/formatter.js +145 -0
  231. package/dist/core/repo-map/page-rank.js +105 -0
  232. package/dist/core/repo-map/scanner.js +211 -0
  233. package/dist/core/retry-budget/budget.js +284 -0
  234. package/dist/core/retry-budget/index.js +5 -0
  235. package/dist/core/retry-budget/retry-cap.js +74 -0
  236. package/dist/core/routing/lead-worker.js +43 -0
  237. package/dist/core/routing/pre-flight-estimator.js +108 -0
  238. package/dist/core/runs/run-tree.js +103 -0
  239. package/dist/core/security/injection-scanner.js +367 -0
  240. package/dist/core/security/output-filter.js +418 -0
  241. package/dist/core/session/env-file.js +105 -0
  242. package/dist/core/session/section-budgets.js +140 -0
  243. package/dist/core/session.js +92 -0
  244. package/dist/core/settings.js +324 -5
  245. package/dist/core/share/formatter.js +271 -0
  246. package/dist/core/share/redactor.js +221 -0
  247. package/dist/core/share/uploader.js +267 -0
  248. package/dist/core/skills/defaults.js +30 -30
  249. package/dist/core/skills/loader.js +22 -22
  250. package/dist/core/skills/sources.js +27 -27
  251. package/dist/core/smoke/headless-driver.js +174 -0
  252. package/dist/core/smoke/orchestrator.js +194 -0
  253. package/dist/core/smoke/runner.js +238 -0
  254. package/dist/core/smoke/scenario-parser.js +316 -0
  255. package/dist/core/statusline.js +99 -0
  256. package/dist/core/subagents/dispatcher-real.js +600 -0
  257. package/dist/core/subagents/dispatcher.js +132 -43
  258. package/dist/core/subagents/index.js +19 -6
  259. package/dist/core/subagents/isolation-matrix.js +213 -0
  260. package/dist/core/subagents/spawn.js +19 -4
  261. package/dist/core/telemetry/emitter.js +229 -0
  262. package/dist/core/telemetry/queue.js +251 -0
  263. package/dist/core/theme/context.js +91 -0
  264. package/dist/core/theme/presets.js +228 -0
  265. package/dist/core/theme/state.js +181 -0
  266. package/dist/core/todos/invariant.js +10 -0
  267. package/dist/core/todos/state.js +177 -0
  268. package/dist/core/tool-schema/compressor.js +89 -0
  269. package/dist/core/transport/version-interceptor.js +166 -0
  270. package/dist/core/trust.js +2 -2
  271. package/dist/core/tui/thinking-block.js +64 -0
  272. package/dist/core/vim/keymap.js +288 -0
  273. package/dist/core/vim/state.js +92 -0
  274. package/dist/core/watch-markers/marker-watcher.js +133 -0
  275. package/dist/core/worktree/include-parser.js +249 -0
  276. package/dist/core/worktree-manager/cleanup.js +123 -0
  277. package/dist/core/worktree-manager/manager.js +303 -0
  278. package/dist/index.js +36 -0
  279. package/dist/runtime/bootstrap.js +190 -0
  280. package/dist/runtime/cli.js +4185 -549
  281. package/dist/runtime/commands/agents.js +31 -31
  282. package/dist/runtime/commands/budget.js +5 -5
  283. package/dist/runtime/commands/cancel.js +231 -0
  284. package/dist/runtime/commands/chain.js +489 -0
  285. package/dist/runtime/commands/codegraph-status.js +227 -0
  286. package/dist/runtime/commands/compact.js +297 -0
  287. package/dist/runtime/commands/config.js +73 -39
  288. package/dist/runtime/commands/cost.js +199 -0
  289. package/dist/runtime/commands/delegate.js +27 -4
  290. package/dist/runtime/commands/dispatch.js +126 -0
  291. package/dist/runtime/commands/doctor.js +579 -0
  292. package/dist/runtime/commands/feedback.js +184 -0
  293. package/dist/runtime/commands/hooks.js +187 -0
  294. package/dist/runtime/commands/init.js +254 -0
  295. package/dist/runtime/commands/lsp.js +200 -38
  296. package/dist/runtime/commands/mcp.js +879 -0
  297. package/dist/runtime/commands/memory.js +582 -0
  298. package/dist/runtime/commands/model.js +237 -0
  299. package/dist/runtime/commands/onboarding.js +275 -0
  300. package/dist/runtime/commands/patch.js +12 -12
  301. package/dist/runtime/commands/permissions.js +112 -0
  302. package/dist/runtime/commands/plan.js +143 -0
  303. package/dist/runtime/commands/prd-check.js +285 -0
  304. package/dist/runtime/commands/privacy.js +17 -17
  305. package/dist/runtime/commands/recipe.js +325 -0
  306. package/dist/runtime/commands/redo-blob-store.js +92 -0
  307. package/dist/runtime/commands/redo.js +361 -0
  308. package/dist/runtime/commands/release-notes.js +229 -0
  309. package/dist/runtime/commands/repo-map.js +95 -0
  310. package/dist/runtime/commands/report.js +299 -0
  311. package/dist/runtime/commands/resume.js +118 -0
  312. package/dist/runtime/commands/review-consensus.js +68 -53
  313. package/dist/runtime/commands/rewind.js +333 -0
  314. package/dist/runtime/commands/roster.js +14 -14
  315. package/dist/runtime/commands/sessions.js +163 -0
  316. package/dist/runtime/commands/share.js +316 -0
  317. package/dist/runtime/commands/skills.js +31 -31
  318. package/dist/runtime/commands/status.js +186 -0
  319. package/dist/runtime/commands/stickers.js +82 -0
  320. package/dist/runtime/commands/style.js +194 -0
  321. package/dist/runtime/commands/theme.js +196 -0
  322. package/dist/runtime/commands/undo.js +54 -22
  323. package/dist/runtime/commands/update.js +289 -0
  324. package/dist/runtime/commands/vim.js +140 -0
  325. package/dist/runtime/commands/worktree.js +8 -8
  326. package/dist/runtime/commands/worktrees.js +155 -0
  327. package/dist/runtime/headless-repl.js +195 -0
  328. package/dist/runtime/headless.js +543 -0
  329. package/dist/runtime/load-hooks-or-exit.js +71 -0
  330. package/dist/runtime/plan-decompose.js +22 -22
  331. package/dist/runtime/sigint-guard.js +272 -0
  332. package/dist/runtime/update-check.js +28 -28
  333. package/dist/runtime/version.js +65 -0
  334. package/dist/runtime/worktree-bootstrap.js +579 -0
  335. package/dist/skills/bundled/batch.js +617 -0
  336. package/dist/skills/bundled/index.js +45 -0
  337. package/dist/skills/bundled/loop.js +358 -0
  338. package/dist/skills/bundled/remember.js +383 -0
  339. package/dist/skills/bundled/simplify.js +289 -0
  340. package/dist/skills/bundled/skillify.js +373 -0
  341. package/dist/skills/bundled/stuck.js +558 -0
  342. package/dist/skills/bundled/verify.js +439 -0
  343. package/dist/testing/vcr.js +486 -0
  344. package/dist/tools/agent-tool.js +229 -0
  345. package/dist/tools/apply-patch.js +89 -28
  346. package/dist/tools/ask-user-question.js +337 -0
  347. package/dist/tools/ask-user.js +115 -0
  348. package/dist/tools/bash.js +624 -46
  349. package/dist/tools/brief.js +224 -0
  350. package/dist/tools/cron.js +433 -0
  351. package/dist/tools/enter-worktree.js +250 -0
  352. package/dist/tools/exit-worktree.js +147 -0
  353. package/dist/tools/file-tools.js +161 -44
  354. package/dist/tools/lsp-tools.js +377 -1
  355. package/dist/tools/mcp-tool.js +260 -0
  356. package/dist/tools/multi-edit.js +361 -0
  357. package/dist/tools/powershell.js +268 -0
  358. package/dist/tools/registry.js +99 -4
  359. package/dist/tools/skill-tool.js +96 -0
  360. package/dist/tools/sleep.js +99 -0
  361. package/dist/tools/synthetic-output.js +133 -0
  362. package/dist/tools/tasks.js +208 -0
  363. package/dist/tools/todo-write.js +184 -0
  364. package/dist/tools/verify-plan-execution.js +295 -0
  365. package/dist/tools/web-fetch-injection-scanner.js +207 -0
  366. package/dist/tools/web-fetch.js +195 -10
  367. package/dist/tools/web-search.js +458 -0
  368. package/dist/tui/agent-progress-card.js +111 -0
  369. package/dist/tui/agent-tree.js +11 -1
  370. package/dist/tui/ask-modal.js +14 -14
  371. package/dist/tui/ask-user-question-chips.js +315 -0
  372. package/dist/tui/ask-user-question-prompt.js +203 -0
  373. package/dist/tui/compact-banner.js +81 -0
  374. package/dist/tui/conversation-pane.js +85 -11
  375. package/dist/tui/cost-table.js +111 -0
  376. package/dist/tui/device-flow.js +2 -2
  377. package/dist/tui/doctor-table.js +46 -0
  378. package/dist/tui/feedback-prompt.js +156 -0
  379. package/dist/tui/input-box.js +247 -32
  380. package/dist/tui/login-picker.js +3 -3
  381. package/dist/tui/markdown-render.js +6 -6
  382. package/dist/tui/multi-file-diff-approval.js +375 -0
  383. package/dist/tui/onboarding-wizard.js +240 -0
  384. package/dist/tui/permissions-picker.js +86 -0
  385. package/dist/tui/render.js +36 -1
  386. package/dist/tui/repl-render.js +176 -25
  387. package/dist/tui/repl-splash-art.js +16 -16
  388. package/dist/tui/repl-splash-mascot.js +48 -24
  389. package/dist/tui/repl-splash.js +22 -22
  390. package/dist/tui/repl.js +125 -45
  391. package/dist/tui/slash-palette.js +6 -6
  392. package/dist/tui/splash.js +2 -2
  393. package/dist/tui/status-bar.js +109 -31
  394. package/dist/tui/status-table.js +7 -0
  395. package/dist/tui/stickers-art.js +136 -0
  396. package/dist/tui/style-table.js +28 -0
  397. package/dist/tui/theme-table.js +29 -0
  398. package/dist/tui/thinking-spinner.js +123 -0
  399. package/dist/tui/tool-stream-pane.js +53 -4
  400. package/dist/tui/update-banner.js +27 -2
  401. package/dist/tui/vim-input.js +267 -0
  402. package/dist/tui/welcome-banner.js +107 -0
  403. package/dist/tui/welcome-data.js +293 -0
  404. package/dist/tui/workspace-context.js +2 -2
  405. package/package.json +31 -16
  406. package/test/scenarios/codegen-create-file.scenario.txt +13 -0
  407. package/test/scenarios/compact-force.scenario.txt +12 -0
  408. package/test/scenarios/identity.scenario.txt +12 -0
  409. package/test/scenarios/persona-handoff.scenario.txt +12 -0
  410. package/test/scenarios/walkback.scenario.txt +12 -0
  411. package/dist/core/engine/compaction-hook.js +0 -154
@@ -0,0 +1,224 @@
1
+ /**
2
+ * brief tool — operator-facing progress brief (tool gap pack).
3
+ *
4
+ * Emits a short, structured status note from the engine to the operator
5
+ * without consuming an assistant turn for narrative. The model calls
6
+ * this tool when it wants to surface "what I am doing right now" — a
7
+ * planning sketch, a blocker reason, a final wrap — in a form the
8
+ * operator can scan at-a-glance.
9
+ *
10
+ * Wire shape:
11
+ * args: { headline: string, status: 'planning'|'working'|'blocked'|'done',
12
+ * detail?: string }
13
+ * side-effect: append one JSON line to `.pugi/briefs/<sessionId>.jsonl`,
14
+ * via the atomic tmp+rename pattern (see writeBriefLine).
15
+ * return: one-line text envelope the engine echoes back to the
16
+ * operator's stdout (the engine adapter renders it as a
17
+ * neutral system line above the next model output).
18
+ *
19
+ * Why JSONL (one record per line) instead of a single rewritten JSON
20
+ * document: briefs accumulate across a session and the operator may
21
+ * want to scroll back through them; a JSONL tail is the natural shape
22
+ * for "give me the last N briefs" — same convention `.pugi/sessions/`
23
+ * already uses for tool-call events.
24
+ *
25
+ * Why atomic tmp+rename for append: a concurrent reader (`pugi briefs
26
+ * --tail`, future TUI surface) must never see a half-written line. The
27
+ * pattern: read existing body -> append the new line -> write the
28
+ * combined body to a sibling tmp file -> rename. Atomic on the same
29
+ * filesystem and POSIX-portable. The overhead (re-write the whole file
30
+ * on each append) is acceptable because briefs are short and capped to
31
+ * a small per-session budget by upstream rate limits.
32
+ *
33
+ * Brand voice: English only, no emoji, no banned words.
34
+ */
35
+ import { existsSync, mkdirSync, readFileSync, renameSync, writeFileSync } from 'node:fs';
36
+ import { dirname, join, resolve } from 'node:path';
37
+ /** Maximum header length. Mirrors the agent-progress card cap so the
38
+ * TUI can render briefs and progress cards in the same visual lane. */
39
+ export const BRIEF_HEADLINE_MAX = 120;
40
+ /** Maximum detail length. Keeps a single brief well below the 4 KiB
41
+ * line limit some tooling assumes for JSONL files. */
42
+ export const BRIEF_DETAIL_MAX = 2_000;
43
+ /** Hard cap on total bytes per brief line. Defense-in-depth gate so a
44
+ * pathological detail-with-headline-with-status combo cannot blow the
45
+ * tail consumer's per-line buffer. */
46
+ export const BRIEF_LINE_MAX_BYTES = 4_096;
47
+ /** Canonical brief statuses. The set is intentionally tiny — the goal
48
+ * is "what is the agent doing" at a glance, not a free-form taxonomy. */
49
+ export const BRIEF_STATUSES = ['planning', 'working', 'blocked', 'done'];
50
+ /** Sentinel returned when the input fails schema validation. The
51
+ * dispatcher pattern-matches on the prefix for retry-budget bookkeeping
52
+ * and the model self-corrects from the issue list that follows. */
53
+ export const BRIEF_INVALID_ARGS = 'BRIEF_INVALID_ARGS';
54
+ /** Sentinel returned when the encoded line would exceed the per-line
55
+ * byte cap. Distinct from the args-schema failure so the model knows it
56
+ * needs to shorten the detail / headline, not change the shape. */
57
+ export const BRIEF_LINE_TOO_LARGE = 'BRIEF_LINE_TOO_LARGE';
58
+ /**
59
+ * Validate the raw arguments. Returns the typed value on success or a
60
+ * `BRIEF_INVALID_ARGS: ...` sentinel string the dispatcher surfaces back
61
+ * to the model.
62
+ */
63
+ export function parseBriefArgs(raw) {
64
+ if (typeof raw !== 'object' || raw === null || Array.isArray(raw)) {
65
+ return `${BRIEF_INVALID_ARGS}: arguments must be a JSON object`;
66
+ }
67
+ const obj = raw;
68
+ const issues = [];
69
+ const headline = obj['headline'];
70
+ if (typeof headline !== 'string') {
71
+ issues.push('headline: must be a string');
72
+ }
73
+ else if (headline.trim().length === 0) {
74
+ issues.push('headline: must be non-empty');
75
+ }
76
+ else if (headline.length > BRIEF_HEADLINE_MAX) {
77
+ issues.push(`headline: must be <= ${BRIEF_HEADLINE_MAX} chars`);
78
+ }
79
+ const status = obj['status'];
80
+ if (typeof status !== 'string') {
81
+ issues.push('status: must be a string');
82
+ }
83
+ else if (!BRIEF_STATUSES.includes(status)) {
84
+ issues.push(`status: must be one of ${BRIEF_STATUSES.join('|')}`);
85
+ }
86
+ let detail;
87
+ if (obj['detail'] !== undefined && obj['detail'] !== null) {
88
+ if (typeof obj['detail'] !== 'string') {
89
+ issues.push('detail: must be a string when present');
90
+ }
91
+ else if (obj['detail'].length > BRIEF_DETAIL_MAX) {
92
+ issues.push(`detail: must be <= ${BRIEF_DETAIL_MAX} chars`);
93
+ }
94
+ else {
95
+ detail = obj['detail'];
96
+ }
97
+ }
98
+ if (issues.length > 0) {
99
+ return `${BRIEF_INVALID_ARGS}: ${issues.join('; ')}`;
100
+ }
101
+ const result = detail !== undefined
102
+ ? { headline: headline, status: status, detail }
103
+ : { headline: headline, status: status };
104
+ return result;
105
+ }
106
+ /**
107
+ * Compute the on-disk path for a session's brief log. Public so a
108
+ * future tail consumer (`pugi briefs --tail <session>`) can share the
109
+ * exact resolution rules without duplicating layout knowledge.
110
+ */
111
+ export function briefLogPath(ctx) {
112
+ const safe = sanitizeSessionId(ctx.sessionId);
113
+ return join(resolve(ctx.workspaceRoot), '.pugi', 'briefs', `${safe}.jsonl`);
114
+ }
115
+ /**
116
+ * Sanitise a session id for use as a filename. Restricts to the same
117
+ * character set agent-progress uses (`[A-Za-z0-9_-]+`) so the basename
118
+ * cannot escape the briefs directory via a `..` segment. Collapses any
119
+ * disallowed character to `_`; an empty result falls back to `session`.
120
+ *
121
+ * NOT exported as a generic helper because the only caller is this
122
+ * module — keep the surface area minimal.
123
+ */
124
+ function sanitizeSessionId(id) {
125
+ if (typeof id !== 'string' || id.length === 0)
126
+ return 'session';
127
+ const collapsed = id.replace(/[^A-Za-z0-9_-]/g, '_');
128
+ const trimmed = collapsed.slice(0, 64);
129
+ return trimmed.length > 0 ? trimmed : 'session';
130
+ }
131
+ /**
132
+ * Dispatch entry point. Validates input, persists the brief line, and
133
+ * returns the operator-visible echo envelope. Returns sentinels on
134
+ * recoverable failures so the engine loop can surface them as tool
135
+ * results without tearing down on a throw.
136
+ */
137
+ export function dispatchBrief(ctx, raw) {
138
+ const parsed = parseBriefArgs(raw);
139
+ if (typeof parsed === 'string') {
140
+ return parsed;
141
+ }
142
+ const ts = (ctx.now ? ctx.now() : new Date()).toISOString();
143
+ const record = parsed.detail !== undefined
144
+ ? { ts, status: parsed.status, headline: parsed.headline, detail: parsed.detail }
145
+ : { ts, status: parsed.status, headline: parsed.headline };
146
+ const line = JSON.stringify(record);
147
+ // Defense-in-depth byte cap. The earlier char-length checks bound the
148
+ // best case, but multi-byte UTF-8 input can still push the encoded
149
+ // line over the limit. Surface a distinct sentinel so the model knows
150
+ // to shorten the payload rather than change the shape.
151
+ if (Buffer.byteLength(line, 'utf8') > BRIEF_LINE_MAX_BYTES) {
152
+ return `${BRIEF_LINE_TOO_LARGE}: encoded line exceeds ${BRIEF_LINE_MAX_BYTES} bytes`;
153
+ }
154
+ const path = briefLogPath(ctx);
155
+ appendBriefLine(path, line);
156
+ return formatEcho(record, path);
157
+ }
158
+ /**
159
+ * Atomic append. Read existing body -> append the new line -> write to
160
+ * sibling tmp -> rename. The rename is atomic on the same filesystem
161
+ * so a concurrent tail consumer never reads a half-written line.
162
+ *
163
+ * Append-only via full rewrite is acceptable because brief logs are
164
+ * tiny (one short JSON object per call, sub-kilobyte each, capped by
165
+ * upstream rate limits to a few-hundred per session at most).
166
+ */
167
+ function appendBriefLine(finalPath, line) {
168
+ const dir = dirname(finalPath);
169
+ if (!existsSync(dir)) {
170
+ mkdirSync(dir, { recursive: true });
171
+ }
172
+ const prior = existsSync(finalPath) ? readFileSync(finalPath, 'utf8') : '';
173
+ const tail = prior.length > 0 && !prior.endsWith('\n') ? '\n' : '';
174
+ const next = `${prior}${tail}${line}\n`;
175
+ const tmpPath = `${finalPath}.tmp-${process.pid}-${briefSequence++}`;
176
+ writeFileSync(tmpPath, next, { encoding: 'utf8', mode: 0o644 });
177
+ renameSync(tmpPath, finalPath);
178
+ }
179
+ let briefSequence = 0;
180
+ /**
181
+ * Render the one-line operator echo. The format is stable so a future
182
+ * REPL renderer can pattern-match the prefix for colouring.
183
+ */
184
+ function formatEcho(record, path) {
185
+ const detail = record.detail ? ` -- ${truncate(record.detail, 240)}` : '';
186
+ return `[brief ${record.status}] ${record.headline}${detail} (logged to ${path})`;
187
+ }
188
+ function truncate(value, max) {
189
+ if (value.length <= max)
190
+ return value;
191
+ return `${value.slice(0, max - 1)}…`;
192
+ }
193
+ /**
194
+ * JSON-Schema fragment the schema builder advertises to the model.
195
+ * Hand-written to mirror the `parseBriefArgs` checks 1:1 — same
196
+ * convention `todo_write` and `ask_user_question` use because the
197
+ * runtime engine wires OpenAI-shape JSON Schema and we have not
198
+ * greenlit a zod-to-json-schema dependency.
199
+ */
200
+ export const briefJsonSchema = {
201
+ type: 'object',
202
+ additionalProperties: false,
203
+ required: ['headline', 'status'],
204
+ properties: {
205
+ headline: {
206
+ type: 'string',
207
+ minLength: 1,
208
+ maxLength: BRIEF_HEADLINE_MAX,
209
+ description: `Short one-line summary, <= ${BRIEF_HEADLINE_MAX} chars.`,
210
+ },
211
+ status: {
212
+ type: 'string',
213
+ enum: [...BRIEF_STATUSES],
214
+ description: 'Lifecycle state: planning (deciding what to do), working (in progress), ' +
215
+ 'blocked (waiting on operator), done (final wrap).',
216
+ },
217
+ detail: {
218
+ type: 'string',
219
+ maxLength: BRIEF_DETAIL_MAX,
220
+ description: `Optional context, <= ${BRIEF_DETAIL_MAX} chars.`,
221
+ },
222
+ },
223
+ };
224
+ //# sourceMappingURL=brief.js.map
@@ -0,0 +1,433 @@
1
+ /**
2
+ * cron_* tool family — ScheduleCronTool / CronList / CronDelete (PUGI-7).
3
+ *
4
+ * Three tools that expose the local cron-routine surface to the persona:
5
+ *
6
+ * - `cron_create` — register a recurring routine. Writes one JSON
7
+ * document per routine to `.pugi/cron/<name>.json` via the atomic
8
+ * tmp+rename pattern.
9
+ * - `cron_delete` — remove a routine by name. Idempotent: deleting an
10
+ * unknown name returns `{ ok: true, removed: false }` instead of
11
+ * throwing, so the model never wedges on a stale routine list.
12
+ * - `cron_list` — return every registered routine, sorted by name.
13
+ * An empty registry returns `{ routines: [] }`, NOT an error.
14
+ *
15
+ * Why one JSON document per routine instead of a single `routines.json`
16
+ * board: routines are independent — there is no cross-routine invariant
17
+ * (unlike the `todo_write` single-in-progress rule). Per-file storage
18
+ * means a corrupt or partially-written routine cannot poison the
19
+ * others, and the atomic tmp+rename pattern is a one-file-at-a-time
20
+ * primitive that maps cleanly to per-file persistence.
21
+ *
22
+ * Why hand-rolled JSON-Schema instead of zod-to-json-schema: matches
23
+ * the project-wide convention (see brief.ts §note) — we have not
24
+ * greenlit the runtime dependency, and the schemas here are small
25
+ * enough to author by hand without drift risk.
26
+ *
27
+ * Cron expression validation: delegates to node-cron's `validate()` via
28
+ * `isValidCronExpression()` in core/cron/scheduler.ts. node-cron handles
29
+ * 5-field standard expressions plus the common shortcuts. We do NOT
30
+ * roll our own regex because cron has too many edge cases (step values,
31
+ * ranges with step, named months/days) and a partial regex silently
32
+ * accepts garbage the scheduler later rejects.
33
+ *
34
+ * On duplicate name during cron_create: the second call REPLACES the
35
+ * first, mirroring `CronScheduler.schedule()` which also replaces. The
36
+ * dispatcher returns `{ ok: true, replaced: true }` so the model and
37
+ * the operator can see the swap happened. Rationale: a routine name is
38
+ * an idempotency key; if the model re-registers the same logical
39
+ * routine with a tweaked expression we want the new shape to win
40
+ * rather than failing the call and leaving stale state.
41
+ *
42
+ * Brand voice: English only, no emoji, no banned words.
43
+ */
44
+ import { existsSync, mkdirSync, readdirSync, readFileSync, renameSync, unlinkSync, writeFileSync, } from 'node:fs';
45
+ import { join, resolve } from 'node:path';
46
+ import { isValidCronExpression } from '../core/cron/scheduler.js';
47
+ /** Maximum routine name length. Kept small so it renders cleanly in
48
+ * the operator-facing `pugi routines list` table. */
49
+ export const CRON_NAME_MAX = 64;
50
+ /** Maximum command length. The routine executes a shell command, so
51
+ * the cap mirrors the operator-facing brief detail cap — long enough
52
+ * for a realistic invocation, short enough to log without truncation. */
53
+ export const CRON_COMMAND_MAX = 2_000;
54
+ /** Maximum description length. Free-form prose, capped to fit one
55
+ * paragraph in the routines table. */
56
+ export const CRON_DESCRIPTION_MAX = 500;
57
+ /** Maximum number of positional args. A large arg list is a smell —
58
+ * the model should wrap into a single script invocation instead. */
59
+ export const CRON_ARGS_MAX = 32;
60
+ /** Maximum per-arg length. Same rationale as CRON_COMMAND_MAX. */
61
+ export const CRON_ARG_LEN_MAX = 500;
62
+ /** Sentinel returned when input fails schema validation. Mirrors
63
+ * `BRIEF_INVALID_ARGS` / `VERIFY_PLAN_INVALID_ARGS` so the dispatcher
64
+ * pattern-matches the prefix for retry-budget bookkeeping. */
65
+ export const CRON_INVALID_ARGS = 'CRON_INVALID_ARGS';
66
+ /** Sentinel returned when a registry write fails for an
67
+ * environment-level reason (filesystem full, permission denied). */
68
+ export const CRON_PERSIST_FAILED = 'CRON_PERSIST_FAILED';
69
+ /** Allowed routine name pattern. Slug-shaped so the name maps 1:1 to
70
+ * a safe filesystem basename — no separators, no shell metacharacters,
71
+ * no leading dot. */
72
+ const CRON_NAME_RE = /^[a-z][a-z0-9_-]{0,63}$/;
73
+ /* -------------------------------------------------------------------------- */
74
+ /* parse helpers */
75
+ /* -------------------------------------------------------------------------- */
76
+ export function parseCronCreateArgs(raw) {
77
+ if (typeof raw !== 'object' || raw === null || Array.isArray(raw)) {
78
+ return `${CRON_INVALID_ARGS}: arguments must be a JSON object`;
79
+ }
80
+ const obj = raw;
81
+ const issues = [];
82
+ const name = obj['name'];
83
+ if (typeof name !== 'string') {
84
+ issues.push('name: must be a string');
85
+ }
86
+ else if (name.length === 0) {
87
+ issues.push('name: must be non-empty');
88
+ }
89
+ else if (name.length > CRON_NAME_MAX) {
90
+ issues.push(`name: must be <= ${CRON_NAME_MAX} chars`);
91
+ }
92
+ else if (!CRON_NAME_RE.test(name)) {
93
+ issues.push('name: must match /^[a-z][a-z0-9_-]{0,63}$/ (lowercase, no separators, no leading digit)');
94
+ }
95
+ const cronExpression = obj['cronExpression'];
96
+ if (typeof cronExpression !== 'string') {
97
+ issues.push('cronExpression: must be a string');
98
+ }
99
+ else if (cronExpression.trim().length === 0) {
100
+ issues.push('cronExpression: must be non-empty');
101
+ }
102
+ else if (!isValidCronExpression(cronExpression)) {
103
+ issues.push('cronExpression: must be a valid 5-field cron expression (see https://crontab.guru)');
104
+ }
105
+ const command = obj['command'];
106
+ if (typeof command !== 'string') {
107
+ issues.push('command: must be a string');
108
+ }
109
+ else if (command.trim().length === 0) {
110
+ issues.push('command: must be non-empty');
111
+ }
112
+ else if (command.length > CRON_COMMAND_MAX) {
113
+ issues.push(`command: must be <= ${CRON_COMMAND_MAX} chars`);
114
+ }
115
+ let args;
116
+ if (obj['args'] !== undefined && obj['args'] !== null) {
117
+ if (!Array.isArray(obj['args'])) {
118
+ issues.push('args: must be an array of strings when present');
119
+ }
120
+ else if (obj['args'].length > CRON_ARGS_MAX) {
121
+ issues.push(`args: must have <= ${CRON_ARGS_MAX} entries`);
122
+ }
123
+ else {
124
+ args = [];
125
+ for (let i = 0; i < obj['args'].length; i++) {
126
+ const a = obj['args'][i];
127
+ if (typeof a !== 'string') {
128
+ issues.push(`args[${i}]: must be a string`);
129
+ }
130
+ else if (a.length > CRON_ARG_LEN_MAX) {
131
+ issues.push(`args[${i}]: must be <= ${CRON_ARG_LEN_MAX} chars`);
132
+ }
133
+ else {
134
+ args.push(a);
135
+ }
136
+ }
137
+ }
138
+ }
139
+ let description;
140
+ if (obj['description'] !== undefined && obj['description'] !== null) {
141
+ if (typeof obj['description'] !== 'string') {
142
+ issues.push('description: must be a string when present');
143
+ }
144
+ else if (obj['description'].length > CRON_DESCRIPTION_MAX) {
145
+ issues.push(`description: must be <= ${CRON_DESCRIPTION_MAX} chars`);
146
+ }
147
+ else {
148
+ description = obj['description'];
149
+ }
150
+ }
151
+ if (issues.length > 0) {
152
+ return `${CRON_INVALID_ARGS}: ${issues.join('; ')}`;
153
+ }
154
+ const result = {
155
+ name: name,
156
+ cronExpression: cronExpression,
157
+ command: command,
158
+ ...(args !== undefined ? { args } : {}),
159
+ ...(description !== undefined ? { description } : {}),
160
+ };
161
+ return result;
162
+ }
163
+ export function parseCronDeleteArgs(raw) {
164
+ if (typeof raw !== 'object' || raw === null || Array.isArray(raw)) {
165
+ return `${CRON_INVALID_ARGS}: arguments must be a JSON object`;
166
+ }
167
+ const obj = raw;
168
+ const name = obj['name'];
169
+ if (typeof name !== 'string') {
170
+ return `${CRON_INVALID_ARGS}: name: must be a string`;
171
+ }
172
+ if (name.length === 0) {
173
+ return `${CRON_INVALID_ARGS}: name: must be non-empty`;
174
+ }
175
+ if (name.length > CRON_NAME_MAX) {
176
+ return `${CRON_INVALID_ARGS}: name: must be <= ${CRON_NAME_MAX} chars`;
177
+ }
178
+ if (!CRON_NAME_RE.test(name)) {
179
+ return `${CRON_INVALID_ARGS}: name: must match /^[a-z][a-z0-9_-]{0,63}$/`;
180
+ }
181
+ return { name };
182
+ }
183
+ /* -------------------------------------------------------------------------- */
184
+ /* path resolution */
185
+ /* -------------------------------------------------------------------------- */
186
+ /**
187
+ * Compute the on-disk path for a routine's JSON document. Public so
188
+ * future surfaces (`pugi routines show <name>`) can share the layout
189
+ * rules without duplicating string composition.
190
+ */
191
+ export function cronRoutinePath(ctx, name) {
192
+ // Defense in depth: the name is already validated by the parse layer,
193
+ // but a direct programmatic caller (tests, future internal hooks)
194
+ // might skip parsing. Re-check the slug shape here so we never compose
195
+ // a path that escapes the cron directory.
196
+ if (!CRON_NAME_RE.test(name)) {
197
+ throw new Error(`cron: invalid routine name shape: "${name}"`);
198
+ }
199
+ return join(resolve(ctx.workspaceRoot), '.pugi', 'cron', `${name}.json`);
200
+ }
201
+ function cronDir(ctx) {
202
+ return join(resolve(ctx.workspaceRoot), '.pugi', 'cron');
203
+ }
204
+ /* -------------------------------------------------------------------------- */
205
+ /* persistence */
206
+ /* -------------------------------------------------------------------------- */
207
+ let cronSequence = 0;
208
+ /**
209
+ * Atomic write: serialise -> sibling tmp file -> rename. POSIX-portable
210
+ * and atomic on the same filesystem so a concurrent `cron_list` reader
211
+ * never observes a half-written routine document.
212
+ */
213
+ function persistRoutine(ctx, routine) {
214
+ const dir = cronDir(ctx);
215
+ if (!existsSync(dir)) {
216
+ mkdirSync(dir, { recursive: true });
217
+ }
218
+ const finalPath = cronRoutinePath(ctx, routine.name);
219
+ const body = `${JSON.stringify(routine, null, 2)}\n`;
220
+ const tmpPath = `${finalPath}.tmp-${process.pid}-${cronSequence++}`;
221
+ writeFileSync(tmpPath, body, { encoding: 'utf8', mode: 0o600 });
222
+ renameSync(tmpPath, finalPath);
223
+ }
224
+ function loadRoutine(ctx, name) {
225
+ const path = cronRoutinePath(ctx, name);
226
+ if (!existsSync(path))
227
+ return null;
228
+ try {
229
+ const raw = readFileSync(path, 'utf8');
230
+ const parsed = JSON.parse(raw);
231
+ if (!isValidLoadedRoutine(parsed))
232
+ return null;
233
+ return parsed;
234
+ }
235
+ catch {
236
+ // A corrupt or partially-written file is treated as "no routine
237
+ // here" — the next cron_create call replaces it cleanly. We do not
238
+ // surface the parse error because the model cannot act on it.
239
+ return null;
240
+ }
241
+ }
242
+ function isValidLoadedRoutine(value) {
243
+ return (typeof value.name === 'string' &&
244
+ typeof value.cronExpression === 'string' &&
245
+ typeof value.command === 'string' &&
246
+ Array.isArray(value.args) &&
247
+ typeof value.createdAt === 'string' &&
248
+ typeof value.updatedAt === 'string');
249
+ }
250
+ /* -------------------------------------------------------------------------- */
251
+ /* dispatchers */
252
+ /* -------------------------------------------------------------------------- */
253
+ function nowIso(ctx) {
254
+ return (ctx.now ? ctx.now() : new Date()).toISOString();
255
+ }
256
+ /**
257
+ * Dispatch entry for `cron_create`. Returns a JSON-string envelope so
258
+ * the engine adapter can surface structured data to the persona model
259
+ * without bespoke parsing. Mirrors the brief/todo_write dispatcher
260
+ * shape (string return for sentinel routing, JSON-string for success).
261
+ */
262
+ export function dispatchCronCreate(ctx, raw) {
263
+ const parsed = parseCronCreateArgs(raw);
264
+ if (typeof parsed === 'string') {
265
+ return parsed;
266
+ }
267
+ const at = nowIso(ctx);
268
+ const existing = loadRoutine(ctx, parsed.name);
269
+ const routine = {
270
+ name: parsed.name,
271
+ cronExpression: parsed.cronExpression,
272
+ command: parsed.command,
273
+ args: parsed.args ?? [],
274
+ ...(parsed.description !== undefined ? { description: parsed.description } : {}),
275
+ createdAt: existing ? existing.createdAt : at,
276
+ updatedAt: at,
277
+ };
278
+ try {
279
+ persistRoutine(ctx, routine);
280
+ }
281
+ catch (error) {
282
+ return `${CRON_PERSIST_FAILED}: ${error.message}`;
283
+ }
284
+ const result = {
285
+ ok: true,
286
+ routine,
287
+ replaced: existing !== null,
288
+ };
289
+ return JSON.stringify(result);
290
+ }
291
+ /**
292
+ * Dispatch entry for `cron_delete`. Idempotent: a delete of an unknown
293
+ * routine returns `{ ok: true, removed: false }` rather than a 404-
294
+ * shaped sentinel. Rationale: the persona's mental model of "the
295
+ * routine is gone" is satisfied either way, and treating delete as
296
+ * idempotent avoids the model spinning on a stale routine that was
297
+ * already cleaned up by a parallel operator action.
298
+ */
299
+ export function dispatchCronDelete(ctx, raw) {
300
+ const parsed = parseCronDeleteArgs(raw);
301
+ if (typeof parsed === 'string') {
302
+ return parsed;
303
+ }
304
+ const path = cronRoutinePath(ctx, parsed.name);
305
+ let removed = false;
306
+ if (existsSync(path)) {
307
+ try {
308
+ unlinkSync(path);
309
+ removed = true;
310
+ }
311
+ catch (error) {
312
+ return `${CRON_PERSIST_FAILED}: ${error.message}`;
313
+ }
314
+ }
315
+ const result = {
316
+ ok: true,
317
+ removed,
318
+ name: parsed.name,
319
+ };
320
+ return JSON.stringify(result);
321
+ }
322
+ /**
323
+ * Dispatch entry for `cron_list`. Returns every registered routine,
324
+ * sorted by name. Zero routines returns an empty array (`{ routines:
325
+ * [] }`), never an error — an empty registry is the steady state on a
326
+ * fresh workspace and the model should not have to special-case it.
327
+ *
328
+ * `cron_list` accepts no arguments. We still parse the input so that a
329
+ * model that sends a stray object (because its tool grammar emits
330
+ * `{}` by default) does not crash; only an explicit non-object value
331
+ * is rejected with `CRON_INVALID_ARGS`.
332
+ */
333
+ export function dispatchCronList(ctx, raw) {
334
+ if (raw !== undefined && raw !== null) {
335
+ if (typeof raw !== 'object' || Array.isArray(raw)) {
336
+ return `${CRON_INVALID_ARGS}: arguments must be a JSON object or omitted`;
337
+ }
338
+ }
339
+ const dir = cronDir(ctx);
340
+ const routines = [];
341
+ if (existsSync(dir)) {
342
+ const entries = readdirSync(dir).filter((e) => e.endsWith('.json'));
343
+ for (const entry of entries) {
344
+ const name = entry.slice(0, -'.json'.length);
345
+ // The persistence layer only writes files with slug-safe names,
346
+ // but a manual edit (operator hand-rolled a file) might violate
347
+ // the shape. Skip such entries instead of crashing the list call.
348
+ if (!CRON_NAME_RE.test(name))
349
+ continue;
350
+ const routine = loadRoutine(ctx, name);
351
+ if (routine)
352
+ routines.push(routine);
353
+ }
354
+ routines.sort((a, b) => a.name.localeCompare(b.name));
355
+ }
356
+ const result = { routines };
357
+ return JSON.stringify(result);
358
+ }
359
+ /* -------------------------------------------------------------------------- */
360
+ /* JSON-Schema fragments (engine-side tool definitions) */
361
+ /* -------------------------------------------------------------------------- */
362
+ /**
363
+ * JSON-Schema for cron_create. Mirrors `parseCronCreateArgs` checks
364
+ * 1:1. Hand-rolled per the project convention (see brief.ts §note on
365
+ * zod-to-json-schema).
366
+ */
367
+ export const cronCreateJsonSchema = {
368
+ type: 'object',
369
+ additionalProperties: false,
370
+ required: ['name', 'cronExpression', 'command'],
371
+ properties: {
372
+ name: {
373
+ type: 'string',
374
+ minLength: 1,
375
+ maxLength: CRON_NAME_MAX,
376
+ pattern: '^[a-z][a-z0-9_-]{0,63}$',
377
+ description: 'Routine name (slug-shaped, lowercase). Doubles as the on-disk basename and the idempotency key — re-registering with the same name REPLACES the prior routine.',
378
+ },
379
+ cronExpression: {
380
+ type: 'string',
381
+ minLength: 1,
382
+ description: 'Standard 5-field cron expression (minute hour day-of-month month day-of-week). Example: "0 9 * * 1-5" runs at 09:00 on weekdays. Validated by node-cron.',
383
+ },
384
+ command: {
385
+ type: 'string',
386
+ minLength: 1,
387
+ maxLength: CRON_COMMAND_MAX,
388
+ description: 'Shell command to execute on each tick. Example: "pugi review --triple --remote". The command is stored verbatim; the runner spawns it without word-splitting.',
389
+ },
390
+ args: {
391
+ type: 'array',
392
+ maxItems: CRON_ARGS_MAX,
393
+ items: {
394
+ type: 'string',
395
+ maxLength: CRON_ARG_LEN_MAX,
396
+ },
397
+ description: 'Optional positional arguments passed to <command> as a separate argv array. Prefer this over embedding shell metacharacters in <command>.',
398
+ },
399
+ description: {
400
+ type: 'string',
401
+ maxLength: CRON_DESCRIPTION_MAX,
402
+ description: 'Optional one-paragraph description. Surfaces in `pugi routines list` so an operator can audit unfamiliar routines.',
403
+ },
404
+ },
405
+ };
406
+ /**
407
+ * JSON-Schema for cron_delete. Single-field shape — name only.
408
+ */
409
+ export const cronDeleteJsonSchema = {
410
+ type: 'object',
411
+ additionalProperties: false,
412
+ required: ['name'],
413
+ properties: {
414
+ name: {
415
+ type: 'string',
416
+ minLength: 1,
417
+ maxLength: CRON_NAME_MAX,
418
+ pattern: '^[a-z][a-z0-9_-]{0,63}$',
419
+ description: 'Routine name to delete. Idempotent: an unknown name returns ok:true with removed:false instead of erroring.',
420
+ },
421
+ },
422
+ };
423
+ /**
424
+ * JSON-Schema for cron_list. Zero-field shape — every list returns the
425
+ * full registry. We expose an empty `additionalProperties: false`
426
+ * object so the schema-aware engine knows the tool takes no input.
427
+ */
428
+ export const cronListJsonSchema = {
429
+ type: 'object',
430
+ additionalProperties: false,
431
+ properties: {},
432
+ };
433
+ //# sourceMappingURL=cron.js.map