@cjhyy/code-shell-core 0.5.0-rc.1 → 0.6.0-rc.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 (528) hide show
  1. package/README.md +13 -10
  2. package/dist/agent/agent-definition-registry.d.ts +21 -3
  3. package/dist/agent/agent-definition-registry.js +49 -18
  4. package/dist/agent/agent-definition.d.ts +32 -0
  5. package/dist/agent/agent-definition.js +49 -4
  6. package/dist/arena/arena.js +11 -12
  7. package/dist/arena/context/context-tools.js +47 -6
  8. package/dist/arena/context/within-root.d.ts +7 -0
  9. package/dist/arena/context/within-root.js +15 -0
  10. package/dist/arena/iterate/phases/argue.js +8 -2
  11. package/dist/arena/iterate/phases/revise.js +1 -1
  12. package/dist/arena/iterate/phases/tournament.js +3 -3
  13. package/dist/arena/ledger.js +9 -1
  14. package/dist/arena/phases/adjudication.js +1 -4
  15. package/dist/arena/phases/build-consensus.js +1 -4
  16. package/dist/arena/phases/cross-review.js +2 -8
  17. package/dist/arena/phases/debate-rounds.js +1 -4
  18. package/dist/arena/phases/participant-research.js +1 -4
  19. package/dist/arena/phases/planning-detail-expansion.js +8 -10
  20. package/dist/arena/planner.js +0 -1
  21. package/dist/arena/providers/docs.d.ts +1 -0
  22. package/dist/arena/providers/docs.js +5 -2
  23. package/dist/arena/providers/repo.d.ts +1 -0
  24. package/dist/arena/providers/repo.js +5 -2
  25. package/dist/arena/strategies/utils.d.ts +1 -4
  26. package/dist/arena/strategies/utils.js +7 -51
  27. package/dist/arena/transitions.d.ts +7 -2
  28. package/dist/arena/transitions.js +9 -4
  29. package/dist/arena/types.d.ts +8 -2
  30. package/dist/automation/cron-expr.d.ts +41 -0
  31. package/dist/automation/cron-expr.js +169 -0
  32. package/dist/automation/index.d.ts +41 -0
  33. package/dist/automation/index.js +39 -0
  34. package/dist/automation/runner.d.ts +84 -0
  35. package/dist/automation/runner.js +92 -0
  36. package/dist/automation/scheduler.d.ts +194 -0
  37. package/dist/automation/scheduler.js +623 -0
  38. package/dist/automation/store.d.ts +39 -0
  39. package/dist/automation/store.js +122 -0
  40. package/dist/automation/write-policy.d.ts +34 -0
  41. package/dist/automation/write-policy.js +113 -0
  42. package/dist/automation/write-run.d.ts +51 -0
  43. package/dist/automation/write-run.js +38 -0
  44. package/dist/capability-control/disabled-lists.d.ts +25 -0
  45. package/dist/capability-control/disabled-lists.js +57 -0
  46. package/dist/capability-control/index.d.ts +5 -0
  47. package/dist/capability-control/index.js +3 -0
  48. package/dist/capability-control/overlay.d.ts +64 -0
  49. package/dist/capability-control/overlay.js +116 -0
  50. package/dist/capability-control/project.d.ts +65 -0
  51. package/dist/capability-control/project.js +147 -0
  52. package/dist/capability-control/service.d.ts +70 -0
  53. package/dist/capability-control/service.js +147 -0
  54. package/dist/capability-control/types.d.ts +62 -0
  55. package/dist/capability-control/types.js +17 -0
  56. package/dist/cc-orchestrator/agent-adapter.d.ts +50 -0
  57. package/dist/cc-orchestrator/agent-adapter.js +133 -0
  58. package/dist/cc-orchestrator/cc-capability.d.ts +19 -0
  59. package/dist/cc-orchestrator/cc-capability.js +53 -0
  60. package/dist/cc-orchestrator/codex-session-discovery.d.ts +24 -0
  61. package/dist/cc-orchestrator/codex-session-discovery.js +191 -0
  62. package/dist/cc-orchestrator/codex-session-history.d.ts +25 -0
  63. package/dist/cc-orchestrator/codex-session-history.js +187 -0
  64. package/dist/cc-orchestrator/external-agent-changes.d.ts +19 -0
  65. package/dist/cc-orchestrator/external-agent-changes.js +214 -0
  66. package/dist/cc-orchestrator/external-agent-driver.d.ts +18 -0
  67. package/dist/cc-orchestrator/external-agent-driver.js +69 -0
  68. package/dist/cc-orchestrator/index.d.ts +8 -0
  69. package/dist/cc-orchestrator/index.js +8 -0
  70. package/dist/cc-orchestrator/relevance-judge.d.ts +15 -0
  71. package/dist/cc-orchestrator/relevance-judge.js +29 -0
  72. package/dist/cc-orchestrator/session-discovery.d.ts +46 -0
  73. package/dist/cc-orchestrator/session-discovery.js +125 -0
  74. package/dist/cc-orchestrator/session-history.d.ts +19 -0
  75. package/dist/cc-orchestrator/session-history.js +67 -0
  76. package/dist/cli/agent-server-stdio.d.ts +26 -1
  77. package/dist/cli/agent-server-stdio.js +221 -28
  78. package/dist/cli/agent-server-tcp.d.ts +20 -0
  79. package/dist/cli/agent-server-tcp.js +134 -0
  80. package/dist/cli/graceful-shutdown.d.ts +27 -0
  81. package/dist/cli/graceful-shutdown.js +30 -0
  82. package/dist/context/compaction.d.ts +56 -0
  83. package/dist/context/compaction.js +209 -15
  84. package/dist/context/manager.d.ts +0 -20
  85. package/dist/context/manager.js +25 -41
  86. package/dist/cost-tracker.js +5 -61
  87. package/dist/credentials/cipher.d.ts +49 -0
  88. package/dist/credentials/cipher.js +45 -0
  89. package/dist/credentials/cookie-jar.d.ts +24 -0
  90. package/dist/credentials/cookie-jar.js +40 -0
  91. package/dist/credentials/index.d.ts +7 -0
  92. package/dist/credentials/index.js +5 -0
  93. package/dist/credentials/inject-credential-tool.d.ts +20 -0
  94. package/dist/credentials/inject-credential-tool.js +130 -0
  95. package/dist/credentials/store.d.ts +72 -0
  96. package/dist/credentials/store.js +184 -0
  97. package/dist/credentials/types.d.ts +56 -0
  98. package/dist/credentials/use-credential-tool.d.ts +29 -0
  99. package/dist/credentials/use-credential-tool.js +205 -0
  100. package/dist/credentials/use-gate.d.ts +56 -0
  101. package/dist/credentials/use-gate.js +52 -0
  102. package/dist/cron/cron-runtime.d.ts +2 -0
  103. package/dist/cron/cron-runtime.js +2 -0
  104. package/dist/cron/cron-store.d.ts +2 -0
  105. package/dist/cron/cron-store.js +2 -0
  106. package/dist/cron/scheduler.d.ts +5 -32
  107. package/dist/cron/scheduler.js +5 -113
  108. package/dist/data/model-metadata.d.ts +77 -0
  109. package/dist/data/model-metadata.js +56 -0
  110. package/dist/data/model-metadata.json +216 -0
  111. package/dist/data/openrouter-models.d.ts +18 -7
  112. package/dist/data/openrouter-models.js +35 -8
  113. package/dist/data/openrouter-sync.js +1 -1
  114. package/dist/engine/aux-key.d.ts +10 -0
  115. package/dist/engine/aux-key.js +11 -0
  116. package/dist/engine/dynamic-tool-defs.d.ts +19 -0
  117. package/dist/engine/dynamic-tool-defs.js +36 -0
  118. package/dist/engine/engine.d.ts +431 -108
  119. package/dist/engine/engine.js +1630 -279
  120. package/dist/engine/friendly-error.d.ts +18 -0
  121. package/dist/engine/friendly-error.js +63 -0
  122. package/dist/engine/goal.d.ts +187 -0
  123. package/dist/engine/goal.js +196 -0
  124. package/dist/engine/image-compression.d.ts +81 -0
  125. package/dist/engine/image-compression.js +186 -0
  126. package/dist/engine/image-policy.d.ts +165 -0
  127. package/dist/engine/image-policy.js +189 -0
  128. package/dist/engine/model-connections-pool.d.ts +17 -0
  129. package/dist/engine/model-connections-pool.js +66 -0
  130. package/dist/engine/model-facade.d.ts +10 -0
  131. package/dist/engine/model-facade.js +25 -0
  132. package/dist/engine/patch-orphaned-tools.js +3 -0
  133. package/dist/engine/reactive-threshold.d.ts +13 -0
  134. package/dist/engine/reactive-threshold.js +17 -0
  135. package/dist/engine/resolve-llm-config.d.ts +16 -0
  136. package/dist/engine/resolve-llm-config.js +44 -0
  137. package/dist/engine/runtime.js +9 -1
  138. package/dist/engine/sandbox-cache-key.d.ts +10 -0
  139. package/dist/engine/sandbox-cache-key.js +9 -0
  140. package/dist/engine/sandbox-config.d.ts +31 -0
  141. package/dist/engine/sandbox-config.js +38 -0
  142. package/dist/engine/session-title.d.ts +13 -0
  143. package/dist/engine/session-title.js +34 -0
  144. package/dist/engine/session-usage.d.ts +19 -0
  145. package/dist/engine/session-usage.js +25 -0
  146. package/dist/engine/steer-queue.d.ts +32 -0
  147. package/dist/engine/steer-queue.js +26 -0
  148. package/dist/engine/streaming-tool-queue.d.ts +12 -0
  149. package/dist/engine/streaming-tool-queue.js +50 -10
  150. package/dist/engine/turn-loop.d.ts +94 -9
  151. package/dist/engine/turn-loop.js +775 -342
  152. package/dist/engine/types.d.ts +175 -0
  153. package/dist/engine/types.js +13 -0
  154. package/dist/external-agents/config.d.ts +2 -0
  155. package/dist/external-agents/config.js +15 -0
  156. package/dist/external-agents/types.d.ts +31 -0
  157. package/dist/external-agents/types.js +1 -0
  158. package/dist/git/parse-log.d.ts +13 -0
  159. package/dist/git/parse-log.js +21 -0
  160. package/dist/git/utils.d.ts +8 -6
  161. package/dist/git/utils.js +62 -26
  162. package/dist/git/worktree.d.ts +48 -0
  163. package/dist/git/worktree.js +111 -20
  164. package/dist/hooks/events.d.ts +23 -1
  165. package/dist/hooks/goal-stop-hook.d.ts +58 -0
  166. package/dist/hooks/goal-stop-hook.js +279 -0
  167. package/dist/hooks/hook-output.d.ts +33 -0
  168. package/dist/hooks/hook-output.js +79 -0
  169. package/dist/hooks/registry.d.ts +15 -0
  170. package/dist/hooks/registry.js +57 -1
  171. package/dist/hooks/shell-runner.d.ts +2 -0
  172. package/dist/hooks/shell-runner.js +48 -18
  173. package/dist/index.d.ts +79 -11
  174. package/dist/index.js +89 -6
  175. package/dist/llm/capabilities/param-specs.d.ts +14 -0
  176. package/dist/llm/capabilities/param-specs.js +62 -0
  177. package/dist/llm/capabilities/reasoning-control.d.ts +24 -0
  178. package/dist/llm/capabilities/reasoning-control.js +38 -0
  179. package/dist/llm/capabilities/rules.js +37 -3
  180. package/dist/llm/capabilities/types.d.ts +32 -2
  181. package/dist/llm/clamp-max-tokens.d.ts +11 -0
  182. package/dist/llm/clamp-max-tokens.js +17 -0
  183. package/dist/llm/client-base.d.ts +69 -5
  184. package/dist/llm/client-base.js +185 -25
  185. package/dist/llm/client-factory.d.ts +3 -3
  186. package/dist/llm/client-factory.js +2 -2
  187. package/dist/llm/model-cache.js +4 -2
  188. package/dist/llm/model-pool.d.ts +29 -11
  189. package/dist/llm/model-pool.js +36 -20
  190. package/dist/llm/provider-auth.d.ts +41 -0
  191. package/dist/llm/provider-auth.js +76 -0
  192. package/dist/llm/provider-catalog.d.ts +6 -2
  193. package/dist/llm/providers/anthropic.d.ts +32 -2
  194. package/dist/llm/providers/anthropic.js +207 -18
  195. package/dist/llm/providers/openai.d.ts +47 -2
  196. package/dist/llm/providers/openai.js +478 -71
  197. package/dist/llm/reasoning-setting.d.ts +51 -0
  198. package/dist/llm/reasoning-setting.js +40 -0
  199. package/dist/llm/stop-reason.d.ts +13 -0
  200. package/dist/llm/stop-reason.js +21 -0
  201. package/dist/llm/stream-watchdog.js +5 -1
  202. package/dist/llm/strip-vision.d.ts +32 -0
  203. package/dist/llm/strip-vision.js +94 -0
  204. package/dist/llm/token-counter.js +9 -2
  205. package/dist/llm/types.d.ts +9 -6
  206. package/dist/logging/logger.js +18 -4
  207. package/dist/logging/sanitize-messages.d.ts +10 -0
  208. package/dist/logging/sanitize-messages.js +112 -0
  209. package/dist/lsp/client.js +28 -8
  210. package/dist/lsp/manager.d.ts +1 -1
  211. package/dist/lsp/manager.js +42 -11
  212. package/dist/lsp/root-path.d.ts +9 -0
  213. package/dist/lsp/root-path.js +12 -0
  214. package/dist/model-catalog/builtin.d.ts +12 -0
  215. package/dist/model-catalog/builtin.js +407 -0
  216. package/dist/model-catalog/gen-connections.d.ts +20 -0
  217. package/dist/model-catalog/gen-connections.js +28 -0
  218. package/dist/model-catalog/index.d.ts +41 -0
  219. package/dist/model-catalog/index.js +90 -0
  220. package/dist/model-catalog/params.d.ts +20 -0
  221. package/dist/model-catalog/params.js +45 -0
  222. package/dist/model-catalog/resolve.d.ts +48 -0
  223. package/dist/model-catalog/resolve.js +33 -0
  224. package/dist/model-catalog/save-entry.d.ts +32 -0
  225. package/dist/model-catalog/save-entry.js +104 -0
  226. package/dist/model-catalog/types.d.ts +561 -0
  227. package/dist/model-catalog/types.js +93 -0
  228. package/dist/model-catalog/upsert.d.ts +9 -0
  229. package/dist/model-catalog/upsert.js +8 -0
  230. package/dist/onboarding.d.ts +12 -82
  231. package/dist/onboarding.js +75 -333
  232. package/dist/plugins/gitOps.d.ts +53 -0
  233. package/dist/plugins/gitOps.js +130 -5
  234. package/dist/plugins/installer/checkUpdate.d.ts +16 -0
  235. package/dist/plugins/installer/checkUpdate.js +32 -0
  236. package/dist/plugins/installer/codex/convertAgents.d.ts +7 -0
  237. package/dist/plugins/installer/codex/convertAgents.js +55 -0
  238. package/dist/plugins/installer/codex/convertCommands.d.ts +19 -0
  239. package/dist/plugins/installer/codex/convertCommands.js +46 -0
  240. package/dist/plugins/installer/codex/convertMcp.d.ts +11 -0
  241. package/dist/plugins/installer/codex/convertMcp.js +85 -0
  242. package/dist/plugins/installer/codex/convertSkills.d.ts +12 -0
  243. package/dist/plugins/installer/codex/convertSkills.js +33 -0
  244. package/dist/plugins/installer/detectFormat.d.ts +2 -0
  245. package/dist/plugins/installer/detectFormat.js +6 -0
  246. package/dist/plugins/installer/install.d.ts +7 -0
  247. package/dist/plugins/installer/install.js +123 -0
  248. package/dist/plugins/installer/installFromArchive.d.ts +43 -0
  249. package/dist/plugins/installer/installFromArchive.js +134 -0
  250. package/dist/plugins/installer/installFromSource.d.ts +13 -0
  251. package/dist/plugins/installer/installFromSource.js +51 -0
  252. package/dist/plugins/installer/list.d.ts +9 -0
  253. package/dist/plugins/installer/list.js +30 -0
  254. package/dist/plugins/installer/loadPluginAgents.d.ts +3 -0
  255. package/dist/plugins/installer/loadPluginAgents.js +27 -0
  256. package/dist/plugins/installer/loadPluginMcp.d.ts +14 -0
  257. package/dist/plugins/installer/loadPluginMcp.js +107 -0
  258. package/dist/plugins/installer/parseSource.d.ts +20 -0
  259. package/dist/plugins/installer/parseSource.js +74 -0
  260. package/dist/plugins/installer/paths.d.ts +5 -0
  261. package/dist/plugins/installer/paths.js +25 -0
  262. package/dist/plugins/installer/pruneDisabled.d.ts +24 -0
  263. package/dist/plugins/installer/pruneDisabled.js +73 -0
  264. package/dist/plugins/installer/types.d.ts +52 -0
  265. package/dist/plugins/installer/types.js +28 -0
  266. package/dist/plugins/installer/uninstall.d.ts +2 -0
  267. package/dist/plugins/installer/uninstall.js +18 -0
  268. package/dist/plugins/installer/unzip.d.ts +14 -0
  269. package/dist/plugins/installer/unzip.js +82 -0
  270. package/dist/plugins/installer/update.d.ts +28 -0
  271. package/dist/plugins/installer/update.js +97 -0
  272. package/dist/plugins/loadPluginHooks.d.ts +54 -1
  273. package/dist/plugins/loadPluginHooks.js +83 -1
  274. package/dist/plugins/marketplaceManager.d.ts +15 -1
  275. package/dist/plugins/marketplaceManager.js +58 -4
  276. package/dist/plugins/pluginCommandHook.js +34 -14
  277. package/dist/plugins/pluginContent.d.ts +30 -0
  278. package/dist/plugins/pluginContent.js +83 -0
  279. package/dist/plugins/pluginInstaller.d.ts +34 -0
  280. package/dist/plugins/pluginInstaller.js +168 -35
  281. package/dist/plugins/schemas.js +41 -6
  282. package/dist/plugins/types.d.ts +10 -0
  283. package/dist/preset/index.d.ts +7 -1
  284. package/dist/preset/index.js +112 -6
  285. package/dist/product/types.d.ts +1 -1
  286. package/dist/prompt/composer.d.ts +31 -0
  287. package/dist/prompt/composer.js +95 -25
  288. package/dist/prompt/instruction-scanner.js +5 -3
  289. package/dist/prompt/section-loader.js +1 -0
  290. package/dist/prompt/sections/base.md +1 -0
  291. package/dist/prompt/sections/browser.md +10 -0
  292. package/dist/prompt/sections/coding.md +4 -0
  293. package/dist/prompt/sections/orchestration.md +8 -0
  294. package/dist/protocol/chat-session-manager.d.ts +15 -2
  295. package/dist/protocol/chat-session-manager.js +46 -0
  296. package/dist/protocol/chat-session.d.ts +82 -0
  297. package/dist/protocol/chat-session.js +121 -1
  298. package/dist/protocol/client.d.ts +27 -0
  299. package/dist/protocol/client.js +38 -0
  300. package/dist/protocol/redact.d.ts +50 -0
  301. package/dist/protocol/redact.js +71 -0
  302. package/dist/protocol/server.d.ts +153 -2
  303. package/dist/protocol/server.js +807 -39
  304. package/dist/protocol/tcp-transport.d.ts +45 -0
  305. package/dist/protocol/tcp-transport.js +74 -0
  306. package/dist/protocol/transport.js +3 -2
  307. package/dist/protocol/types.d.ts +69 -0
  308. package/dist/protocol/types.js +22 -0
  309. package/dist/quota/credentials.d.ts +3 -0
  310. package/dist/quota/credentials.js +80 -0
  311. package/dist/quota/index.d.ts +36 -0
  312. package/dist/quota/index.js +155 -0
  313. package/dist/quota/types.d.ts +48 -0
  314. package/dist/quota/types.js +13 -0
  315. package/dist/remote/bridge.d.ts +11 -2
  316. package/dist/remote/bridge.js +61 -33
  317. package/dist/review/review-prompt.d.ts +28 -0
  318. package/dist/review/review-prompt.js +81 -0
  319. package/dist/run/ArtifactTracker.js +5 -4
  320. package/dist/run/EngineRunner.d.ts +27 -1
  321. package/dist/run/EngineRunner.js +46 -8
  322. package/dist/run/FileRunStore.js +40 -11
  323. package/dist/run/RunApprovalBackend.js +25 -5
  324. package/dist/run/RunLock.d.ts +28 -2
  325. package/dist/run/RunLock.js +49 -7
  326. package/dist/run/RunManager.d.ts +12 -0
  327. package/dist/run/RunManager.js +86 -3
  328. package/dist/run/RunQueue.d.ts +1 -0
  329. package/dist/run/RunQueue.js +8 -2
  330. package/dist/run/factory.d.ts +8 -1
  331. package/dist/run/factory.js +1 -0
  332. package/dist/run/index.d.ts +2 -2
  333. package/dist/run/index.js +1 -1
  334. package/dist/run/redirect-target.d.ts +7 -0
  335. package/dist/run/redirect-target.js +13 -0
  336. package/dist/run/types.js +1 -1
  337. package/dist/runtime/background-shell.d.ts +139 -0
  338. package/dist/runtime/background-shell.js +495 -0
  339. package/dist/runtime/output-clean.d.ts +24 -0
  340. package/dist/runtime/output-clean.js +41 -0
  341. package/dist/runtime/ring-file.d.ts +64 -0
  342. package/dist/runtime/ring-file.js +174 -0
  343. package/dist/runtime/safe-spawn.js +15 -34
  344. package/dist/runtime/spawn-common.d.ts +148 -0
  345. package/dist/runtime/spawn-common.js +303 -0
  346. package/dist/runtime/truncate-output.d.ts +22 -0
  347. package/dist/runtime/truncate-output.js +49 -0
  348. package/dist/runtime/utf8-cut.d.ts +11 -0
  349. package/dist/runtime/utf8-cut.js +23 -0
  350. package/dist/services/auto-dream.d.ts +4 -0
  351. package/dist/services/auto-dream.js +26 -26
  352. package/dist/services/browser-open.d.ts +13 -0
  353. package/dist/services/browser-open.js +16 -0
  354. package/dist/services/diagnostics.d.ts +1 -2
  355. package/dist/services/diagnostics.js +12 -7
  356. package/dist/services/dream-consolidation.d.ts +57 -0
  357. package/dist/services/dream-consolidation.js +151 -0
  358. package/dist/services/extract-memories.d.ts +14 -1
  359. package/dist/services/extract-memories.js +45 -6
  360. package/dist/services/memory-orchestrator.d.ts +21 -0
  361. package/dist/services/memory-orchestrator.js +125 -32
  362. package/dist/services/notifier.d.ts +8 -0
  363. package/dist/services/notifier.js +39 -25
  364. package/dist/services/oauth.js +5 -7
  365. package/dist/services/session-memory-sort.d.ts +8 -0
  366. package/dist/services/session-memory-sort.js +9 -0
  367. package/dist/services/session-memory.js +30 -19
  368. package/dist/session/file-history.d.ts +124 -1
  369. package/dist/session/file-history.js +232 -9
  370. package/dist/session/memory.d.ts +116 -2
  371. package/dist/session/memory.js +250 -28
  372. package/dist/session/session-manager.d.ts +63 -1
  373. package/dist/session/session-manager.js +186 -5
  374. package/dist/session/simple-diff.d.ts +23 -0
  375. package/dist/session/simple-diff.js +84 -0
  376. package/dist/session/transcript.d.ts +25 -1
  377. package/dist/session/transcript.js +35 -2
  378. package/dist/session/undo-target.d.ts +67 -0
  379. package/dist/session/undo-target.js +144 -0
  380. package/dist/settings/disk-defaults.d.ts +42 -0
  381. package/dist/settings/disk-defaults.js +33 -0
  382. package/dist/settings/feature-flags.d.ts +64 -0
  383. package/dist/settings/feature-flags.js +61 -0
  384. package/dist/settings/manager.d.ts +101 -1
  385. package/dist/settings/manager.js +345 -15
  386. package/dist/settings/migrate-config.d.ts +45 -0
  387. package/dist/settings/migrate-config.js +125 -0
  388. package/dist/settings/personalization.d.ts +19 -0
  389. package/dist/settings/personalization.js +7 -0
  390. package/dist/settings/schema-export.d.ts +25 -0
  391. package/dist/settings/schema-export.js +38 -0
  392. package/dist/settings/schema.d.ts +1827 -396
  393. package/dist/settings/schema.js +361 -81
  394. package/dist/skills/scanner.d.ts +9 -0
  395. package/dist/skills/scanner.js +30 -2
  396. package/dist/stt/resolve-transcribe.d.ts +31 -0
  397. package/dist/stt/resolve-transcribe.js +108 -0
  398. package/dist/stt/transcribe.d.ts +51 -0
  399. package/dist/stt/transcribe.js +65 -0
  400. package/dist/tool-system/browser-bridge.d.ts +226 -0
  401. package/dist/tool-system/browser-bridge.js +163 -0
  402. package/dist/tool-system/builtin/add-marketplace.d.ts +12 -0
  403. package/dist/tool-system/builtin/add-marketplace.js +76 -0
  404. package/dist/tool-system/builtin/agent-heartbeat.d.ts +49 -0
  405. package/dist/tool-system/builtin/agent-heartbeat.js +89 -0
  406. package/dist/tool-system/builtin/agent-notifications.d.ts +12 -3
  407. package/dist/tool-system/builtin/agent-notifications.js +9 -3
  408. package/dist/tool-system/builtin/agent-output-file.d.ts +38 -0
  409. package/dist/tool-system/builtin/agent-output-file.js +72 -0
  410. package/dist/tool-system/builtin/agent-registry.d.ts +23 -0
  411. package/dist/tool-system/builtin/agent-registry.js +16 -4
  412. package/dist/tool-system/builtin/agent.d.ts +50 -11
  413. package/dist/tool-system/builtin/agent.js +576 -73
  414. package/dist/tool-system/builtin/apply-patch/applier.js +66 -8
  415. package/dist/tool-system/builtin/apply-patch/backup-targets.d.ts +10 -0
  416. package/dist/tool-system/builtin/apply-patch/backup-targets.js +30 -0
  417. package/dist/tool-system/builtin/apply-patch/index.js +7 -3
  418. package/dist/tool-system/builtin/arena.js +6 -7
  419. package/dist/tool-system/builtin/background-jobs.d.ts +76 -0
  420. package/dist/tool-system/builtin/background-jobs.js +124 -0
  421. package/dist/tool-system/builtin/background-shell-tools.d.ts +20 -0
  422. package/dist/tool-system/builtin/background-shell-tools.js +108 -0
  423. package/dist/tool-system/builtin/background-work.d.ts +67 -0
  424. package/dist/tool-system/builtin/background-work.js +86 -0
  425. package/dist/tool-system/builtin/bash-output-style.d.ts +32 -0
  426. package/dist/tool-system/builtin/bash-output-style.js +40 -0
  427. package/dist/tool-system/builtin/bash.d.ts +5 -2
  428. package/dist/tool-system/builtin/bash.js +98 -62
  429. package/dist/tool-system/builtin/browser-tools.d.ts +33 -0
  430. package/dist/tool-system/builtin/browser-tools.js +312 -0
  431. package/dist/tool-system/builtin/cancel-goal.d.ts +31 -0
  432. package/dist/tool-system/builtin/cancel-goal.js +64 -0
  433. package/dist/tool-system/builtin/check-quota.d.ts +15 -0
  434. package/dist/tool-system/builtin/check-quota.js +34 -0
  435. package/dist/tool-system/builtin/complete-goal.d.ts +25 -0
  436. package/dist/tool-system/builtin/complete-goal.js +45 -0
  437. package/dist/tool-system/builtin/config.js +7 -0
  438. package/dist/tool-system/builtin/cron.d.ts +7 -0
  439. package/dist/tool-system/builtin/cron.js +105 -9
  440. package/dist/tool-system/builtin/drive-claude-code.d.ts +30 -0
  441. package/dist/tool-system/builtin/drive-claude-code.js +157 -0
  442. package/dist/tool-system/builtin/edit-model-catalog.d.ts +3 -0
  443. package/dist/tool-system/builtin/edit-model-catalog.js +94 -0
  444. package/dist/tool-system/builtin/edit.d.ts +2 -1
  445. package/dist/tool-system/builtin/edit.js +21 -12
  446. package/dist/tool-system/builtin/eol.d.ts +29 -0
  447. package/dist/tool-system/builtin/eol.js +37 -0
  448. package/dist/tool-system/builtin/file-cache.d.ts +6 -0
  449. package/dist/tool-system/builtin/file-cache.js +8 -0
  450. package/dist/tool-system/builtin/generate-image.d.ts +60 -0
  451. package/dist/tool-system/builtin/generate-image.js +374 -0
  452. package/dist/tool-system/builtin/generate-video.d.ts +55 -0
  453. package/dist/tool-system/builtin/generate-video.js +361 -0
  454. package/dist/tool-system/builtin/grep.js +6 -2
  455. package/dist/tool-system/builtin/image-providers.d.ts +86 -0
  456. package/dist/tool-system/builtin/image-providers.js +190 -0
  457. package/dist/tool-system/builtin/image-uploader.d.ts +33 -0
  458. package/dist/tool-system/builtin/image-uploader.js +74 -0
  459. package/dist/tool-system/builtin/index.d.ts +24 -1
  460. package/dist/tool-system/builtin/index.js +310 -25
  461. package/dist/tool-system/builtin/mcp-tools.js +23 -3
  462. package/dist/tool-system/builtin/memory.js +45 -7
  463. package/dist/tool-system/builtin/notebook-edit.d.ts +2 -1
  464. package/dist/tool-system/builtin/notebook-edit.js +1 -1
  465. package/dist/tool-system/builtin/powershell.js +4 -1
  466. package/dist/tool-system/builtin/read.d.ts +2 -1
  467. package/dist/tool-system/builtin/read.js +11 -3
  468. package/dist/tool-system/builtin/repl.js +4 -1
  469. package/dist/tool-system/builtin/skill.js +9 -0
  470. package/dist/tool-system/builtin/sleep.js +12 -5
  471. package/dist/tool-system/builtin/task.js +4 -1
  472. package/dist/tool-system/builtin/tool-search.js +25 -7
  473. package/dist/tool-system/builtin/update-automation-memory.d.ts +24 -0
  474. package/dist/tool-system/builtin/update-automation-memory.js +60 -0
  475. package/dist/tool-system/builtin/video-providers.d.ts +154 -0
  476. package/dist/tool-system/builtin/video-providers.js +235 -0
  477. package/dist/tool-system/builtin/view-image.d.ts +18 -0
  478. package/dist/tool-system/builtin/view-image.js +96 -0
  479. package/dist/tool-system/builtin/web-fetch.js +12 -2
  480. package/dist/tool-system/builtin/web-search.d.ts +4 -1
  481. package/dist/tool-system/builtin/web-search.js +57 -10
  482. package/dist/tool-system/builtin/worktree.d.ts +2 -1
  483. package/dist/tool-system/builtin/worktree.js +31 -4
  484. package/dist/tool-system/builtin/write.d.ts +2 -1
  485. package/dist/tool-system/builtin/write.js +1 -1
  486. package/dist/tool-system/context.d.ts +166 -6
  487. package/dist/tool-system/executor.d.ts +3 -2
  488. package/dist/tool-system/executor.js +197 -119
  489. package/dist/tool-system/investigation-guard.d.ts +4 -1
  490. package/dist/tool-system/investigation-guard.js +20 -4
  491. package/dist/tool-system/mcp-manager.d.ts +78 -16
  492. package/dist/tool-system/mcp-manager.js +357 -28
  493. package/dist/tool-system/path-policy.d.ts +99 -0
  494. package/dist/tool-system/path-policy.js +578 -0
  495. package/dist/tool-system/permission.d.ts +36 -1
  496. package/dist/tool-system/permission.js +322 -117
  497. package/dist/tool-system/plan-mode-allowlist.d.ts +32 -0
  498. package/dist/tool-system/plan-mode-allowlist.js +65 -0
  499. package/dist/tool-system/registry.d.ts +1 -0
  500. package/dist/tool-system/registry.js +26 -1
  501. package/dist/tool-system/sandbox/index.d.ts +8 -0
  502. package/dist/tool-system/sandbox/index.js +7 -2
  503. package/dist/tool-system/validate-tool-metadata.d.ts +36 -0
  504. package/dist/tool-system/validate-tool-metadata.js +63 -0
  505. package/dist/tool-system/validation.d.ts +10 -0
  506. package/dist/tool-system/validation.js +16 -3
  507. package/dist/types.d.ts +301 -15
  508. package/dist/updater.js +20 -9
  509. package/dist/utils/envUtils.d.ts +0 -9
  510. package/dist/utils/envUtils.js +3 -28
  511. package/dist/utils/exec.d.ts +40 -0
  512. package/dist/utils/exec.js +144 -0
  513. package/dist/utils/format.js +4 -2
  514. package/dist/utils/json.d.ts +12 -0
  515. package/dist/utils/json.js +92 -0
  516. package/dist/utils/lockfile.js +9 -2
  517. package/dist/utils/theme.d.ts +7 -1
  518. package/dist/utils/theme.js +5 -3
  519. package/dist/utils/toolDisplay.js +0 -1
  520. package/package.json +14 -7
  521. package/dist/agent/coordinator.d.ts +0 -49
  522. package/dist/agent/coordinator.js +0 -77
  523. package/dist/settings/manager.test.js +0 -73
  524. package/dist/tool-system/builtin/remote-trigger.d.ts +0 -6
  525. package/dist/tool-system/builtin/remote-trigger.js +0 -54
  526. package/dist/tool-system/builtin/send-message.d.ts +0 -6
  527. package/dist/tool-system/builtin/send-message.js +0 -47
  528. /package/dist/{settings/manager.test.d.ts → credentials/types.js} +0 -0
