@jini-ai/agent-runtime 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (399) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +43 -0
  3. package/dist/acp-model-probe.d.ts +48 -0
  4. package/dist/acp-model-probe.d.ts.map +1 -0
  5. package/dist/acp-model-probe.js +15 -0
  6. package/dist/acp-model-probe.js.map +1 -0
  7. package/dist/agent-protocol/acp/account-failure.d.ts +54 -0
  8. package/dist/agent-protocol/acp/account-failure.d.ts.map +1 -0
  9. package/dist/agent-protocol/acp/account-failure.js +37 -0
  10. package/dist/agent-protocol/acp/account-failure.js.map +1 -0
  11. package/dist/agent-protocol/acp/constants.d.ts +26 -0
  12. package/dist/agent-protocol/acp/constants.d.ts.map +1 -0
  13. package/dist/agent-protocol/acp/constants.js +39 -0
  14. package/dist/agent-protocol/acp/constants.js.map +1 -0
  15. package/dist/agent-protocol/acp/index.d.ts +14 -0
  16. package/dist/agent-protocol/acp/index.d.ts.map +1 -0
  17. package/dist/agent-protocol/acp/index.js +14 -0
  18. package/dist/agent-protocol/acp/index.js.map +1 -0
  19. package/dist/agent-protocol/acp/json.d.ts +82 -0
  20. package/dist/agent-protocol/acp/json.d.ts.map +1 -0
  21. package/dist/agent-protocol/acp/json.js +144 -0
  22. package/dist/agent-protocol/acp/json.js.map +1 -0
  23. package/dist/agent-protocol/acp/models.d.ts +112 -0
  24. package/dist/agent-protocol/acp/models.d.ts.map +1 -0
  25. package/dist/agent-protocol/acp/models.js +293 -0
  26. package/dist/agent-protocol/acp/models.js.map +1 -0
  27. package/dist/agent-protocol/acp/rpc.d.ts +107 -0
  28. package/dist/agent-protocol/acp/rpc.d.ts.map +1 -0
  29. package/dist/agent-protocol/acp/rpc.js +162 -0
  30. package/dist/agent-protocol/acp/rpc.js.map +1 -0
  31. package/dist/agent-protocol/acp/session-params.d.ts +55 -0
  32. package/dist/agent-protocol/acp/session-params.d.ts.map +1 -0
  33. package/dist/agent-protocol/acp/session-params.js +81 -0
  34. package/dist/agent-protocol/acp/session-params.js.map +1 -0
  35. package/dist/agent-protocol/acp/session.d.ts +101 -0
  36. package/dist/agent-protocol/acp/session.d.ts.map +1 -0
  37. package/dist/agent-protocol/acp/session.js +832 -0
  38. package/dist/agent-protocol/acp/session.js.map +1 -0
  39. package/dist/agent-protocol/acp/text-suppression.d.ts +73 -0
  40. package/dist/agent-protocol/acp/text-suppression.d.ts.map +1 -0
  41. package/dist/agent-protocol/acp/text-suppression.js +229 -0
  42. package/dist/agent-protocol/acp/text-suppression.js.map +1 -0
  43. package/dist/agent-protocol/acp/types.d.ts +27 -0
  44. package/dist/agent-protocol/acp/types.d.ts.map +1 -0
  45. package/dist/agent-protocol/acp/types.js +2 -0
  46. package/dist/agent-protocol/acp/types.js.map +1 -0
  47. package/dist/agent-protocol/acp/updates.d.ts +166 -0
  48. package/dist/agent-protocol/acp/updates.d.ts.map +1 -0
  49. package/dist/agent-protocol/acp/updates.js +268 -0
  50. package/dist/agent-protocol/acp/updates.js.map +1 -0
  51. package/dist/agent-protocol/core/index.d.ts +6 -0
  52. package/dist/agent-protocol/core/index.d.ts.map +1 -0
  53. package/dist/agent-protocol/core/index.js +6 -0
  54. package/dist/agent-protocol/core/index.js.map +1 -0
  55. package/dist/agent-protocol/core/json-line-stream.d.ts +42 -0
  56. package/dist/agent-protocol/core/json-line-stream.d.ts.map +1 -0
  57. package/dist/agent-protocol/core/json-line-stream.js +333 -0
  58. package/dist/agent-protocol/core/json-line-stream.js.map +1 -0
  59. package/dist/agent-protocol/index.d.ts +8 -0
  60. package/dist/agent-protocol/index.d.ts.map +1 -0
  61. package/dist/agent-protocol/index.js +8 -0
  62. package/dist/agent-protocol/index.js.map +1 -0
  63. package/dist/agent-protocol/pi-rpc/events.d.ts +26 -0
  64. package/dist/agent-protocol/pi-rpc/events.d.ts.map +1 -0
  65. package/dist/agent-protocol/pi-rpc/events.js +167 -0
  66. package/dist/agent-protocol/pi-rpc/events.js.map +1 -0
  67. package/dist/agent-protocol/pi-rpc/index.d.ts +11 -0
  68. package/dist/agent-protocol/pi-rpc/index.d.ts.map +1 -0
  69. package/dist/agent-protocol/pi-rpc/index.js +11 -0
  70. package/dist/agent-protocol/pi-rpc/index.js.map +1 -0
  71. package/dist/agent-protocol/pi-rpc/internal.d.ts +45 -0
  72. package/dist/agent-protocol/pi-rpc/internal.d.ts.map +1 -0
  73. package/dist/agent-protocol/pi-rpc/internal.js +41 -0
  74. package/dist/agent-protocol/pi-rpc/internal.js.map +1 -0
  75. package/dist/agent-protocol/pi-rpc/models.d.ts +21 -0
  76. package/dist/agent-protocol/pi-rpc/models.d.ts.map +1 -0
  77. package/dist/agent-protocol/pi-rpc/models.js +48 -0
  78. package/dist/agent-protocol/pi-rpc/models.js.map +1 -0
  79. package/dist/agent-protocol/pi-rpc/session.d.ts +106 -0
  80. package/dist/agent-protocol/pi-rpc/session.d.ts.map +1 -0
  81. package/dist/agent-protocol/pi-rpc/session.js +371 -0
  82. package/dist/agent-protocol/pi-rpc/session.js.map +1 -0
  83. package/dist/amr-model-cache.d.ts +40 -0
  84. package/dist/amr-model-cache.d.ts.map +1 -0
  85. package/dist/amr-model-cache.js +79 -0
  86. package/dist/amr-model-cache.js.map +1 -0
  87. package/dist/amr-profile-resolver.d.ts +21 -0
  88. package/dist/amr-profile-resolver.d.ts.map +1 -0
  89. package/dist/amr-profile-resolver.js +4 -0
  90. package/dist/amr-profile-resolver.js.map +1 -0
  91. package/dist/artifact-taxonomy.d.ts +27 -0
  92. package/dist/artifact-taxonomy.d.ts.map +1 -0
  93. package/dist/artifact-taxonomy.js +5 -0
  94. package/dist/artifact-taxonomy.js.map +1 -0
  95. package/dist/auth.d.ts +25 -0
  96. package/dist/auth.d.ts.map +1 -0
  97. package/dist/auth.js +332 -0
  98. package/dist/auth.js.map +1 -0
  99. package/dist/capabilities.d.ts +9 -0
  100. package/dist/capabilities.d.ts.map +1 -0
  101. package/dist/capabilities.js +2 -0
  102. package/dist/capabilities.js.map +1 -0
  103. package/dist/claude-stream.d.ts +37 -0
  104. package/dist/claude-stream.d.ts.map +1 -0
  105. package/dist/claude-stream.js +660 -0
  106. package/dist/claude-stream.js.map +1 -0
  107. package/dist/copilot-stream.d.ts +37 -0
  108. package/dist/copilot-stream.d.ts.map +1 -0
  109. package/dist/copilot-stream.js +136 -0
  110. package/dist/copilot-stream.js.map +1 -0
  111. package/dist/defs/aider.d.ts +13 -0
  112. package/dist/defs/aider.d.ts.map +1 -0
  113. package/dist/defs/aider.js +63 -0
  114. package/dist/defs/aider.js.map +1 -0
  115. package/dist/defs/amp.d.ts +12 -0
  116. package/dist/defs/amp.d.ts.map +1 -0
  117. package/dist/defs/amp.js +56 -0
  118. package/dist/defs/amp.js.map +1 -0
  119. package/dist/defs/amr.d.ts +37 -0
  120. package/dist/defs/amr.d.ts.map +1 -0
  121. package/dist/defs/amr.js +303 -0
  122. package/dist/defs/amr.js.map +1 -0
  123. package/dist/defs/antigravity.d.ts +25 -0
  124. package/dist/defs/antigravity.d.ts.map +1 -0
  125. package/dist/defs/antigravity.js +213 -0
  126. package/dist/defs/antigravity.js.map +1 -0
  127. package/dist/defs/claude.d.ts +30 -0
  128. package/dist/defs/claude.d.ts.map +1 -0
  129. package/dist/defs/claude.js +130 -0
  130. package/dist/defs/claude.js.map +1 -0
  131. package/dist/defs/codebuddy.d.ts +26 -0
  132. package/dist/defs/codebuddy.d.ts.map +1 -0
  133. package/dist/defs/codebuddy.js +124 -0
  134. package/dist/defs/codebuddy.js.map +1 -0
  135. package/dist/defs/codex.d.ts +30 -0
  136. package/dist/defs/codex.d.ts.map +1 -0
  137. package/dist/defs/codex.js +196 -0
  138. package/dist/defs/codex.js.map +1 -0
  139. package/dist/defs/copilot.d.ts +12 -0
  140. package/dist/defs/copilot.d.ts.map +1 -0
  141. package/dist/defs/copilot.js +88 -0
  142. package/dist/defs/copilot.js.map +1 -0
  143. package/dist/defs/cursor-agent.d.ts +27 -0
  144. package/dist/defs/cursor-agent.d.ts.map +1 -0
  145. package/dist/defs/cursor-agent.js +93 -0
  146. package/dist/defs/cursor-agent.js.map +1 -0
  147. package/dist/defs/deepseek.d.ts +12 -0
  148. package/dist/defs/deepseek.d.ts.map +1 -0
  149. package/dist/defs/deepseek.js +53 -0
  150. package/dist/defs/deepseek.js.map +1 -0
  151. package/dist/defs/devin.d.ts +12 -0
  152. package/dist/defs/devin.d.ts.map +1 -0
  153. package/dist/defs/devin.js +45 -0
  154. package/dist/defs/devin.js.map +1 -0
  155. package/dist/defs/grok-build.d.ts +26 -0
  156. package/dist/defs/grok-build.d.ts.map +1 -0
  157. package/dist/defs/grok-build.js +105 -0
  158. package/dist/defs/grok-build.js.map +1 -0
  159. package/dist/defs/hermes.d.ts +13 -0
  160. package/dist/defs/hermes.d.ts.map +1 -0
  161. package/dist/defs/hermes.js +51 -0
  162. package/dist/defs/hermes.js.map +1 -0
  163. package/dist/defs/index.d.ts +33 -0
  164. package/dist/defs/index.d.ts.map +1 -0
  165. package/dist/defs/index.js +33 -0
  166. package/dist/defs/index.js.map +1 -0
  167. package/dist/defs/kilo.d.ts +12 -0
  168. package/dist/defs/kilo.d.ts.map +1 -0
  169. package/dist/defs/kilo.js +20 -0
  170. package/dist/defs/kilo.js.map +1 -0
  171. package/dist/defs/kimi.d.ts +13 -0
  172. package/dist/defs/kimi.d.ts.map +1 -0
  173. package/dist/defs/kimi.js +26 -0
  174. package/dist/defs/kimi.js.map +1 -0
  175. package/dist/defs/kiro.d.ts +12 -0
  176. package/dist/defs/kiro.d.ts.map +1 -0
  177. package/dist/defs/kiro.js +20 -0
  178. package/dist/defs/kiro.js.map +1 -0
  179. package/dist/defs/mimo.d.ts +13 -0
  180. package/dist/defs/mimo.d.ts.map +1 -0
  181. package/dist/defs/mimo.js +26 -0
  182. package/dist/defs/mimo.js.map +1 -0
  183. package/dist/defs/opencode.d.ts +27 -0
  184. package/dist/defs/opencode.d.ts.map +1 -0
  185. package/dist/defs/opencode.js +89 -0
  186. package/dist/defs/opencode.js.map +1 -0
  187. package/dist/defs/pi.d.ts +18 -0
  188. package/dist/defs/pi.d.ts.map +1 -0
  189. package/dist/defs/pi.js +94 -0
  190. package/dist/defs/pi.js.map +1 -0
  191. package/dist/defs/qoder.d.ts +11 -0
  192. package/dist/defs/qoder.d.ts.map +1 -0
  193. package/dist/defs/qoder.js +50 -0
  194. package/dist/defs/qoder.js.map +1 -0
  195. package/dist/defs/qwen.d.ts +11 -0
  196. package/dist/defs/qwen.d.ts.map +1 -0
  197. package/dist/defs/qwen.js +28 -0
  198. package/dist/defs/qwen.js.map +1 -0
  199. package/dist/defs/reasonix.d.ts +20 -0
  200. package/dist/defs/reasonix.d.ts.map +1 -0
  201. package/dist/defs/reasonix.js +60 -0
  202. package/dist/defs/reasonix.js.map +1 -0
  203. package/dist/defs/shared.d.ts +23 -0
  204. package/dist/defs/shared.d.ts.map +1 -0
  205. package/dist/defs/shared.js +58 -0
  206. package/dist/defs/shared.js.map +1 -0
  207. package/dist/defs/trae-cli.d.ts +14 -0
  208. package/dist/defs/trae-cli.d.ts.map +1 -0
  209. package/dist/defs/trae-cli.js +22 -0
  210. package/dist/defs/trae-cli.js.map +1 -0
  211. package/dist/defs/vibe.d.ts +12 -0
  212. package/dist/defs/vibe.d.ts.map +1 -0
  213. package/dist/defs/vibe.js +20 -0
  214. package/dist/defs/vibe.js.map +1 -0
  215. package/dist/detection.d.ts +14 -0
  216. package/dist/detection.d.ts.map +1 -0
  217. package/dist/detection.js +266 -0
  218. package/dist/detection.js.map +1 -0
  219. package/dist/diagnostics.d.ts +8 -0
  220. package/dist/diagnostics.d.ts.map +1 -0
  221. package/dist/diagnostics.js +95 -0
  222. package/dist/diagnostics.js.map +1 -0
  223. package/dist/env.d.ts +19 -0
  224. package/dist/env.d.ts.map +1 -0
  225. package/dist/env.js +95 -0
  226. package/dist/env.js.map +1 -0
  227. package/dist/executables.d.ts +24 -0
  228. package/dist/executables.d.ts.map +1 -0
  229. package/dist/executables.js +349 -0
  230. package/dist/executables.js.map +1 -0
  231. package/dist/index.d.ts +74 -0
  232. package/dist/index.d.ts.map +1 -0
  233. package/dist/index.js +102 -0
  234. package/dist/index.js.map +1 -0
  235. package/dist/invocation.d.ts +6 -0
  236. package/dist/invocation.d.ts.map +1 -0
  237. package/dist/invocation.js +47 -0
  238. package/dist/invocation.js.map +1 -0
  239. package/dist/json-event-stream.d.ts +9 -0
  240. package/dist/json-event-stream.d.ts.map +1 -0
  241. package/dist/json-event-stream.js +856 -0
  242. package/dist/json-event-stream.js.map +1 -0
  243. package/dist/launch.d.ts +12 -0
  244. package/dist/launch.d.ts.map +1 -0
  245. package/dist/launch.js +221 -0
  246. package/dist/launch.js.map +1 -0
  247. package/dist/mcp.d.ts +44 -0
  248. package/dist/mcp.d.ts.map +1 -0
  249. package/dist/mcp.js +12 -0
  250. package/dist/mcp.js.map +1 -0
  251. package/dist/metadata.d.ts +24 -0
  252. package/dist/metadata.d.ts.map +1 -0
  253. package/dist/metadata.js +100 -0
  254. package/dist/metadata.js.map +1 -0
  255. package/dist/mmd-routes.d.ts +12 -0
  256. package/dist/mmd-routes.d.ts.map +1 -0
  257. package/dist/mmd-routes.js +146 -0
  258. package/dist/mmd-routes.js.map +1 -0
  259. package/dist/model-registry.d.ts +120 -0
  260. package/dist/model-registry.d.ts.map +1 -0
  261. package/dist/model-registry.js +77 -0
  262. package/dist/model-registry.js.map +1 -0
  263. package/dist/models.d.ts +16 -0
  264. package/dist/models.d.ts.map +1 -0
  265. package/dist/models.js +93 -0
  266. package/dist/models.js.map +1 -0
  267. package/dist/opencode-log.d.ts +16 -0
  268. package/dist/opencode-log.d.ts.map +1 -0
  269. package/dist/opencode-log.js +163 -0
  270. package/dist/opencode-log.js.map +1 -0
  271. package/dist/paths.d.ts +3 -0
  272. package/dist/paths.d.ts.map +1 -0
  273. package/dist/paths.js +29 -0
  274. package/dist/paths.js.map +1 -0
  275. package/dist/pi-models.d.ts +13 -0
  276. package/dist/pi-models.d.ts.map +1 -0
  277. package/dist/pi-models.js +36 -0
  278. package/dist/pi-models.js.map +1 -0
  279. package/dist/prompt-augmenter.d.ts +60 -0
  280. package/dist/prompt-augmenter.d.ts.map +1 -0
  281. package/dist/prompt-augmenter.js +26 -0
  282. package/dist/prompt-augmenter.js.map +1 -0
  283. package/dist/prompt-budget.d.ts +20 -0
  284. package/dist/prompt-budget.d.ts.map +1 -0
  285. package/dist/prompt-budget.js +226 -0
  286. package/dist/prompt-budget.js.map +1 -0
  287. package/dist/prompt-file.d.ts +7 -0
  288. package/dist/prompt-file.d.ts.map +1 -0
  289. package/dist/prompt-file.js +27 -0
  290. package/dist/prompt-file.js.map +1 -0
  291. package/dist/providers/aihubmix.d.ts +99 -0
  292. package/dist/providers/aihubmix.d.ts.map +1 -0
  293. package/dist/providers/aihubmix.js +239 -0
  294. package/dist/providers/aihubmix.js.map +1 -0
  295. package/dist/providers/anthropic-messages.d.ts +116 -0
  296. package/dist/providers/anthropic-messages.d.ts.map +1 -0
  297. package/dist/providers/anthropic-messages.js +313 -0
  298. package/dist/providers/anthropic-messages.js.map +1 -0
  299. package/dist/providers/azure-chat.d.ts +99 -0
  300. package/dist/providers/azure-chat.d.ts.map +1 -0
  301. package/dist/providers/azure-chat.js +164 -0
  302. package/dist/providers/azure-chat.js.map +1 -0
  303. package/dist/providers/connection-guard.d.ts +67 -0
  304. package/dist/providers/connection-guard.d.ts.map +1 -0
  305. package/dist/providers/connection-guard.js +211 -0
  306. package/dist/providers/connection-guard.js.map +1 -0
  307. package/dist/providers/elevenlabs.d.ts +28 -0
  308. package/dist/providers/elevenlabs.d.ts.map +1 -0
  309. package/dist/providers/elevenlabs.js +138 -0
  310. package/dist/providers/elevenlabs.js.map +1 -0
  311. package/dist/providers/google-messages.d.ts +108 -0
  312. package/dist/providers/google-messages.d.ts.map +1 -0
  313. package/dist/providers/google-messages.js +284 -0
  314. package/dist/providers/google-messages.js.map +1 -0
  315. package/dist/providers/google.d.ts +20 -0
  316. package/dist/providers/google.d.ts.map +1 -0
  317. package/dist/providers/google.js +42 -0
  318. package/dist/providers/google.js.map +1 -0
  319. package/dist/providers/index.d.ts +39 -0
  320. package/dist/providers/index.d.ts.map +1 -0
  321. package/dist/providers/index.js +39 -0
  322. package/dist/providers/index.js.map +1 -0
  323. package/dist/providers/model-catalog.d.ts +32 -0
  324. package/dist/providers/model-catalog.d.ts.map +1 -0
  325. package/dist/providers/model-catalog.js +394 -0
  326. package/dist/providers/model-catalog.js.map +1 -0
  327. package/dist/providers/oauth-callback-server.d.ts +35 -0
  328. package/dist/providers/oauth-callback-server.d.ts.map +1 -0
  329. package/dist/providers/oauth-callback-server.js +217 -0
  330. package/dist/providers/oauth-callback-server.js.map +1 -0
  331. package/dist/providers/oauth-credentials.d.ts +29 -0
  332. package/dist/providers/oauth-credentials.d.ts.map +1 -0
  333. package/dist/providers/oauth-credentials.js +70 -0
  334. package/dist/providers/oauth-credentials.js.map +1 -0
  335. package/dist/providers/oauth-provider.d.ts +95 -0
  336. package/dist/providers/oauth-provider.d.ts.map +1 -0
  337. package/dist/providers/oauth-provider.js +130 -0
  338. package/dist/providers/oauth-provider.js.map +1 -0
  339. package/dist/providers/oauth-tokens.d.ts +35 -0
  340. package/dist/providers/oauth-tokens.d.ts.map +1 -0
  341. package/dist/providers/oauth-tokens.js +136 -0
  342. package/dist/providers/oauth-tokens.js.map +1 -0
  343. package/dist/providers/ollama-chat.d.ts +106 -0
  344. package/dist/providers/ollama-chat.d.ts.map +1 -0
  345. package/dist/providers/ollama-chat.js +292 -0
  346. package/dist/providers/ollama-chat.js.map +1 -0
  347. package/dist/providers/openai-chat.d.ts +147 -0
  348. package/dist/providers/openai-chat.d.ts.map +1 -0
  349. package/dist/providers/openai-chat.js +302 -0
  350. package/dist/providers/openai-chat.js.map +1 -0
  351. package/dist/providers/pkce.d.ts +81 -0
  352. package/dist/providers/pkce.d.ts.map +1 -0
  353. package/dist/providers/pkce.js +176 -0
  354. package/dist/providers/pkce.js.map +1 -0
  355. package/dist/providers/sse-decode.d.ts +47 -0
  356. package/dist/providers/sse-decode.d.ts.map +1 -0
  357. package/dist/providers/sse-decode.js +109 -0
  358. package/dist/providers/sse-decode.js.map +1 -0
  359. package/dist/providers/token-params.d.ts +29 -0
  360. package/dist/providers/token-params.d.ts.map +1 -0
  361. package/dist/providers/token-params.js +41 -0
  362. package/dist/providers/token-params.js.map +1 -0
  363. package/dist/providers/turn-end-guard.d.ts +37 -0
  364. package/dist/providers/turn-end-guard.d.ts.map +1 -0
  365. package/dist/providers/turn-end-guard.js +42 -0
  366. package/dist/providers/turn-end-guard.js.map +1 -0
  367. package/dist/providers/types.d.ts +36 -0
  368. package/dist/providers/types.d.ts.map +1 -0
  369. package/dist/providers/types.js +13 -0
  370. package/dist/providers/types.js.map +1 -0
  371. package/dist/qoder-stream.d.ts +19 -0
  372. package/dist/qoder-stream.d.ts.map +1 -0
  373. package/dist/qoder-stream.js +167 -0
  374. package/dist/qoder-stream.js.map +1 -0
  375. package/dist/registry.d.ts +5 -0
  376. package/dist/registry.d.ts.map +1 -0
  377. package/dist/registry.js +58 -0
  378. package/dist/registry.js.map +1 -0
  379. package/dist/resolution.d.ts +2 -0
  380. package/dist/resolution.d.ts.map +1 -0
  381. package/dist/resolution.js +19 -0
  382. package/dist/resolution.js.map +1 -0
  383. package/dist/role-marker-guard.d.ts +53 -0
  384. package/dist/role-marker-guard.d.ts.map +1 -0
  385. package/dist/role-marker-guard.js +280 -0
  386. package/dist/role-marker-guard.js.map +1 -0
  387. package/dist/telemetry-sink.d.ts +35 -0
  388. package/dist/telemetry-sink.d.ts.map +1 -0
  389. package/dist/telemetry-sink.js +5 -0
  390. package/dist/telemetry-sink.js.map +1 -0
  391. package/dist/terminal-launch.d.ts +11 -0
  392. package/dist/terminal-launch.d.ts.map +1 -0
  393. package/dist/terminal-launch.js +123 -0
  394. package/dist/terminal-launch.js.map +1 -0
  395. package/dist/types.d.ts +185 -0
  396. package/dist/types.d.ts.map +1 -0
  397. package/dist/types.js +2 -0
  398. package/dist/types.js.map +1 -0
  399. package/package.json +47 -0