@@ -0,0 +1,133 @@
1
+ /**
2
+ * Soft cost-guard appended to a driven CC's system prompt. Workflow fans out a
3
+ * fleet of agents and is the main token sink; we ask CC to surface intent and
4
+ * get a go-ahead before running one, so a human can intervene (rooms) and the
5
+ * model stays cost-aware even where Workflow isn't hard-disabled. Shared so the
6
+ * room's resident process can reuse the exact same wording.
7
+ */
8
+ export const CC_COST_GUARD_PROMPT = "Cost guard: before invoking the Workflow tool (which fans out many agents and " +
9
+ "burns a lot of tokens), first state in one short message what workflow you intend " +
10
+ "to run and why, and ask for a go-ahead — do NOT launch a Workflow unprompted. A " +
11
+ "single Task sub-agent is fine without asking.";
12
+ export const claudeAdapter = {
13
+ kind: "claude",
14
+ buildArgs(opts) {
15
+ // -p (print/headless) + stream-json REQUIRES --verbose (verified).
16
+ const args = ["-p", opts.prompt, "--output-format", "stream-json", "--verbose"];
17
+ if (opts.resumeSessionId)
18
+ args.push("--resume", opts.resumeSessionId);
19
+ // Hard-disallow Workflow: driving CC unattended (esp. bypassPermissions),
20
+ // CC's Workflow tool fans out a FLEET of agents — the real token-burn culprit
21
+ // (user: "自动了 2 个 workflow token 就烧没了"). A single Task (one sub-agent)
22
+ // is cheap, so it stays ALLOWED. (We earlier disallowed Task by mistake;
23
+ // Workflow is the one that fans out.) Disabling outright is cleaner than an
24
+ // approval round-trip this path doesn't have.
25
+ args.push("--disallowedTools", "Workflow");
26
+ // Soft constraint (belt-and-suspenders + carries to rooms where Workflow is
27
+ // allowed): ask CC to check in before expensive multi-agent work.
28
+ args.push("--append-system-prompt", CC_COST_GUARD_PROMPT);
29
+ args.push("--permission-mode", opts.permissionMode);
30
+ return args;
31
+ },
32
+ parseResult(lines) {
33
+ let sessionId = "";
34
+ let finalText = "";
35
+ let isError = false;
36
+ for (const line of lines) {
37
+ const t = line.trim();
38
+ if (!t)
39
+ continue;
40
+ let d;
41
+ try {
42
+ d = JSON.parse(t);
43
+ }
44
+ catch {
45
+ continue;
46
+ }
47
+ if (typeof d.session_id === "string" && !sessionId)
48
+ sessionId = d.session_id;
49
+ if (d.type === "result") {
50
+ if (typeof d.session_id === "string")
51
+ sessionId = d.session_id;
52
+ if (typeof d.result === "string")
53
+ finalText = d.result;
54
+ isError = Boolean(d.is_error);
55
+ }
56
+ }
57
+ return { sessionId, finalText, isError };
58
+ },
59
+ };
60
+ /**
61
+ * Drives the OpenAI Codex CLI via `codex exec`. Mirrors claudeAdapter but for
62
+ * codex's different surface:
63
+ * - prompt is fed over STDIN (argv ends with a bare `-`), not argv → promptViaStdin
64
+ * - permission is a spawn-time SANDBOX choice, not a per-tool approval loop:
65
+ * default → --sandbox read-only (codex can read, not write)
66
+ * acceptEdits → --sandbox workspace-write (codex can write the workspace)
67
+ * bypassPermissions → --dangerously-bypass-approvals-and-sandbox (full auto)
68
+ * (Matches the only model codex supports — same choice the `wand` tool makes;
69
+ * codex has no `--permission-prompt-tool stdio` equivalent.)
70
+ * - JSONL event shape differs: session id is `thread.started`.thread_id, the
71
+ * final answer is the last `item.completed` of item.type "agent_message", and
72
+ * failure is `turn.failed` / `error` events (no `is_error` flag).
73
+ */
74
+ export const codexAdapter = {
75
+ kind: "codex",
76
+ promptViaStdin: true,
77
+ buildArgs(opts) {
78
+ const args = ["exec", "--json", "--color", "never", "--skip-git-repo-check"];
79
+ if (opts.permissionMode === "bypassPermissions") {
80
+ args.push("--dangerously-bypass-approvals-and-sandbox");
81
+ }
82
+ else {
83
+ args.push("--sandbox", opts.permissionMode === "acceptEdits" ? "workspace-write" : "read-only");
84
+ }
85
+ // `resume <thread_id>` continues a prior codex session; the trailing `-`
86
+ // tells codex exec to read the prompt from stdin (we feed it there).
87
+ if (opts.resumeSessionId)
88
+ args.push("resume", opts.resumeSessionId, "-");
89
+ else
90
+ args.push("-");
91
+ return args;
92
+ },
93
+ parseResult(lines) {
94
+ let sessionId = "";
95
+ let finalText = "";
96
+ let isError = false;
97
+ const errorBits = [];
98
+ for (const line of lines) {
99
+ const t = line.trim();
100
+ if (!t)
101
+ continue;
102
+ let d;
103
+ try {
104
+ d = JSON.parse(t);
105
+ }
106
+ catch {
107
+ continue;
108
+ }
109
+ if (d.type === "thread.started" && typeof d.thread_id === "string")
110
+ sessionId = d.thread_id;
111
+ else if (d.type === "item.completed" && d.item?.type === "agent_message" && typeof d.item.text === "string") {
112
+ finalText = d.item.text; // keep the LAST agent_message
113
+ }
114
+ else if (d.type === "turn.failed") {
115
+ isError = true;
116
+ const msg = d.error?.message ?? d.error ?? "turn failed";
117
+ if (typeof msg === "string")
118
+ errorBits.push(msg);
119
+ }
120
+ else if (d.type === "error") {
121
+ isError = true;
122
+ const msg = d.message ?? d.error?.message ?? d.error ?? "error";
123
+ if (typeof msg === "string")
124
+ errorBits.push(msg);
125
+ }
126
+ }
127
+ // On failure, surface the error text as finalText (so the caller/notification
128
+ // shows *why*), preferring it over any partial agent_message.
129
+ if (isError && errorBits.length)
130
+ finalText = errorBits.join("\n");
131
+ return { sessionId, finalText, isError };
132
+ },
133
+ };
@@ -0,0 +1,19 @@
1
+ export interface CCAvailability {
2
+ available: boolean;
3
+ command: string;
4
+ version?: string;
5
+ reason?: "not-found" | "not-executable";
6
+ }
7
+ /** macOS GUI-launched Electron has a minimal PATH (no Homebrew). Prepend common
8
+ * CLI dirs so `claude` resolves. Mirrors resident-agent.ts's fix. */
9
+ export declare function pathWithCommonBins(env?: NodeJS.ProcessEnv): string;
10
+ export type ProbeRunner = (command: string) => Promise<{
11
+ ok: boolean;
12
+ stdout: string;
13
+ }>;
14
+ /** Probe a CLI's availability. Injectable runner for tests. */
15
+ export declare function probeCli(command: string, runner?: ProbeRunner): Promise<CCAvailability>;
16
+ /** Cached probe; pass force=true to re-detect (user installed CLI mid-session). */
17
+ export declare function probeClaudeCli(force?: boolean): Promise<CCAvailability>;
18
+ /** Cached probe for the OpenAI Codex CLI; force=true re-detects. */
19
+ export declare function probeCodexCli(force?: boolean): Promise<CCAvailability>;
@@ -0,0 +1,53 @@
1
+ import { spawn } from "node:child_process";
2
+ import { delimiter } from "node:path";
3
+ /** macOS GUI-launched Electron has a minimal PATH (no Homebrew). Prepend common
4
+ * CLI dirs so `claude` resolves. Mirrors resident-agent.ts's fix. */
5
+ export function pathWithCommonBins(env = process.env) {
6
+ const extra = ["/opt/homebrew/bin", "/usr/local/bin", "/usr/bin", "/bin"];
7
+ const current = (env.PATH ?? "").split(delimiter).filter(Boolean);
8
+ const merged = [];
9
+ for (const dir of [...extra, ...current])
10
+ if (!merged.includes(dir))
11
+ merged.push(dir);
12
+ return merged.join(delimiter);
13
+ }
14
+ /** Default runner: `<command> --version` with PATH fix. */
15
+ const defaultRunner = (command) => new Promise((resolve, reject) => {
16
+ const child = spawn(command, ["--version"], {
17
+ env: { ...process.env, PATH: pathWithCommonBins() },
18
+ stdio: ["ignore", "pipe", "pipe"],
19
+ });
20
+ let stdout = "";
21
+ child.stdout?.on("data", (c) => (stdout += String(c)));
22
+ child.on("error", reject);
23
+ child.on("exit", (code) => resolve({ ok: code === 0, stdout }));
24
+ });
25
+ /** Probe a CLI's availability. Injectable runner for tests. */
26
+ export async function probeCli(command, runner = defaultRunner) {
27
+ try {
28
+ const { ok, stdout } = await runner(command);
29
+ if (!ok)
30
+ return { available: false, command, reason: "not-executable" };
31
+ return { available: true, command, version: stdout.trim() || undefined };
32
+ }
33
+ catch (err) {
34
+ const code = err.code;
35
+ return { available: false, command, reason: code === "ENOENT" ? "not-found" : "not-executable" };
36
+ }
37
+ }
38
+ let cached;
39
+ /** Cached probe; pass force=true to re-detect (user installed CLI mid-session). */
40
+ export async function probeClaudeCli(force = false) {
41
+ if (cached && !force)
42
+ return cached;
43
+ cached = await probeCli("claude");
44
+ return cached;
45
+ }
46
+ let cachedCodex;
47
+ /** Cached probe for the OpenAI Codex CLI; force=true re-detects. */
48
+ export async function probeCodexCli(force = false) {
49
+ if (cachedCodex && !force)
50
+ return cachedCodex;
51
+ cachedCodex = await probeCli("codex");
52
+ return cachedCodex;
53
+ }
@@ -0,0 +1,24 @@
1
+ import type { DiscoveredSession, DiscoverOptions } from "./session-discovery.js";
2
+ /**
3
+ * Discover codex CLI sessions for a given `cwd`, mirroring the claude-side
4
+ * `discoverSessions` but for codex's storage layout, which is fundamentally
5
+ * different:
6
+ *
7
+ * ~/.codex/sessions/YYYY/MM/DD/rollout-<ts>-<uuid>.jsonl
8
+ *
9
+ * Unlike claude (one dir per project), codex stores rollouts by DATE, not by
10
+ * cwd. The cwd lives INSIDE the file: the first line is a `session_meta` event
11
+ * whose `payload` carries `{ id, cwd, timestamp }` (`id` is the thread id we
12
+ * resume by). So discovery means: walk every rollout file, read just its first
13
+ * line to learn its cwd, and keep the ones matching the requested project.
14
+ *
15
+ * Codex rollout files can be large, so we deliberately AVOID `readFileSync` on
16
+ * the whole file (the claude version reads the whole file because claude
17
+ * sessions are small). We read the first line for the meta, and — only for a
18
+ * matching file — read a bounded prefix to find the first real user message for
19
+ * the title. Returns the same `DiscoveredSession` shape so the UI is CLI-blind.
20
+ */
21
+ export declare function discoverCodexSessions(cwd: string, codexHome?: string, opts?: DiscoverOptions): DiscoveredSession[];
22
+ /** Count codex sessions for `cwd` (reads first-line meta of every rollout; no
23
+ * window). Used so the UI knows whether a bounded list left older ones hidden. */
24
+ export declare function countCodexSessions(cwd: string, codexHome?: string): number;
@@ -0,0 +1,191 @@
1
+ import { readdirSync, statSync, existsSync, openSync, readSync, closeSync } from "node:fs";
2
+ import { join } from "node:path";
3
+ import { homedir } from "node:os";
4
+ import { selectRecentStats } from "./session-discovery.js";
5
+ /**
6
+ * Discover codex CLI sessions for a given `cwd`, mirroring the claude-side
7
+ * `discoverSessions` but for codex's storage layout, which is fundamentally
8
+ * different:
9
+ *
10
+ * ~/.codex/sessions/YYYY/MM/DD/rollout-<ts>-<uuid>.jsonl
11
+ *
12
+ * Unlike claude (one dir per project), codex stores rollouts by DATE, not by
13
+ * cwd. The cwd lives INSIDE the file: the first line is a `session_meta` event
14
+ * whose `payload` carries `{ id, cwd, timestamp }` (`id` is the thread id we
15
+ * resume by). So discovery means: walk every rollout file, read just its first
16
+ * line to learn its cwd, and keep the ones matching the requested project.
17
+ *
18
+ * Codex rollout files can be large, so we deliberately AVOID `readFileSync` on
19
+ * the whole file (the claude version reads the whole file because claude
20
+ * sessions are small). We read the first line for the meta, and — only for a
21
+ * matching file — read a bounded prefix to find the first real user message for
22
+ * the title. Returns the same `DiscoveredSession` shape so the UI is CLI-blind.
23
+ */
24
+ export function discoverCodexSessions(cwd, codexHome = join(homedir(), ".codex"), opts = {}) {
25
+ const root = join(codexHome, "sessions");
26
+ if (!existsSync(root))
27
+ return [];
28
+ // Cheap pass: stat every rollout (no read). Apply the recency window here so
29
+ // the meta read (first line) only runs on in-window files. The limit can't be
30
+ // applied yet — we don't know which files match `cwd` until we read the meta,
31
+ // so we'd otherwise drop matching-but-not-yet-seen sessions.
32
+ const stats = [];
33
+ for (const file of walkRollouts(root)) {
34
+ let st;
35
+ try {
36
+ st = statSync(file);
37
+ }
38
+ catch {
39
+ continue;
40
+ }
41
+ stats.push({ file, mtimeMs: st.mtimeMs });
42
+ }
43
+ const windowed = selectRecentStats(stats, { sinceMs: opts.sinceMs, now: opts.now });
44
+ const limit = opts.limit && opts.limit > 0 ? opts.limit : Infinity;
45
+ const out = [];
46
+ for (const s of windowed) {
47
+ if (out.length >= limit)
48
+ break;
49
+ let meta;
50
+ try {
51
+ meta = readSessionMeta(s.file);
52
+ }
53
+ catch {
54
+ continue;
55
+ }
56
+ if (!meta || !meta.id || meta.cwd !== cwd)
57
+ continue;
58
+ out.push({
59
+ sessionId: meta.id,
60
+ firstMessage: readFirstUserMessage(s.file),
61
+ lastModified: s.mtimeMs,
62
+ messageCount: 0, // not tracked for codex (would need a full scan); UI shows time + title.
63
+ });
64
+ }
65
+ return out;
66
+ }
67
+ /** Count codex sessions for `cwd` (reads first-line meta of every rollout; no
68
+ * window). Used so the UI knows whether a bounded list left older ones hidden. */
69
+ export function countCodexSessions(cwd, codexHome = join(homedir(), ".codex")) {
70
+ const root = join(codexHome, "sessions");
71
+ if (!existsSync(root))
72
+ return 0;
73
+ let n = 0;
74
+ for (const file of walkRollouts(root)) {
75
+ let meta;
76
+ try {
77
+ meta = readSessionMeta(file);
78
+ }
79
+ catch {
80
+ continue;
81
+ }
82
+ if (meta && meta.id && meta.cwd === cwd)
83
+ n++;
84
+ }
85
+ return n;
86
+ }
87
+ /** Recursively yield every `rollout-*.jsonl` file under `root`. */
88
+ function* walkRollouts(root) {
89
+ let entries;
90
+ try {
91
+ entries = readdirSync(root);
92
+ }
93
+ catch {
94
+ return;
95
+ }
96
+ for (const name of entries) {
97
+ const full = join(root, name);
98
+ let st;
99
+ try {
100
+ st = statSync(full);
101
+ }
102
+ catch {
103
+ continue;
104
+ }
105
+ if (st.isDirectory()) {
106
+ yield* walkRollouts(full);
107
+ }
108
+ else if (name.startsWith("rollout-") && name.endsWith(".jsonl")) {
109
+ yield full;
110
+ }
111
+ }
112
+ }
113
+ /** Read just the first line of a file (bounded), without loading the whole file. */
114
+ function readFirstLine(file, maxBytes = 1 << 16) {
115
+ const fd = openSync(file, "r");
116
+ try {
117
+ const buf = Buffer.alloc(maxBytes);
118
+ const n = readSync(fd, buf, 0, maxBytes, 0);
119
+ const text = buf.toString("utf-8", 0, n);
120
+ const nl = text.indexOf("\n");
121
+ return nl === -1 ? text : text.slice(0, nl);
122
+ }
123
+ finally {
124
+ closeSync(fd);
125
+ }
126
+ }
127
+ /** Parse the first-line `session_meta` event → `{ id, cwd }`. */
128
+ function readSessionMeta(file) {
129
+ const first = readFirstLine(file).trim();
130
+ if (!first)
131
+ return undefined;
132
+ const d = JSON.parse(first);
133
+ if (d.type !== "session_meta" || !d.payload)
134
+ return undefined;
135
+ return { id: d.payload.id, cwd: d.payload.cwd };
136
+ }
137
+ /**
138
+ * Find the first *real* user message text for the session title. Codex user
139
+ * messages look like:
140
+ * {type:"response_item", payload:{type:"message", role:"user",
141
+ * content:[{type:"input_text", text}]}}
142
+ * The very first user message is usually an `<environment_context>` injection
143
+ * (analogous to claude's `<local-command-caveat>`); skip those wrappers.
144
+ *
145
+ * Reads a bounded prefix of the file rather than the whole thing.
146
+ */
147
+ function readFirstUserMessage(file, maxBytes = 1 << 20) {
148
+ let chunk;
149
+ try {
150
+ const fd = openSync(file, "r");
151
+ try {
152
+ const buf = Buffer.alloc(maxBytes);
153
+ const n = readSync(fd, buf, 0, maxBytes, 0);
154
+ chunk = buf.toString("utf-8", 0, n);
155
+ }
156
+ finally {
157
+ closeSync(fd);
158
+ }
159
+ }
160
+ catch {
161
+ return "";
162
+ }
163
+ for (const line of chunk.split("\n")) {
164
+ if (!line.trim())
165
+ continue;
166
+ let d;
167
+ try {
168
+ d = JSON.parse(line);
169
+ }
170
+ catch {
171
+ // Truncated last line of the bounded read — stop scanning.
172
+ break;
173
+ }
174
+ const p = d?.payload;
175
+ if (d?.type !== "response_item" || p?.type !== "message" || p?.role !== "user")
176
+ continue;
177
+ const content = p.content;
178
+ const text = Array.isArray(content)
179
+ ? content.map((c) => (typeof c?.text === "string" ? c.text : "")).join("")
180
+ : typeof content === "string"
181
+ ? content
182
+ : "";
183
+ const t = text.trim();
184
+ if (!t)
185
+ continue;
186
+ if (t.startsWith("<environment_context>"))
187
+ continue;
188
+ return t.slice(0, 200);
189
+ }
190
+ return "";
191
+ }
@@ -0,0 +1,25 @@
1
+ import type { HistoryMessage } from "./session-history.js";
2
+ /**
3
+ * Read the last `limit` user/assistant messages from a codex CLI session,
4
+ * returning the SAME shape as the claude-side `readRecentHistory` so the room
5
+ * UI stays CLI-blind.
6
+ *
7
+ * Codex storage differs from claude fundamentally (see `codex-session-discovery`):
8
+ * rollouts live under `~/.codex/sessions/YYYY/MM/DD/rollout-*.jsonl`, keyed by
9
+ * DATE not cwd, with the thread id inside the file's `session_meta` first line.
10
+ * So we first locate the rollout file whose `session_meta` matches both
11
+ * `threadId` and `cwd`, then parse its event stream:
12
+ *
13
+ * - {type:"response_item", payload:{type:"message", role:"user"|"assistant",
14
+ * content:[{type:"input_text"|"output_text", text}]}} → message text
15
+ * - {type:"response_item", payload:{type:"function_call", name, arguments}} → tool
16
+ * - {type:"response_item", payload:{type:"custom_tool_call", name, input}} → tool
17
+ *
18
+ * `developer`-role messages (environment/system injections) and the leading
19
+ * `<environment_context>` user wrapper are skipped, mirroring discovery.
20
+ */
21
+ export declare function readCodexRecentHistory(cwd: string, threadId: string, limit: number, codexHome?: string): {
22
+ messages: HistoryMessage[];
23
+ hasMore: boolean;
24
+ totalCount: number;
25
+ };
@@ -0,0 +1,187 @@
1
+ import { readdirSync, readFileSync, statSync, existsSync, openSync, readSync, closeSync } from "node:fs";
2
+ import { join } from "node:path";
3
+ import { homedir } from "node:os";
4
+ /**
5
+ * Read the last `limit` user/assistant messages from a codex CLI session,
6
+ * returning the SAME shape as the claude-side `readRecentHistory` so the room
7
+ * UI stays CLI-blind.
8
+ *
9
+ * Codex storage differs from claude fundamentally (see `codex-session-discovery`):
10
+ * rollouts live under `~/.codex/sessions/YYYY/MM/DD/rollout-*.jsonl`, keyed by
11
+ * DATE not cwd, with the thread id inside the file's `session_meta` first line.
12
+ * So we first locate the rollout file whose `session_meta` matches both
13
+ * `threadId` and `cwd`, then parse its event stream:
14
+ *
15
+ * - {type:"response_item", payload:{type:"message", role:"user"|"assistant",
16
+ * content:[{type:"input_text"|"output_text", text}]}} → message text
17
+ * - {type:"response_item", payload:{type:"function_call", name, arguments}} → tool
18
+ * - {type:"response_item", payload:{type:"custom_tool_call", name, input}} → tool
19
+ *
20
+ * `developer`-role messages (environment/system injections) and the leading
21
+ * `<environment_context>` user wrapper are skipped, mirroring discovery.
22
+ */
23
+ export function readCodexRecentHistory(cwd, threadId, limit, codexHome = join(homedir(), ".codex")) {
24
+ const empty = { messages: [], hasMore: false, totalCount: 0 };
25
+ const file = findRolloutFile(codexHome, cwd, threadId);
26
+ if (!file)
27
+ return empty;
28
+ let raw;
29
+ try {
30
+ raw = readFileSync(file, "utf-8");
31
+ }
32
+ catch {
33
+ return empty;
34
+ }
35
+ const all = [];
36
+ for (const line of raw.split("\n")) {
37
+ if (!line.trim())
38
+ continue;
39
+ let d;
40
+ try {
41
+ d = JSON.parse(line);
42
+ }
43
+ catch {
44
+ continue;
45
+ }
46
+ if (d?.type !== "response_item")
47
+ continue;
48
+ const p = d.payload;
49
+ if (!p)
50
+ continue;
51
+ if (p.type === "message" && (p.role === "user" || p.role === "assistant")) {
52
+ const t = textOf(p.content).trim();
53
+ if (!t || t.startsWith("<environment_context>"))
54
+ continue;
55
+ all.push({ role: p.role, text: t.slice(0, 4000) });
56
+ }
57
+ else if (p.type === "function_call" || p.type === "custom_tool_call") {
58
+ const tool = { name: typeof p.name === "string" ? p.name : "tool", summary: summaryOf(p), args: argsOf(p) };
59
+ const last = all[all.length - 1];
60
+ // Attach the tool to the preceding assistant turn; otherwise start one.
61
+ if (last && last.role === "assistant") {
62
+ (last.tools ??= []).push(tool);
63
+ }
64
+ else {
65
+ all.push({ role: "assistant", text: "", tools: [tool] });
66
+ }
67
+ }
68
+ }
69
+ const lim = limit > 0 ? limit : 20;
70
+ const start = Math.max(0, all.length - lim);
71
+ return { messages: all.slice(start), hasMore: start > 0, totalCount: all.length };
72
+ }
73
+ /** Join the text of codex content parts (`input_text`/`output_text`). */
74
+ function textOf(content) {
75
+ if (typeof content === "string")
76
+ return content;
77
+ if (Array.isArray(content))
78
+ return content.map((c) => (typeof c?.text === "string" ? c.text : "")).join("");
79
+ return "";
80
+ }
81
+ /** Build a short summary for a codex tool event from its arguments/input. */
82
+ function summaryOf(payload) {
83
+ // function_call carries `arguments` as a JSON string; custom_tool_call carries `input` as a string.
84
+ if (typeof payload.arguments === "string") {
85
+ try {
86
+ const a = JSON.parse(payload.arguments);
87
+ const s = a?.cmd ?? a?.command ?? a?.file_path ?? a?.path ?? a?.workdir ?? "";
88
+ if (s)
89
+ return String(s).slice(0, 120);
90
+ }
91
+ catch {
92
+ /* fall through to raw */
93
+ }
94
+ return payload.arguments.slice(0, 120);
95
+ }
96
+ if (typeof payload.input === "string")
97
+ return payload.input.slice(0, 120);
98
+ return "";
99
+ }
100
+ /**
101
+ * Build the FULL structured tool args for a codex tool event so a replayed tool
102
+ * card can show the real parameters (not just the lossy one-field summary).
103
+ * `function_call.arguments` is a JSON string → parse it; `custom_tool_call.input`
104
+ * is a raw string → keep it under `{input}`. Returns undefined when neither is
105
+ * present or the JSON is malformed.
106
+ */
107
+ function argsOf(payload) {
108
+ if (typeof payload.arguments === "string") {
109
+ try {
110
+ const a = JSON.parse(payload.arguments);
111
+ if (a && typeof a === "object")
112
+ return a;
113
+ }
114
+ catch {
115
+ /* malformed JSON → fall through */
116
+ }
117
+ return { arguments: payload.arguments };
118
+ }
119
+ if (typeof payload.input === "string")
120
+ return { input: payload.input };
121
+ return undefined;
122
+ }
123
+ /** Find the rollout file whose `session_meta` matches both `threadId` and `cwd`. */
124
+ function findRolloutFile(codexHome, cwd, threadId) {
125
+ const root = join(codexHome, "sessions");
126
+ if (!existsSync(root))
127
+ return undefined;
128
+ for (const file of walkRollouts(root)) {
129
+ let meta;
130
+ try {
131
+ meta = readSessionMeta(file);
132
+ }
133
+ catch {
134
+ continue;
135
+ }
136
+ if (meta && meta.id === threadId && meta.cwd === cwd)
137
+ return file;
138
+ }
139
+ return undefined;
140
+ }
141
+ /** Recursively yield every `rollout-*.jsonl` file under `root`. */
142
+ function* walkRollouts(root) {
143
+ let entries;
144
+ try {
145
+ entries = readdirSync(root);
146
+ }
147
+ catch {
148
+ return;
149
+ }
150
+ for (const name of entries) {
151
+ const full = join(root, name);
152
+ let st;
153
+ try {
154
+ st = statSync(full);
155
+ }
156
+ catch {
157
+ continue;
158
+ }
159
+ if (st.isDirectory()) {
160
+ yield* walkRollouts(full);
161
+ }
162
+ else if (name.startsWith("rollout-") && name.endsWith(".jsonl")) {
163
+ yield full;
164
+ }
165
+ }
166
+ }
167
+ /** Parse the first-line `session_meta` event → `{ id, cwd }`, reading a bounded prefix. */
168
+ function readSessionMeta(file, maxBytes = 1 << 16) {
169
+ const fd = openSync(file, "r");
170
+ let text;
171
+ try {
172
+ const buf = Buffer.alloc(maxBytes);
173
+ const n = readSync(fd, buf, 0, maxBytes, 0);
174
+ text = buf.toString("utf-8", 0, n);
175
+ }
176
+ finally {
177
+ closeSync(fd);
178
+ }
179
+ const nl = text.indexOf("\n");
180
+ const first = (nl === -1 ? text : text.slice(0, nl)).trim();
181
+ if (!first)
182
+ return undefined;
183
+ const d = JSON.parse(first);
184
+ if (d.type !== "session_meta" || !d.payload)
185
+ return undefined;
186
+ return { id: d.payload.id, cwd: d.payload.cwd };
187
+ }
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Parse claude transcript JSONL text → deduped list of changed file paths.
3
+ * Each line is `{ message: { content: [{ type:"tool_use", name, input }] } }`.
4
+ * Exported for direct unit testing without a transcript file on disk.
5
+ */
6
+ export declare function extractChangedFilesFromClaudeLines(text: string): string[];
7
+ /** Locate `<claudeHome>/projects/<encodeCwd(cwd)>/<sid>.jsonl` and extract changes. */
8
+ export declare function readClaudeChangedFiles(cwd: string, sessionId: string, claudeHome?: string): string[];
9
+ /**
10
+ * Parse codex rollout JSONL text → changed file paths. Codex tool calls are
11
+ * `{type:"response_item", payload:{type:"function_call", name, arguments}}` or
12
+ * `{...custom_tool_call, input}`. apply_patch carries the patch text; write/edit
13
+ * carry a file path in arguments. Exported for unit testing.
14
+ */
15
+ export declare function extractChangedFilesFromCodexLines(text: string): string[];
16
+ /** Locate a codex rollout by threadId+cwd under `<codexHome>/sessions` and extract changes. */
17
+ export declare function readCodexChangedFiles(cwd: string, threadId: string, codexHome?: string): string[];
18
+ /** Dispatch by CLI. Unknown cli → []. Never throws. */
19
+ export declare function readExternalChangedFiles(cli: string, cwd: string, sessionId: string): string[];