@@ -0,0 +1,130 @@
1
+ /** Ported verbatim from OD's `apps/daemon/src/runtimes/defs/claude.ts` (import path adjusted only). See `source-map.md`. */
2
+ import { agentCapabilities } from '../capabilities.js';
3
+ import { DEFAULT_MODEL_OPTION } from './shared.js';
4
+ import { loadMmdRouteModels } from '../mmd-routes.js';
5
+ /**
6
+ * The levels `claude --effort` accepts, as the CLI itself reports them when
7
+ * given an unknown one. Anything outside this set is dropped rather than
8
+ * forwarded: the CLI answers an unrecognized level with a stderr warning and
9
+ * then runs at its default, so passing one through would look like the setting
10
+ * applied while silently doing nothing.
11
+ */
12
+ const CLAUDE_EFFORT_LEVELS = new Set([
13
+ 'low', 'medium', 'high', 'xhigh', 'max',
14
+ ]);
15
+ const CLAUDE_FALLBACK_MODELS = [
16
+ DEFAULT_MODEL_OPTION,
17
+ { id: 'sonnet', label: 'Sonnet (alias)' },
18
+ { id: 'opus', label: 'Opus (alias)' },
19
+ { id: 'haiku', label: 'Haiku (alias)' },
20
+ { id: 'claude-opus-4-5', label: 'claude-opus-4-5' },
21
+ { id: 'claude-sonnet-4-5', label: 'claude-sonnet-4-5' },
22
+ { id: 'claude-haiku-4-5', label: 'claude-haiku-4-5' },
23
+ ];
24
+ export const claudeAgentDef = {
25
+ id: 'claude',
26
+ name: 'Claude Code',
27
+ bin: 'claude',
28
+ // Drop-in forks that ship a CLI argv-compatible with `claude`. Tried in
29
+ // order if `claude` itself isn't on PATH, so users on a single-binary
30
+ // install (e.g. only OpenClaude — https://github.com/Gitlawb/openclaude
31
+ // — issue #235) get auto-detected without writing wrapper scripts.
32
+ fallbackBins: ['openclaude'],
33
+ versionArgs: ['--version'],
34
+ authProbe: {
35
+ args: ['auth', 'status'],
36
+ timeoutMs: 5000,
37
+ },
38
+ helpArgs: ['-p', '--help'],
39
+ capabilityFlags: {
40
+ // Flag string -> capability key. After probing `--help`, we set
41
+ // `agentCapabilities[id][key] = true` for each substring that matches.
42
+ // `--add-dir` and `--include-partial-messages` live under `claude -p`
43
+ // subcommand, so we probe `claude -p --help` instead of `claude --help`.
44
+ // Fixes issue #430: --add-dir never detected because it wasn't in global help.
45
+ '--include-partial-messages': 'partialMessages',
46
+ '--add-dir': 'addDir',
47
+ '--effort': 'effort',
48
+ },
49
+ // `claude` has no list-models subcommand. Prefer local mmd/MMS routes
50
+ // when present so proxy-backed Claude-compatible models appear in the
51
+ // picker, then keep the built-in aliases as fallback hints.
52
+ fallbackModels: CLAUDE_FALLBACK_MODELS,
53
+ fetchModels: async (_resolvedBin, env) => loadMmdRouteModels(env, CLAUDE_FALLBACK_MODELS),
54
+ // `claude --effort <level>`. The set differs from codex's on both ends — it
55
+ // has `max` and has no `none`/`minimal` — so it is spelled out rather than
56
+ // shared, and `CLAUDE_EFFORT_LEVELS` below is what `buildArgs` validates
57
+ // against: a level carried over from another runtime's picker must not reach
58
+ // the CLI, which would warn on stderr and silently fall back to the default.
59
+ reasoningOptions: [
60
+ // Spelled out rather than reusing DEFAULT_MODEL_OPTION: its label reads
61
+ // "Default (CLI config)", which is right for a model row and wrong here.
62
+ { id: 'default', label: 'Default' },
63
+ { id: 'low', label: 'Low' },
64
+ { id: 'medium', label: 'Medium' },
65
+ { id: 'high', label: 'High' },
66
+ { id: 'xhigh', label: 'XHigh' },
67
+ { id: 'max', label: 'Max' },
68
+ ],
69
+ // Prompt delivered via stdin to avoid both Linux `spawn E2BIG`
70
+ // (MAX_ARG_STRLEN caps a single argv entry at ~128 KB) and Windows
71
+ // `spawn ENAMETOOLONG` (CreateProcess caps the full command line at
72
+ // ~32 KB direct, ~8 KB via .cmd shim). `claude -p` with no positional
73
+ // prompt reads the prompt from stdin under `--input-format text` (the
74
+ // default), which has no length cap. Mirrors the codex/gemini/opencode/
75
+ // cursor/qwen entries below.
76
+ buildArgs: (_prompt, _imagePaths, extraAllowedDirs = [], options = {}, runtimeContext = {}) => {
77
+ const caps = agentCapabilities.get('claude') || {};
78
+ // `--input-format stream-json` lets the daemon stream multiple JSONL
79
+ // messages into stdin instead of closing it after the initial prompt,
80
+ // keeping the turn open so the daemon can stream further user messages
81
+ // mid-conversation. Paired with `--output-format stream-json` so the
82
+ // adapter parses structured events (see claude-stream.ts).
83
+ const args = ['-p', '--input-format', 'stream-json', '--output-format', 'stream-json', '--verbose'];
84
+ // `--include-partial-messages` lands richer streaming events but only
85
+ // exists in newer Claude Code builds. Older installs reject it with
86
+ // "unknown option" and exit 1, killing the chat. Gate on the probe.
87
+ if (caps.partialMessages) {
88
+ args.push('--include-partial-messages');
89
+ }
90
+ if (options.model && options.model !== 'default') {
91
+ args.push('--model', options.model);
92
+ }
93
+ // `--effort` is newer than `--model`, so it gets the same probe gate as
94
+ // `--include-partial-messages`: an older build rejects an unknown option
95
+ // with exit 1, which kills the chat rather than degrading it.
96
+ if (caps.effort
97
+ && typeof options.reasoning === 'string'
98
+ && CLAUDE_EFFORT_LEVELS.has(options.reasoning)) {
99
+ args.push('--effort', options.reasoning);
100
+ }
101
+ const dirs = (extraAllowedDirs || []).filter((d) => typeof d === 'string' && d.length > 0);
102
+ // `--add-dir` is older but still gate it for symmetry — old/forked
103
+ // builds may lack it.
104
+ if (dirs.length > 0 && caps.addDir !== false) {
105
+ args.push('--add-dir', ...dirs);
106
+ }
107
+ // Continue Claude's own CLI session across turns so it keeps its
108
+ // working memory (files read, edits made, tool history) instead of
109
+ // re-deriving everything from the rendered transcript each turn.
110
+ // `--resume <id>` continues a stored session; `--session-id <uuid>`
111
+ // starts a new one with an id the daemon controls and persists.
112
+ if (typeof runtimeContext.resumeSessionId === 'string' && runtimeContext.resumeSessionId) {
113
+ args.push('--resume', runtimeContext.resumeSessionId);
114
+ }
115
+ else if (typeof runtimeContext.newSessionId === 'string' && runtimeContext.newSessionId) {
116
+ args.push('--session-id', runtimeContext.newSessionId);
117
+ }
118
+ args.push('--permission-mode', 'bypassPermissions');
119
+ return args;
120
+ },
121
+ promptViaStdin: true,
122
+ promptInputFormat: 'stream-json',
123
+ streamFormat: 'claude-stream-json',
124
+ // Claude Code auto-loads `.mcp.json` from the project cwd at spawn,
125
+ // so the daemon writes the user's external MCP servers there before
126
+ // launching (server.ts handles the cwd guard).
127
+ externalMcpInjection: 'claude-mcp-json',
128
+ resumesSessionViaCli: true,
129
+ };
130
+ //# sourceMappingURL=claude.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"claude.js","sourceRoot":"","sources":["../../src/defs/claude.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,26 @@
1
+ export declare const codebuddyAgentDef: {
2
+ id: string;
3
+ name: string;
4
+ bin: string;
5
+ fallbackBins: string[];
6
+ versionArgs: string[];
7
+ helpArgs: string[];
8
+ capabilityFlags: {
9
+ '--include-partial-messages': string;
10
+ '--add-dir': string;
11
+ };
12
+ fallbackModels: import("../types.js").RuntimeModelOption[];
13
+ reasoningOptions: {
14
+ id: string;
15
+ label: string;
16
+ }[];
17
+ buildArgs: (_prompt: string, _imagePaths: string[], extraAllowedDirs?: string[] | undefined, options?: import("../types.js").RuntimeBuildOptions | undefined, runtimeContext?: import("../types.js").RuntimeContext | undefined) => string[];
18
+ promptViaStdin: true;
19
+ promptInputFormat: "stream-json";
20
+ streamFormat: string;
21
+ externalMcpInjection: "claude-mcp-json";
22
+ resumesSessionViaCli: true;
23
+ installUrl: string;
24
+ docsUrl: string;
25
+ };
26
+ //# sourceMappingURL=codebuddy.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"codebuddy.d.ts","sourceRoot":"","sources":["../../src/defs/codebuddy.ts"],"names":[],"mappings":"AA+CA,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;CAgFH,CAAC"}
@@ -0,0 +1,124 @@
1
+ /** Ported verbatim from OD's `apps/daemon/src/runtimes/defs/codebuddy.ts` (import path adjusted only). See `source-map.md`. */
2
+ import { agentCapabilities } from '../capabilities.js';
3
+ import { DEFAULT_MODEL_OPTION } from './shared.js';
4
+ // Codebuddy Code (https://www.codebuddy.cn) — a Claude Code–compatible CLI
5
+ // that ships as `codebuddy` (short alias: `cbc`). The argument surface is a
6
+ // superset of Claude Code's `-p` mode: `--output-format stream-json`,
7
+ // `--input-format stream-json`, `--permission-mode`, `--session-id`,
8
+ // `--resume`, `--add-dir`, `--include-partial-messages`, and `--model` all
9
+ // work identically. The stream wire format matches Claude Code's, so we reuse
10
+ // `streamFormat: 'claude-stream-json'`.
11
+ //
12
+ // Key differences from the claude adapter:
13
+ // • Binary names: `codebuddy` / `cbc` (not `claude` / `openclaude`).
14
+ // • `--effort` flag for reasoning control (minimal/low/medium/high/xhigh/max).
15
+ // • Richer multi-provider model list (GLM, Kimi, MiniMax, Claude, GPT,
16
+ // Gemini, DeepSeek) exposed through `--model <id>`.
17
+ // • `--mcp-config <fileOrString>` for MCP server injection (the daemon can
18
+ // also write `.mcp.json` to the project cwd, same as Claude Code).
19
+ const CODEBUDDY_FALLBACK_MODELS = [
20
+ DEFAULT_MODEL_OPTION,
21
+ // GLM family (Zhipu AI)
22
+ { id: 'glm-5.1-ioa', label: 'glm-5.1-ioa' },
23
+ { id: 'glm-5v-turbo-ioa', label: 'glm-5v-turbo-ioa' },
24
+ // Claude family (via Codebuddy proxy)
25
+ { id: 'claude-opus-4.8-1m', label: 'claude-opus-4.8-1m' },
26
+ { id: 'claude-opus-4.8', label: 'claude-opus-4.8' },
27
+ { id: 'claude-sonnet-4.6-1m', label: 'claude-sonnet-4.6-1m' },
28
+ { id: 'claude-haiku-4.5', label: 'claude-haiku-4.5' },
29
+ // GPT family
30
+ { id: 'gpt-5.5', label: 'gpt-5.5' },
31
+ { id: 'gpt-5.4', label: 'gpt-5.4' },
32
+ { id: 'gpt-5.3-codex', label: 'gpt-5.3-codex' },
33
+ // Gemini family
34
+ { id: 'gemini-3.5-flash', label: 'gemini-3.5-flash' },
35
+ // DeepSeek family
36
+ { id: 'deepseek-v4-pro-ioa', label: 'deepseek-v4-pro-ioa' },
37
+ { id: 'deepseek-v4-flash-ioa', label: 'deepseek-v4-flash-ioa' },
38
+ // Kimi family
39
+ { id: 'kimi-k2.6-ioa', label: 'kimi-k2.6-ioa' },
40
+ // MiniMax family
41
+ { id: 'minimax-m3-ioa', label: 'minimax-m3-ioa' },
42
+ { id: 'minimax-m2.7-ioa', label: 'minimax-m2.7-ioa' },
43
+ ];
44
+ export const codebuddyAgentDef = {
45
+ id: 'codebuddy',
46
+ name: 'Codebuddy Code',
47
+ bin: 'codebuddy',
48
+ // `cbc` is the short alias shipped alongside `codebuddy`. Tried as a
49
+ // fallback when the primary binary isn't on PATH.
50
+ fallbackBins: ['cbc'],
51
+ versionArgs: ['--version'],
52
+ helpArgs: ['-p', '--help'],
53
+ capabilityFlags: {
54
+ // Same probing strategy as the claude adapter: these flags live under
55
+ // the `-p` subcommand help, so we probe `codebuddy -p --help`.
56
+ '--include-partial-messages': 'partialMessages',
57
+ '--add-dir': 'addDir',
58
+ },
59
+ fallbackModels: CODEBUDDY_FALLBACK_MODELS,
60
+ // Codebuddy CLI does not ship a `models` subcommand; the supported model
61
+ // ids are advertised in `--help` output. Fallback list above covers the
62
+ // current set; users can type custom ids through the "Custom" input.
63
+ // Codebuddy CLI --effort supports exactly 6 levels:
64
+ // minimal, low, medium, high, xhigh, max
65
+ // We additionally expose a synthetic `default` sentinel as the FIRST
66
+ // option so the web pickers (AvatarMenu / SettingsDialog) — which
67
+ // fall back to `reasoningOptions[0].id` when nothing is saved yet —
68
+ // surface a real "use Codebuddy's own default" choice that round-trips
69
+ // to "no --effort flag". `buildArgs` treats `default` as omit.
70
+ reasoningOptions: [
71
+ { id: 'default', label: 'Default' },
72
+ { id: 'minimal', label: 'Minimal' },
73
+ { id: 'low', label: 'Low' },
74
+ { id: 'medium', label: 'Medium' },
75
+ { id: 'high', label: 'High' },
76
+ { id: 'xhigh', label: 'XHigh' },
77
+ { id: 'max', label: 'Max' },
78
+ ],
79
+ buildArgs: (_prompt, _imagePaths, extraAllowedDirs = [], options = {}, runtimeContext = {}) => {
80
+ const caps = agentCapabilities.get('codebuddy') || {};
81
+ // Same stdin strategy as Claude Code: `--input-format stream-json`
82
+ // enables JSONL stdin so the daemon can answer AskUserQuestion tool
83
+ // calls. `--output-format stream-json` gives us SSE-style events.
84
+ const args = ['-p', '--input-format', 'stream-json', '--output-format', 'stream-json', '--verbose'];
85
+ // `--include-partial-messages` lands richer streaming deltas. Gate on
86
+ // the help-text probe to avoid "unknown option" errors on older builds.
87
+ if (caps.partialMessages) {
88
+ args.push('--include-partial-messages');
89
+ }
90
+ if (options.model && options.model !== 'default') {
91
+ args.push('--model', options.model);
92
+ }
93
+ // Reasoning effort control — Codebuddy supports `--effort <level>`.
94
+ // The `default` sentinel means "let Codebuddy pick" — omit the flag.
95
+ if (options.reasoning && options.reasoning !== 'default') {
96
+ args.push('--effort', options.reasoning);
97
+ }
98
+ const dirs = (extraAllowedDirs || []).filter((d) => typeof d === 'string' && d.length > 0);
99
+ if (dirs.length > 0 && caps.addDir !== false) {
100
+ args.push('--add-dir', ...dirs);
101
+ }
102
+ // Session continuity: Codebuddy supports `--resume <id>` and
103
+ // `--session-id <uuid>` identically to Claude Code.
104
+ if (typeof runtimeContext.resumeSessionId === 'string' && runtimeContext.resumeSessionId) {
105
+ args.push('--resume', runtimeContext.resumeSessionId);
106
+ }
107
+ else if (typeof runtimeContext.newSessionId === 'string' && runtimeContext.newSessionId) {
108
+ args.push('--session-id', runtimeContext.newSessionId);
109
+ }
110
+ args.push('--permission-mode', 'bypassPermissions');
111
+ return args;
112
+ },
113
+ promptViaStdin: true,
114
+ promptInputFormat: 'stream-json',
115
+ streamFormat: 'claude-stream-json',
116
+ // Codebuddy CLI auto-loads `.mcp.json` from the project cwd at spawn
117
+ // (same behavior as Claude Code), so the daemon can write the user's
118
+ // external MCP servers there before launching.
119
+ externalMcpInjection: 'claude-mcp-json',
120
+ resumesSessionViaCli: true,
121
+ installUrl: 'https://www.codebuddy.cn',
122
+ docsUrl: 'https://www.codebuddy.cn/docs/workbuddy/Overview',
123
+ };
124
+ //# sourceMappingURL=codebuddy.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"codebuddy.js","sourceRoot":"","sources":["../../src/defs/codebuddy.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,30 @@
1
+ import type { RuntimeModelOption } from '../types.js';
2
+ export declare function parseCodexDebugModels(stdout: string): RuntimeModelOption[] | null;
3
+ export declare function codexNeedsDangerFullAccessSandbox(platform?: NodeJS.Platform, env?: NodeJS.ProcessEnv): boolean;
4
+ export declare const codexAgentDef: {
5
+ id: string;
6
+ name: string;
7
+ bin: string;
8
+ versionArgs: string[];
9
+ listModels: {
10
+ args: string[];
11
+ parse: typeof parseCodexDebugModels;
12
+ timeoutMs: number;
13
+ };
14
+ authProbe: {
15
+ args: string[];
16
+ timeoutMs: number;
17
+ };
18
+ fallbackModels: RuntimeModelOption[];
19
+ reasoningOptions: {
20
+ id: string;
21
+ label: string;
22
+ }[];
23
+ buildArgs: (_prompt: string, _imagePaths: string[], extraAllowedDirs?: string[] | undefined, options?: import("../types.js").RuntimeBuildOptions | undefined, runtimeContext?: import("../types.js").RuntimeContext | undefined) => string[];
24
+ promptViaStdin: true;
25
+ resumesSessionViaCli: true;
26
+ capturesSessionIdFromStream: true;
27
+ streamFormat: string;
28
+ eventParser: string;
29
+ };
30
+ //# sourceMappingURL=codex.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"codex.d.ts","sourceRoot":"","sources":["../../src/defs/codex.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AAGtD,wBAAgB,qBAAqB,CAAC,MAAM,EAAE,MAAM,GAAG,kBAAkB,EAAE,GAAG,IAAI,CAmCjF;AAED,wBAAgB,iCAAiC,CAC/C,QAAQ,GAAE,MAAM,CAAC,QAA2B,EAC5C,GAAG,GAAE,MAAM,CAAC,UAAwB,GACnC,OAAO,CAST;AAED,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;CAoJC,CAAC"}
@@ -0,0 +1,196 @@
1
+ /**
2
+ * Ported from OD's `apps/daemon/src/runtimes/defs/codex.ts` with one
3
+ * de-branding change: the two operator-override env vars (originally
4
+ * product-prefixed) are renamed to `CODEX_SANDBOX_MODE` /
5
+ * `CODEX_DISABLE_PLUGINS` — these are already codex-adapter-scoped
6
+ * operator knobs, so no product namespacing is needed. See
7
+ * `source-map.md` for the exact original names.
8
+ */
9
+ import { DEFAULT_MODEL_OPTION, clampCodexReasoning } from './shared.js';
10
+ export function parseCodexDebugModels(stdout) {
11
+ let parsed;
12
+ try {
13
+ parsed = JSON.parse(String(stdout || ''));
14
+ }
15
+ catch {
16
+ return null;
17
+ }
18
+ if (!parsed || typeof parsed !== 'object')
19
+ return null;
20
+ const models = parsed.models;
21
+ if (!Array.isArray(models))
22
+ return null;
23
+ const out = [DEFAULT_MODEL_OPTION];
24
+ const seen = new Set([DEFAULT_MODEL_OPTION.id]);
25
+ for (const raw of models) {
26
+ if (!raw || typeof raw !== 'object')
27
+ continue;
28
+ const entry = raw;
29
+ if (entry.visibility === 'hidden')
30
+ continue;
31
+ const id = typeof entry.slug === 'string' ? entry.slug.trim() : typeof entry.id === 'string' ? entry.id.trim() : '';
32
+ if (!id || seen.has(id))
33
+ continue;
34
+ seen.add(id);
35
+ const label = typeof entry.display_name === 'string' && entry.display_name.trim()
36
+ ? entry.display_name.trim()
37
+ : typeof entry.name === 'string' && entry.name.trim()
38
+ ? entry.name.trim()
39
+ : id;
40
+ out.push({ id, label });
41
+ }
42
+ return out.length > 1 ? out : null;
43
+ }
44
+ export function codexNeedsDangerFullAccessSandbox(platform = process.platform, env = process.env) {
45
+ // Operator override for deployments where Codex cannot create its
46
+ // workspace-write sandbox, for example unprivileged Linux containers.
47
+ // Only danger-full-access is accepted; unknown values keep the default path.
48
+ if (env.CODEX_SANDBOX_MODE?.trim() === 'danger-full-access')
49
+ return true;
50
+ if (platform === 'win32')
51
+ return true;
52
+ // WSL reports `linux` but Codex still hits the Windows read-only
53
+ // workspace-write sandbox path when launched from there.
54
+ return Boolean(env.WSL_DISTRO_NAME?.trim());
55
+ }
56
+ export const codexAgentDef = {
57
+ id: 'codex',
58
+ name: 'Codex CLI',
59
+ bin: 'codex',
60
+ versionArgs: ['--version'],
61
+ // Codex exposes its installed model catalog through `debug models` on
62
+ // recent CLIs. Older builds fall back to these static hints.
63
+ listModels: {
64
+ args: ['debug', 'models'],
65
+ parse: parseCodexDebugModels,
66
+ timeoutMs: 5000,
67
+ },
68
+ authProbe: {
69
+ args: ['login', 'status'],
70
+ timeoutMs: 5000,
71
+ },
72
+ fallbackModels: [
73
+ DEFAULT_MODEL_OPTION,
74
+ { id: 'gpt-5.5', label: 'gpt-5.5' },
75
+ { id: 'gpt-5.4', label: 'gpt-5.4' },
76
+ { id: 'gpt-5.4-mini', label: 'gpt-5.4-mini' },
77
+ { id: 'gpt-5.3-codex', label: 'gpt-5.3-codex' },
78
+ { id: 'gpt-5.1', label: 'gpt-5.1' },
79
+ { id: 'gpt-5.1-codex-mini', label: 'gpt-5.1-codex-mini' },
80
+ { id: 'gpt-5-codex', label: 'gpt-5-codex' },
81
+ { id: 'gpt-5', label: 'gpt-5' },
82
+ { id: 'o3', label: 'o3' },
83
+ { id: 'o4-mini', label: 'o4-mini' },
84
+ ],
85
+ reasoningOptions: [
86
+ { id: 'default', label: 'Default' },
87
+ { id: 'none', label: 'None' },
88
+ { id: 'minimal', label: 'Minimal' },
89
+ { id: 'low', label: 'Low' },
90
+ { id: 'medium', label: 'Medium' },
91
+ { id: 'high', label: 'High' },
92
+ { id: 'xhigh', label: 'XHigh' },
93
+ ],
94
+ // Prompt is delivered via stdin pipe (gated by `promptViaStdin: true`
95
+ // below) to avoid Windows `spawn ENAMETOOLONG` while keeping Codex on
96
+ // its structured JSON stream. Recent Codex CLI versions reject a bare
97
+ // `-` argv sentinel — passing both the pipe and `-` produces
98
+ // `error: unexpected argument '-' found` and the agent exits with
99
+ // code 2 before any prompt is read. The pipe alone is sufficient for
100
+ // stdin delivery.
101
+ buildArgs: (_prompt, _imagePaths, extraAllowedDirs = [], options = {}, runtimeContext = {}) => {
102
+ // Codex CLI's `workspace-write` sandbox blocks shell invocations on
103
+ // Windows ("powershell.exe ... rejected: blocked by policy"),
104
+ // because Codex has no working OS-level sandbox on Windows and falls
105
+ // back to a coarse policy that rejects any shell. macOS (Seatbelt)
106
+ // and Linux (Landlock+seccomp) keep workspace-write because their
107
+ // sandbox enforcement permits shell while restricting writes.
108
+ const needsDangerFullAccess = codexNeedsDangerFullAccessSandbox();
109
+ // Capture-style resume: when the caller has a stored Codex thread id
110
+ // for this conversation it asks the CLI to continue that session
111
+ // with `exec resume <thread_id>` instead of `exec` (a fresh
112
+ // session). Codex mints its own id, so the caller does not specify
113
+ // one — it captures the id from the create turn's
114
+ // `thread.started.thread_id` event (see the json-event-stream
115
+ // `codex` parser) and replays it here on resume.
116
+ const resumeSessionId = typeof runtimeContext.resumeSessionId === 'string' &&
117
+ runtimeContext.resumeSessionId.length > 0
118
+ ? runtimeContext.resumeSessionId
119
+ : null;
120
+ // `codex exec resume` rejects `--sandbox` (only valid on a fresh
121
+ // `exec`); the sandbox mode must be passed as a `-c sandbox_mode=...`
122
+ // config override. We mirror the exact same effective sandbox policy as
123
+ // the create turn so Codex's per-turn `turn_context` block byte-matches
124
+ // across turns and does not break the upstream prefix cache the resume
125
+ // is meant to reuse.
126
+ const sandboxArgs = needsDangerFullAccess
127
+ ? resumeSessionId
128
+ ? ['-c', 'sandbox_mode="danger-full-access"']
129
+ : ['--sandbox', 'danger-full-access']
130
+ : resumeSessionId
131
+ ? [
132
+ '-c',
133
+ 'sandbox_mode="workspace-write"',
134
+ '-c',
135
+ 'sandbox_workspace_write.network_access=true',
136
+ ]
137
+ : [
138
+ '--sandbox',
139
+ 'workspace-write',
140
+ '-c',
141
+ 'sandbox_workspace_write.network_access=true',
142
+ ];
143
+ const args = resumeSessionId
144
+ ? ['exec', 'resume', '--json', '--skip-git-repo-check', ...sandboxArgs]
145
+ : ['exec', '--json', '--skip-git-repo-check', ...sandboxArgs];
146
+ if (process.env.CODEX_DISABLE_PLUGINS === '1') {
147
+ args.push('--disable', 'plugins');
148
+ }
149
+ // `-C <cwd>` and `--add-dir <dir>` are CREATE-only flags: `codex exec
150
+ // resume` rejects both (`error: unexpected argument '-C' found`), so
151
+ // appending them on a resume turn would make the follow-up turn die
152
+ // before the first event. The caller already spawns the child with
153
+ // `cwd: effectiveCwd`, and resuming by explicit SESSION_ID does not
154
+ // use codex's cwd-based session filtering, so the resumed turn still
155
+ // runs in the right workspace without `-C`. The extra writable dirs
156
+ // were granted when the session was created and are carried by the
157
+ // resumed session.
158
+ if (!resumeSessionId) {
159
+ if (runtimeContext.cwd) {
160
+ args.push('-C', runtimeContext.cwd);
161
+ }
162
+ const dirs = (extraAllowedDirs || []).filter((d) => typeof d === 'string' && d.length > 0);
163
+ for (const d of dirs) {
164
+ args.push('--add-dir', d);
165
+ }
166
+ }
167
+ if (options.model && options.model !== 'default') {
168
+ args.push('--model', options.model);
169
+ }
170
+ if (options.reasoning && options.reasoning !== 'default') {
171
+ const effort = clampCodexReasoning(options.model, options.reasoning);
172
+ // Codex accepts `-c key=value` config overrides; reasoning effort
173
+ // is exposed as `model_reasoning_effort`.
174
+ args.push('-c', `model_reasoning_effort="${effort}"`);
175
+ }
176
+ // The resume thread id is the positional SESSION_ID argument of
177
+ // `codex exec resume`; it must come after the flags. The prompt is
178
+ // delivered via stdin (promptViaStdin), so the thread id is the final
179
+ // argv entry.
180
+ if (resumeSessionId) {
181
+ args.push(resumeSessionId);
182
+ }
183
+ return args;
184
+ },
185
+ promptViaStdin: true,
186
+ // Codex's CLI carries its own session across spawns: on a follow-up turn
187
+ // the caller resumes the captured thread id instead of re-sending the
188
+ // flattened transcript, so the first upstream call reuses the warm prefix
189
+ // cache. Capture-style: the resume handle is the `thread.started.thread_id`
190
+ // captured from the stream, not a caller-minted id.
191
+ resumesSessionViaCli: true,
192
+ capturesSessionIdFromStream: true,
193
+ streamFormat: 'json-event-stream',
194
+ eventParser: 'codex',
195
+ };
196
+ //# sourceMappingURL=codex.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"codex.js","sourceRoot":"","sources":["../../src/defs/codex.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,12 @@
1
+ export declare const copilotAgentDef: {
2
+ id: string;
3
+ name: string;
4
+ bin: string;
5
+ versionArgs: string[];
6
+ fallbackModels: import("../types.js").RuntimeModelOption[];
7
+ buildArgs: (_prompt: string, _imagePaths: string[], extraAllowedDirs?: string[] | undefined, options?: import("../types.js").RuntimeBuildOptions | undefined) => string[];
8
+ promptViaStdin: true;
9
+ streamFormat: string;
10
+ inactivityTimeoutMs: number;
11
+ };
12
+ //# sourceMappingURL=copilot.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"copilot.d.ts","sourceRoot":"","sources":["../../src/defs/copilot.ts"],"names":[],"mappings":"AAaA,eAAO,MAAM,eAAe;;;;;;;;;;CA4ED,CAAC"}