indusagi 0.12.31 → 0.12.33

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 (1127) hide show
  1. package/CHANGELOG.md +329 -0
  2. package/CREDITS.md +22 -0
  3. package/NOTICE +17 -0
  4. package/README.md +47 -388
  5. package/dist/agent.js +27512 -0
  6. package/dist/ai.js +19758 -0
  7. package/dist/capabilities.js +2663 -0
  8. package/dist/cli.js +10399 -0
  9. package/dist/connectors-saas.js +3289 -0
  10. package/dist/index.js +15279 -0
  11. package/dist/interop.js +3181 -0
  12. package/dist/knowledge/guides/authoring-an-agent.md +53 -0
  13. package/dist/knowledge/guides/choosing-tools.md +49 -0
  14. package/dist/knowledge/guides/model-selection.md +51 -0
  15. package/dist/knowledge/guides/writing-system-prompts.md +53 -0
  16. package/dist/knowledge/index.ts +19 -0
  17. package/dist/knowledge/loader.ts +200 -0
  18. package/dist/knowledge/manifest.json +29 -0
  19. package/dist/llmgateway.js +3209 -0
  20. package/dist/mcp.js +1732 -0
  21. package/dist/memory.js +0 -0
  22. package/dist/react-host/index.js +101 -0
  23. package/dist/react-host/ink.js +97 -0
  24. package/dist/react-host/jsx-runtime.js +95 -0
  25. package/dist/react-ink.js +2475 -0
  26. package/dist/runtime.js +4387 -0
  27. package/dist/shell-app.js +10968 -0
  28. package/dist/smithy.js +7932 -0
  29. package/dist/swarm.js +8717 -0
  30. package/dist/tracing.js +724 -0
  31. package/dist/tui.js +2213 -0
  32. package/dist/types/capabilities/backends/index.d.ts +10 -0
  33. package/dist/types/capabilities/backends/node-backends.d.ts +28 -0
  34. package/dist/types/capabilities/capabilities.test.d.ts +14 -0
  35. package/dist/types/capabilities/files/diff.d.ts +49 -0
  36. package/dist/types/capabilities/files/edit.d.ts +21 -0
  37. package/dist/types/capabilities/files/ls.d.ts +16 -0
  38. package/dist/types/capabilities/files/read.d.ts +15 -0
  39. package/dist/types/capabilities/files/write.d.ts +16 -0
  40. package/dist/types/capabilities/index.d.ts +29 -0
  41. package/dist/types/capabilities/kernel/backends.d.ts +119 -0
  42. package/dist/types/capabilities/kernel/context.d.ts +48 -0
  43. package/dist/types/capabilities/kernel/index.d.ts +24 -0
  44. package/dist/types/capabilities/kernel/output.d.ts +40 -0
  45. package/dist/types/capabilities/kernel/registry.d.ts +61 -0
  46. package/dist/types/capabilities/kernel/spec.d.ts +113 -0
  47. package/dist/types/capabilities/planning/todo.d.ts +62 -0
  48. package/dist/types/capabilities/registry.d.ts +44 -0
  49. package/dist/types/capabilities/search/find.d.ts +33 -0
  50. package/dist/types/capabilities/search/grep.d.ts +30 -0
  51. package/dist/types/capabilities/shell/bash.d.ts +18 -0
  52. package/dist/types/capabilities/shell/process.d.ts +33 -0
  53. package/dist/types/capabilities/web/webfetch.d.ts +25 -0
  54. package/dist/types/capabilities/web/websearch.d.ts +23 -0
  55. package/dist/types/connectors-saas/connectors-saas.test.d.ts +12 -0
  56. package/dist/types/connectors-saas/index.d.ts +16 -0
  57. package/dist/types/connectors-saas/saas/adapter/composio-backend.d.ts +60 -0
  58. package/dist/types/connectors-saas/saas/control/connect.d.ts +114 -0
  59. package/dist/types/connectors-saas/saas/control/tools.d.ts +67 -0
  60. package/dist/types/connectors-saas/saas/core/builder.d.ts +86 -0
  61. package/dist/types/connectors-saas/saas/core/cache.d.ts +53 -0
  62. package/dist/types/connectors-saas/saas/core/index.d.ts +14 -0
  63. package/dist/types/connectors-saas/saas/core/port.d.ts +157 -0
  64. package/dist/types/connectors-saas/saas/core/scope-planner.d.ts +74 -0
  65. package/dist/types/connectors-saas/saas/gateway.d.ts +133 -0
  66. package/dist/types/connectors-saas/saas/render/format.d.ts +54 -0
  67. package/dist/types/connectors-saas/saas/render/index.d.ts +19 -0
  68. package/dist/types/connectors-saas/saas/render/summarizers.d.ts +58 -0
  69. package/dist/types/facade/agent.d.ts +1 -0
  70. package/dist/types/facade/ai.d.ts +1 -0
  71. package/dist/types/facade/bot/actions/bash.d.ts +56 -0
  72. package/dist/types/facade/bot/actions/composio/accounts.d.ts +22 -0
  73. package/dist/types/facade/bot/actions/composio/client.d.ts +39 -0
  74. package/dist/types/facade/bot/actions/composio/connect.d.ts +19 -0
  75. package/dist/types/facade/bot/actions/composio/enable.d.ts +25 -0
  76. package/dist/types/facade/bot/actions/composio/execute.d.ts +26 -0
  77. package/dist/types/facade/bot/actions/composio/helpers.d.ts +16 -0
  78. package/dist/types/facade/bot/actions/composio/index.d.ts +9 -0
  79. package/dist/types/facade/bot/actions/composio/provider.d.ts +8 -0
  80. package/dist/types/facade/bot/actions/composio/toolkits.d.ts +22 -0
  81. package/dist/types/facade/bot/actions/composio/tools.d.ts +28 -0
  82. package/dist/types/facade/bot/actions/composio/types.d.ts +137 -0
  83. package/dist/types/facade/bot/actions/crew/activity-tracker.d.ts +65 -0
  84. package/dist/types/facade/bot/actions/crew/cleanup.d.ts +50 -0
  85. package/dist/types/facade/bot/actions/crew/fs-lock.d.ts +11 -0
  86. package/dist/types/facade/bot/actions/crew/index.d.ts +11 -0
  87. package/dist/types/facade/bot/actions/crew/mailbox.d.ts +20 -0
  88. package/dist/types/facade/bot/actions/crew/model-policy.d.ts +22 -0
  89. package/dist/types/facade/bot/actions/crew/names.d.ts +27 -0
  90. package/dist/types/facade/bot/actions/crew/protocol.d.ts +74 -0
  91. package/dist/types/facade/bot/actions/crew/task-store.d.ts +88 -0
  92. package/dist/types/facade/bot/actions/crew/team-attach-claim.d.ts +35 -0
  93. package/dist/types/facade/bot/actions/crew/team-config.d.ts +54 -0
  94. package/dist/types/facade/bot/actions/crew/worktree.d.ts +39 -0
  95. package/dist/types/facade/bot/actions/edit-diff.d.ts +66 -0
  96. package/dist/types/facade/bot/actions/edit.d.ts +41 -0
  97. package/dist/types/facade/bot/actions/find.d.ts +25 -0
  98. package/dist/types/facade/bot/actions/grep.d.ts +43 -0
  99. package/dist/types/facade/bot/actions/index.d.ts +300 -0
  100. package/dist/types/facade/bot/actions/kit/hook-runner.d.ts +12 -0
  101. package/dist/types/facade/bot/actions/kit/image-resize.d.ts +19 -0
  102. package/dist/types/facade/bot/actions/kit/mime.d.ts +1 -0
  103. package/dist/types/facade/bot/actions/kit/shell.d.ts +12 -0
  104. package/dist/types/facade/bot/actions/ls.d.ts +41 -0
  105. package/dist/types/facade/bot/actions/path-utils.d.ts +8 -0
  106. package/dist/types/facade/bot/actions/process-controller.d.ts +14 -0
  107. package/dist/types/facade/bot/actions/process-manager.d.ts +59 -0
  108. package/dist/types/facade/bot/actions/process-types.d.ts +73 -0
  109. package/dist/types/facade/bot/actions/process.d.ts +37 -0
  110. package/dist/types/facade/bot/actions/read.d.ts +36 -0
  111. package/dist/types/facade/bot/actions/registry.d.ts +20 -0
  112. package/dist/types/facade/bot/actions/todo-store.d.ts +76 -0
  113. package/dist/types/facade/bot/actions/todo-types.d.ts +72 -0
  114. package/dist/types/facade/bot/actions/todo.d.ts +76 -0
  115. package/dist/types/facade/bot/actions/truncate.d.ts +78 -0
  116. package/dist/types/facade/bot/actions/webfetch.d.ts +35 -0
  117. package/dist/types/facade/bot/actions/websearch.d.ts +34 -0
  118. package/dist/types/facade/bot/actions/write.d.ts +30 -0
  119. package/dist/types/facade/bot/agent-loop.d.ts +20 -0
  120. package/dist/types/facade/bot/agent.d.ts +132 -0
  121. package/dist/types/facade/bot/error-handler.d.ts +7 -0
  122. package/dist/types/facade/bot/event-bus.d.ts +8 -0
  123. package/dist/types/facade/bot/index.d.ts +7 -0
  124. package/dist/types/facade/bot/messages.d.ts +83 -0
  125. package/dist/types/facade/bot/proxy.d.ts +70 -0
  126. package/dist/types/facade/bot/session-manager.d.ts +409 -0
  127. package/dist/types/facade/bot/state-manager.d.ts +21 -0
  128. package/dist/types/facade/bot/telemetry.d.ts +6 -0
  129. package/dist/types/facade/bot/types.d.ts +207 -0
  130. package/dist/types/facade/mcp-core/client-pool.d.ts +105 -0
  131. package/dist/types/facade/mcp-core/client.d.ts +157 -0
  132. package/dist/types/facade/mcp-core/config.d.ts +60 -0
  133. package/dist/types/facade/mcp-core/errors.d.ts +103 -0
  134. package/dist/types/facade/mcp-core/index.d.ts +55 -0
  135. package/dist/types/facade/mcp-core/schema-converter.d.ts +67 -0
  136. package/dist/types/facade/mcp-core/server.d.ts +110 -0
  137. package/dist/types/facade/mcp-core/tool-factory.d.ts +62 -0
  138. package/dist/types/facade/mcp-core/types.d.ts +288 -0
  139. package/dist/types/facade/mcp.d.ts +1 -0
  140. package/dist/types/facade/memory.d.ts +1 -0
  141. package/dist/types/facade/ml/adapters/amazon-bedrock.d.ts +32 -0
  142. package/dist/types/facade/ml/adapters/anthropic.d.ts +61 -0
  143. package/dist/types/facade/ml/adapters/azure-openai-responses.d.ts +14 -0
  144. package/dist/types/facade/ml/adapters/google-shared.d.ts +99 -0
  145. package/dist/types/facade/ml/adapters/google-vertex.d.ts +14 -0
  146. package/dist/types/facade/ml/adapters/google.d.ts +15 -0
  147. package/dist/types/facade/ml/adapters/kimi.d.ts +21 -0
  148. package/dist/types/facade/ml/adapters/mock.d.ts +9 -0
  149. package/dist/types/facade/ml/adapters/nvidia.d.ts +12 -0
  150. package/dist/types/facade/ml/adapters/openai-codex-responses.d.ts +8 -0
  151. package/dist/types/facade/ml/adapters/openai-completions.d.ts +24 -0
  152. package/dist/types/facade/ml/adapters/openai-responses-shared.d.ts +25 -0
  153. package/dist/types/facade/ml/adapters/openai-responses.d.ts +12 -0
  154. package/dist/types/facade/ml/adapters/openai-scaffold.d.ts +3 -0
  155. package/dist/types/facade/ml/adapters/register-builtins.d.ts +2 -0
  156. package/dist/types/facade/ml/adapters/simple-options.d.ts +26 -0
  157. package/dist/types/facade/ml/adapters/transform-messages.d.ts +23 -0
  158. package/dist/types/facade/ml/api-registry.d.ts +49 -0
  159. package/dist/types/facade/ml/cli.d.ts +2 -0
  160. package/dist/types/facade/ml/env-api-keys.d.ts +19 -0
  161. package/dist/types/facade/ml/index.d.ts +27 -0
  162. package/dist/types/facade/ml/kit/auth/anthropic.d.ts +17 -0
  163. package/dist/types/facade/ml/kit/auth/github-copilot.d.ts +22 -0
  164. package/dist/types/facade/ml/kit/auth/index.d.ts +50 -0
  165. package/dist/types/facade/ml/kit/auth/kimi.d.ts +23 -0
  166. package/dist/types/facade/ml/kit/auth/oauth-page.d.ts +2 -0
  167. package/dist/types/facade/ml/kit/auth/openai-codex.d.ts +36 -0
  168. package/dist/types/facade/ml/kit/auth/pkce.d.ts +12 -0
  169. package/dist/types/facade/ml/kit/auth/types.d.ts +67 -0
  170. package/dist/types/facade/ml/kit/base-stream-handler.d.ts +30 -0
  171. package/dist/types/facade/ml/kit/event-stream.d.ts +63 -0
  172. package/dist/types/facade/ml/kit/index.d.ts +14 -0
  173. package/dist/types/facade/ml/kit/json-parse.d.ts +23 -0
  174. package/dist/types/facade/ml/kit/message-transform.d.ts +32 -0
  175. package/dist/types/facade/ml/kit/output-factory.d.ts +8 -0
  176. package/dist/types/facade/ml/kit/overflow.d.ts +9 -0
  177. package/dist/types/facade/ml/kit/provider-adapter.d.ts +56 -0
  178. package/dist/types/facade/ml/kit/provider-client-builder.d.ts +36 -0
  179. package/dist/types/facade/ml/kit/provider-consolidation.d.ts +3 -0
  180. package/dist/types/facade/ml/kit/provider-constants.d.ts +34 -0
  181. package/dist/types/facade/ml/kit/provider-errors.d.ts +52 -0
  182. package/dist/types/facade/ml/kit/sanitize-unicode.d.ts +2 -0
  183. package/dist/types/facade/ml/kit/stream-event-helper.d.ts +38 -0
  184. package/dist/types/facade/ml/kit/stream-handler-types.d.ts +46 -0
  185. package/dist/types/facade/ml/kit/streaming-state-manager.d.ts +42 -0
  186. package/dist/types/facade/ml/kit/tool-converter.d.ts +49 -0
  187. package/dist/types/facade/ml/kit/typebox-helpers.d.ts +24 -0
  188. package/dist/types/facade/ml/kit/validation.d.ts +26 -0
  189. package/dist/types/facade/ml/models.d.ts +41 -0
  190. package/dist/types/facade/ml/models.generated.d.ts +12261 -0
  191. package/dist/types/facade/ml/stream.d.ts +27 -0
  192. package/dist/types/facade/ml/types.d.ts +269 -0
  193. package/dist/types/index.d.ts +16 -0
  194. package/dist/types/interop/index.d.ts +12 -0
  195. package/dist/types/interop/interop.test.d.ts +19 -0
  196. package/dist/types/interop/protocol-bridge/bridge.d.ts +52 -0
  197. package/dist/types/interop/protocol-bridge/contract.d.ts +249 -0
  198. package/dist/types/interop/protocol-bridge/endpoint.d.ts +124 -0
  199. package/dist/types/interop/protocol-bridge/fleet.d.ts +92 -0
  200. package/dist/types/interop/protocol-bridge/host.d.ts +61 -0
  201. package/dist/types/interop/protocol-bridge/index.d.ts +16 -0
  202. package/dist/types/interop/protocol-bridge/schema.d.ts +29 -0
  203. package/dist/types/llmgateway/catalog/cards.d.ts +18 -0
  204. package/dist/types/llmgateway/catalog/cost.d.ts +15 -0
  205. package/dist/types/llmgateway/catalog/index.d.ts +7 -0
  206. package/dist/types/llmgateway/catalog/query.d.ts +40 -0
  207. package/dist/types/llmgateway/connectors/anthropic.d.ts +35 -0
  208. package/dist/types/llmgateway/connectors/azure-openai.d.ts +33 -0
  209. package/dist/types/llmgateway/connectors/bedrock.d.ts +113 -0
  210. package/dist/types/llmgateway/connectors/google-vertex.d.ts +38 -0
  211. package/dist/types/llmgateway/connectors/google.d.ts +40 -0
  212. package/dist/types/llmgateway/connectors/index.d.ts +26 -0
  213. package/dist/types/llmgateway/connectors/kimi.d.ts +28 -0
  214. package/dist/types/llmgateway/connectors/mock.d.ts +37 -0
  215. package/dist/types/llmgateway/connectors/nvidia.d.ts +27 -0
  216. package/dist/types/llmgateway/connectors/ollama.d.ts +45 -0
  217. package/dist/types/llmgateway/connectors/openai-chat.d.ts +25 -0
  218. package/dist/types/llmgateway/connectors/openai-responses.d.ts +49 -0
  219. package/dist/types/llmgateway/contract/connector.d.ts +32 -0
  220. package/dist/types/llmgateway/contract/conversation.d.ts +86 -0
  221. package/dist/types/llmgateway/contract/emission.d.ts +55 -0
  222. package/dist/types/llmgateway/contract/errors.d.ts +27 -0
  223. package/dist/types/llmgateway/contract/index.d.ts +13 -0
  224. package/dist/types/llmgateway/contract/model-card.d.ts +42 -0
  225. package/dist/types/llmgateway/contract/options.d.ts +31 -0
  226. package/dist/types/llmgateway/contract/reply.d.ts +33 -0
  227. package/dist/types/llmgateway/conversion/index.d.ts +10 -0
  228. package/dist/types/llmgateway/conversion/mappers.d.ts +65 -0
  229. package/dist/types/llmgateway/conversion/openai-compatible.d.ts +46 -0
  230. package/dist/types/llmgateway/conversion/reduce.d.ts +20 -0
  231. package/dist/types/llmgateway/credentials/oauth.d.ts +73 -0
  232. package/dist/types/llmgateway/credentials/pkce.d.ts +52 -0
  233. package/dist/types/llmgateway/credentials/secrets.d.ts +74 -0
  234. package/dist/types/llmgateway/gateway.d.ts +34 -0
  235. package/dist/types/llmgateway/gateway.test.d.ts +14 -0
  236. package/dist/types/llmgateway/index.d.ts +11 -0
  237. package/dist/types/llmgateway/streaming/channel.d.ts +24 -0
  238. package/dist/types/llmgateway/streaming/index.d.ts +10 -0
  239. package/dist/types/llmgateway/streaming/ndjson.d.ts +17 -0
  240. package/dist/types/llmgateway/streaming/sse.d.ts +31 -0
  241. package/dist/types/react-host/index.d.ts +9 -0
  242. package/dist/types/react-host/ink.d.ts +5 -0
  243. package/dist/types/react-host/jsx-runtime.d.ts +4 -0
  244. package/dist/types/react-host/loader.d.ts +3 -0
  245. package/dist/types/react-ink/components/ChangelogBlock.d.ts +8 -0
  246. package/dist/types/react-ink/components/DisplayBlockView.d.ts +8 -0
  247. package/dist/types/react-ink/components/Footer.d.ts +11 -0
  248. package/dist/types/react-ink/components/MessageList.d.ts +14 -0
  249. package/dist/types/react-ink/components/MessageRow.d.ts +13 -0
  250. package/dist/types/react-ink/components/StatusLine.d.ts +9 -0
  251. package/dist/types/react-ink/components/TaskPanel.d.ts +11 -0
  252. package/dist/types/react-ink/components/ToolEventBlock.d.ts +17 -0
  253. package/dist/types/react-ink/components/dialogs/DialogFrame.d.ts +8 -0
  254. package/dist/types/react-ink/components/dialogs/LoginDialog.d.ts +14 -0
  255. package/dist/types/react-ink/components/dialogs/ModelDialog.d.ts +9 -0
  256. package/dist/types/react-ink/components/dialogs/OAuthDialog.d.ts +9 -0
  257. package/dist/types/react-ink/components/dialogs/ScopedModelsDialog.d.ts +9 -0
  258. package/dist/types/react-ink/components/dialogs/SelectableDialog.d.ts +16 -0
  259. package/dist/types/react-ink/components/dialogs/SessionDialog.d.ts +13 -0
  260. package/dist/types/react-ink/components/dialogs/SettingsDialog.d.ts +14 -0
  261. package/dist/types/react-ink/components/dialogs/StartupSessionPicker.d.ts +9 -0
  262. package/dist/types/react-ink/components/dialogs/ThemeDialog.d.ts +7 -0
  263. package/dist/types/react-ink/components/dialogs/TreeDialog.d.ts +8 -0
  264. package/dist/types/react-ink/components/dialogs/UserMessageDialog.d.ts +8 -0
  265. package/dist/types/react-ink/components/messages/AssistantMessage.d.ts +12 -0
  266. package/dist/types/react-ink/components/messages/BashMessage.d.ts +8 -0
  267. package/dist/types/react-ink/components/messages/BranchSummaryMessage.d.ts +8 -0
  268. package/dist/types/react-ink/components/messages/CompactionMessage.d.ts +8 -0
  269. package/dist/types/react-ink/components/messages/CustomMessage.d.ts +9 -0
  270. package/dist/types/react-ink/components/messages/SkillInvocationMessage.d.ts +7 -0
  271. package/dist/types/react-ink/components/messages/ToolCallMessage.d.ts +8 -0
  272. package/dist/types/react-ink/components/messages/ToolResultBlock.d.ts +12 -0
  273. package/dist/types/react-ink/components/messages/UserMessage.d.ts +9 -0
  274. package/dist/types/react-ink/index.d.ts +34 -0
  275. package/dist/types/react-ink/theme-adapter.d.ts +9 -0
  276. package/dist/types/react-ink/types.d.ts +133 -0
  277. package/dist/types/react-ink/utils/message-groups.d.ts +25 -0
  278. package/dist/types/react-ink/utils/selection-dialog.d.ts +2 -0
  279. package/dist/types/react-ink/utils/session-browser.d.ts +27 -0
  280. package/dist/types/react-ink/utils/tool-display.d.ts +21 -0
  281. package/dist/types/runtime/cadence/cadence.test.d.ts +6 -0
  282. package/dist/types/runtime/cadence/fold.d.ts +48 -0
  283. package/dist/types/runtime/cadence/index.d.ts +12 -0
  284. package/dist/types/runtime/cadence/reducer.d.ts +44 -0
  285. package/dist/types/runtime/conductor/agent.d.ts +71 -0
  286. package/dist/types/runtime/conductor/index.d.ts +11 -0
  287. package/dist/types/runtime/contract/config.d.ts +44 -0
  288. package/dist/types/runtime/contract/effect.d.ts +41 -0
  289. package/dist/types/runtime/contract/errors.d.ts +22 -0
  290. package/dist/types/runtime/contract/events.d.ts +63 -0
  291. package/dist/types/runtime/contract/index.d.ts +18 -0
  292. package/dist/types/runtime/contract/run-state.d.ts +57 -0
  293. package/dist/types/runtime/contract/session.d.ts +42 -0
  294. package/dist/types/runtime/contract/signal.d.ts +49 -0
  295. package/dist/types/runtime/contract/tools.d.ts +45 -0
  296. package/dist/types/runtime/dispatch/index.d.ts +9 -0
  297. package/dist/types/runtime/dispatch/scheduler.d.ts +53 -0
  298. package/dist/types/runtime/index.d.ts +22 -0
  299. package/dist/types/runtime/ledger/accumulator.d.ts +44 -0
  300. package/dist/types/runtime/ledger/bus.d.ts +50 -0
  301. package/dist/types/runtime/ledger/index.d.ts +11 -0
  302. package/dist/types/runtime/memory/compactor.d.ts +56 -0
  303. package/dist/types/runtime/memory/estimate.d.ts +21 -0
  304. package/dist/types/runtime/memory/index.d.ts +8 -0
  305. package/dist/types/runtime/runtime.test.d.ts +15 -0
  306. package/dist/types/runtime/store/dag.d.ts +72 -0
  307. package/dist/types/runtime/store/hash.d.ts +18 -0
  308. package/dist/types/runtime/store/index.d.ts +12 -0
  309. package/dist/types/runtime/store/persist.d.ts +49 -0
  310. package/dist/types/runtime/turn/driver.d.ts +32 -0
  311. package/dist/types/runtime/turn/index.d.ts +8 -0
  312. package/dist/types/runtime/wire/index.d.ts +10 -0
  313. package/dist/types/runtime/wire/projectors.d.ts +53 -0
  314. package/dist/types/shell-app/auth-cli/index.d.ts +9 -0
  315. package/dist/types/shell-app/auth-cli/oauth-cli.d.ts +73 -0
  316. package/dist/types/shell-app/boot/context.d.ts +108 -0
  317. package/dist/types/shell-app/boot/index.d.ts +13 -0
  318. package/dist/types/shell-app/boot/pipeline.d.ts +66 -0
  319. package/dist/types/shell-app/boot/stages.d.ts +77 -0
  320. package/dist/types/shell-app/cli.d.ts +75 -0
  321. package/dist/types/shell-app/config/index.d.ts +11 -0
  322. package/dist/types/shell-app/config/locator.d.ts +85 -0
  323. package/dist/types/shell-app/config/settings.d.ts +91 -0
  324. package/dist/types/shell-app/index.d.ts +26 -0
  325. package/dist/types/shell-app/invocation/flags.d.ts +89 -0
  326. package/dist/types/shell-app/invocation/parse.d.ts +89 -0
  327. package/dist/types/shell-app/locate/brand.d.ts +71 -0
  328. package/dist/types/shell-app/locate/index.d.ts +12 -0
  329. package/dist/types/shell-app/locate/locator.d.ts +122 -0
  330. package/dist/types/shell-app/runners/contract.d.ts +116 -0
  331. package/dist/types/shell-app/runners/index.d.ts +15 -0
  332. package/dist/types/shell-app/runners/one-shot.d.ts +21 -0
  333. package/dist/types/shell-app/runners/registry.d.ts +34 -0
  334. package/dist/types/shell-app/runners/repl.d.ts +51 -0
  335. package/dist/types/shell-app/runners/wire.d.ts +34 -0
  336. package/dist/types/shell-app/shell-app.test.d.ts +14 -0
  337. package/dist/types/shell-app/upgrade/index.d.ts +9 -0
  338. package/dist/types/shell-app/upgrade/upgrades.d.ts +62 -0
  339. package/dist/types/smithy/config/flag-reader.d.ts +128 -0
  340. package/dist/types/smithy/config/index.d.ts +9 -0
  341. package/dist/types/smithy/forge.d.ts +135 -0
  342. package/dist/types/smithy/index.d.ts +36 -0
  343. package/dist/types/smithy/knowledge/index.d.ts +10 -0
  344. package/dist/types/smithy/knowledge/loader.d.ts +64 -0
  345. package/dist/types/smithy/persona/blueprint.d.ts +75 -0
  346. package/dist/types/smithy/persona/define-agent.d.ts +51 -0
  347. package/dist/types/smithy/persona/index.d.ts +14 -0
  348. package/dist/types/smithy/persona/profiles.d.ts +44 -0
  349. package/dist/types/smithy/runtime/index.d.ts +9 -0
  350. package/dist/types/smithy/runtime/tool-ledger.d.ts +130 -0
  351. package/dist/types/smithy/smithy.test.d.ts +20 -0
  352. package/dist/types/smithy/ui/index.d.ts +11 -0
  353. package/dist/types/smithy/ui/transcript.d.ts +183 -0
  354. package/dist/types/swarm/coordinator.d.ts +192 -0
  355. package/dist/types/swarm/index.d.ts +33 -0
  356. package/dist/types/swarm/isolation/index.d.ts +14 -0
  357. package/dist/types/swarm/isolation/runner.d.ts +61 -0
  358. package/dist/types/swarm/isolation/worktree.d.ts +142 -0
  359. package/dist/types/swarm/kernel/faults.d.ts +52 -0
  360. package/dist/types/swarm/kernel/ids.d.ts +25 -0
  361. package/dist/types/swarm/kernel/index.d.ts +26 -0
  362. package/dist/types/swarm/kernel/json-cell.d.ts +113 -0
  363. package/dist/types/swarm/kernel/jsonl-log.d.ts +81 -0
  364. package/dist/types/swarm/postbox/channel.d.ts +88 -0
  365. package/dist/types/swarm/postbox/codecs.d.ts +253 -0
  366. package/dist/types/swarm/postbox/index.d.ts +16 -0
  367. package/dist/types/swarm/roster/index.d.ts +16 -0
  368. package/dist/types/swarm/roster/manifest.d.ts +185 -0
  369. package/dist/types/swarm/swarm.test.d.ts +24 -0
  370. package/dist/types/swarm/telemetry/activity.d.ts +143 -0
  371. package/dist/types/swarm/workboard/board.d.ts +174 -0
  372. package/dist/types/swarm/workboard/dep-graph.d.ts +77 -0
  373. package/dist/types/swarm/workboard/index.d.ts +12 -0
  374. package/dist/types/tracing/adapter/index.d.ts +12 -0
  375. package/dist/types/tracing/adapter/runtime-trace.d.ts +54 -0
  376. package/dist/types/tracing/channel/index.d.ts +9 -0
  377. package/dist/types/tracing/channel/signal.d.ts +93 -0
  378. package/dist/types/tracing/index.d.ts +25 -0
  379. package/dist/types/tracing/recorder/index.d.ts +12 -0
  380. package/dist/types/tracing/recorder/recorder.d.ts +75 -0
  381. package/dist/types/tracing/recorder/sampling.d.ts +55 -0
  382. package/dist/types/tracing/redaction/index.d.ts +8 -0
  383. package/dist/types/tracing/redaction/secret-scrubber.d.ts +95 -0
  384. package/dist/types/tracing/registry/hub.d.ts +57 -0
  385. package/dist/types/tracing/registry/index.d.ts +7 -0
  386. package/dist/types/tracing/signal/handle.d.ts +73 -0
  387. package/dist/types/tracing/signal/index.d.ts +12 -0
  388. package/dist/types/tracing/signal/segment.d.ts +124 -0
  389. package/dist/types/tracing/sinks/base.d.ts +51 -0
  390. package/dist/types/tracing/sinks/console.d.ts +44 -0
  391. package/dist/types/tracing/sinks/file.d.ts +47 -0
  392. package/dist/types/tracing/sinks/index.d.ts +16 -0
  393. package/dist/types/tracing/sinks/stream.d.ts +46 -0
  394. package/dist/types/tracing/tracing.test.d.ts +7 -0
  395. package/dist/types/ui/autocomplete.d.ts +59 -0
  396. package/dist/types/ui/contracts.d.ts +38 -0
  397. package/dist/types/ui/editor-component.d.ts +100 -0
  398. package/dist/types/ui/fuzzy.d.ts +29 -0
  399. package/dist/types/ui/index.d.ts +8 -0
  400. package/dist/types/ui/keybindings.d.ts +62 -0
  401. package/dist/types/ui/keys.d.ts +171 -0
  402. package/dist/types/ui/theme-types.d.ts +36 -0
  403. package/dist/types/ui/utils.d.ts +101 -0
  404. package/dist/types/ui-bridge/InteractiveApp.d.ts +38 -0
  405. package/dist/types/ui-bridge/adapter.d.ts +90 -0
  406. package/dist/types/ui-bridge/index.d.ts +37 -0
  407. package/package.json +116 -107
  408. package/LICENSE +0 -8
  409. package/LICENSE-THIRD-PARTY.txt +0 -30
  410. package/local-dist-new/IndusForge/examples/research-agent.d.ts +0 -3
  411. package/local-dist-new/IndusForge/examples/research-agent.d.ts.map +0 -1
  412. package/local-dist-new/IndusForge/examples/research-agent.js +0 -18
  413. package/local-dist-new/IndusForge/examples/research-agent.js.map +0 -1
  414. package/local-dist-new/IndusForge/examples/review-agent.d.ts +0 -3
  415. package/local-dist-new/IndusForge/examples/review-agent.d.ts.map +0 -1
  416. package/local-dist-new/IndusForge/examples/review-agent.js +0 -18
  417. package/local-dist-new/IndusForge/examples/review-agent.js.map +0 -1
  418. package/local-dist-new/IndusForge/examples/terminal-builder-agent.d.ts +0 -3
  419. package/local-dist-new/IndusForge/examples/terminal-builder-agent.d.ts.map +0 -1
  420. package/local-dist-new/IndusForge/examples/terminal-builder-agent.js +0 -18
  421. package/local-dist-new/IndusForge/examples/terminal-builder-agent.js.map +0 -1
  422. package/local-dist-new/IndusForge/terminal-chat.d.ts +0 -2
  423. package/local-dist-new/IndusForge/terminal-chat.d.ts.map +0 -1
  424. package/local-dist-new/IndusForge/terminal-chat.js +0 -557
  425. package/local-dist-new/IndusForge/terminal-chat.js.map +0 -1
  426. package/local-dist-new/agent.d.ts +0 -6
  427. package/local-dist-new/agent.d.ts.map +0 -1
  428. package/local-dist-new/agent.js +0 -6
  429. package/local-dist-new/agent.js.map +0 -1
  430. package/local-dist-new/ai.d.ts +0 -6
  431. package/local-dist-new/ai.d.ts.map +0 -1
  432. package/local-dist-new/ai.js +0 -6
  433. package/local-dist-new/ai.js.map +0 -1
  434. package/local-dist-new/bot/actions/bash.d.ts +0 -56
  435. package/local-dist-new/bot/actions/bash.d.ts.map +0 -1
  436. package/local-dist-new/bot/actions/bash.js +0 -275
  437. package/local-dist-new/bot/actions/bash.js.map +0 -1
  438. package/local-dist-new/bot/actions/composio/accounts.d.ts +0 -23
  439. package/local-dist-new/bot/actions/composio/accounts.d.ts.map +0 -1
  440. package/local-dist-new/bot/actions/composio/accounts.js +0 -40
  441. package/local-dist-new/bot/actions/composio/accounts.js.map +0 -1
  442. package/local-dist-new/bot/actions/composio/client.d.ts +0 -40
  443. package/local-dist-new/bot/actions/composio/client.d.ts.map +0 -1
  444. package/local-dist-new/bot/actions/composio/client.js +0 -361
  445. package/local-dist-new/bot/actions/composio/client.js.map +0 -1
  446. package/local-dist-new/bot/actions/composio/connect.d.ts +0 -20
  447. package/local-dist-new/bot/actions/composio/connect.d.ts.map +0 -1
  448. package/local-dist-new/bot/actions/composio/connect.js +0 -41
  449. package/local-dist-new/bot/actions/composio/connect.js.map +0 -1
  450. package/local-dist-new/bot/actions/composio/enable.d.ts +0 -26
  451. package/local-dist-new/bot/actions/composio/enable.d.ts.map +0 -1
  452. package/local-dist-new/bot/actions/composio/enable.js +0 -66
  453. package/local-dist-new/bot/actions/composio/enable.js.map +0 -1
  454. package/local-dist-new/bot/actions/composio/execute.d.ts +0 -27
  455. package/local-dist-new/bot/actions/composio/execute.d.ts.map +0 -1
  456. package/local-dist-new/bot/actions/composio/execute.js +0 -46
  457. package/local-dist-new/bot/actions/composio/execute.js.map +0 -1
  458. package/local-dist-new/bot/actions/composio/helpers.d.ts +0 -17
  459. package/local-dist-new/bot/actions/composio/helpers.d.ts.map +0 -1
  460. package/local-dist-new/bot/actions/composio/helpers.js +0 -533
  461. package/local-dist-new/bot/actions/composio/helpers.js.map +0 -1
  462. package/local-dist-new/bot/actions/composio/index.d.ts +0 -10
  463. package/local-dist-new/bot/actions/composio/index.d.ts.map +0 -1
  464. package/local-dist-new/bot/actions/composio/index.js +0 -9
  465. package/local-dist-new/bot/actions/composio/index.js.map +0 -1
  466. package/local-dist-new/bot/actions/composio/provider.d.ts +0 -9
  467. package/local-dist-new/bot/actions/composio/provider.d.ts.map +0 -1
  468. package/local-dist-new/bot/actions/composio/provider.js +0 -54
  469. package/local-dist-new/bot/actions/composio/provider.js.map +0 -1
  470. package/local-dist-new/bot/actions/composio/toolkits.d.ts +0 -23
  471. package/local-dist-new/bot/actions/composio/toolkits.d.ts.map +0 -1
  472. package/local-dist-new/bot/actions/composio/toolkits.js +0 -40
  473. package/local-dist-new/bot/actions/composio/toolkits.js.map +0 -1
  474. package/local-dist-new/bot/actions/composio/tools.d.ts +0 -29
  475. package/local-dist-new/bot/actions/composio/tools.d.ts.map +0 -1
  476. package/local-dist-new/bot/actions/composio/tools.js +0 -72
  477. package/local-dist-new/bot/actions/composio/tools.js.map +0 -1
  478. package/local-dist-new/bot/actions/composio/types.d.ts +0 -138
  479. package/local-dist-new/bot/actions/composio/types.d.ts.map +0 -1
  480. package/local-dist-new/bot/actions/composio/types.js +0 -2
  481. package/local-dist-new/bot/actions/composio/types.js.map +0 -1
  482. package/local-dist-new/bot/actions/crew/activity-tracker.d.ts +0 -66
  483. package/local-dist-new/bot/actions/crew/activity-tracker.d.ts.map +0 -1
  484. package/local-dist-new/bot/actions/crew/activity-tracker.js +0 -480
  485. package/local-dist-new/bot/actions/crew/activity-tracker.js.map +0 -1
  486. package/local-dist-new/bot/actions/crew/cleanup.d.ts +0 -51
  487. package/local-dist-new/bot/actions/crew/cleanup.d.ts.map +0 -1
  488. package/local-dist-new/bot/actions/crew/cleanup.js +0 -219
  489. package/local-dist-new/bot/actions/crew/cleanup.js.map +0 -1
  490. package/local-dist-new/bot/actions/crew/fs-lock.d.ts +0 -12
  491. package/local-dist-new/bot/actions/crew/fs-lock.d.ts.map +0 -1
  492. package/local-dist-new/bot/actions/crew/fs-lock.js +0 -74
  493. package/local-dist-new/bot/actions/crew/fs-lock.js.map +0 -1
  494. package/local-dist-new/bot/actions/crew/index.d.ts +0 -12
  495. package/local-dist-new/bot/actions/crew/index.d.ts.map +0 -1
  496. package/local-dist-new/bot/actions/crew/index.js +0 -12
  497. package/local-dist-new/bot/actions/crew/index.js.map +0 -1
  498. package/local-dist-new/bot/actions/crew/mailbox.d.ts +0 -21
  499. package/local-dist-new/bot/actions/crew/mailbox.d.ts.map +0 -1
  500. package/local-dist-new/bot/actions/crew/mailbox.js +0 -106
  501. package/local-dist-new/bot/actions/crew/mailbox.js.map +0 -1
  502. package/local-dist-new/bot/actions/crew/model-policy.d.ts +0 -23
  503. package/local-dist-new/bot/actions/crew/model-policy.d.ts.map +0 -1
  504. package/local-dist-new/bot/actions/crew/model-policy.js +0 -113
  505. package/local-dist-new/bot/actions/crew/model-policy.js.map +0 -1
  506. package/local-dist-new/bot/actions/crew/names.d.ts +0 -28
  507. package/local-dist-new/bot/actions/crew/names.d.ts.map +0 -1
  508. package/local-dist-new/bot/actions/crew/names.js +0 -109
  509. package/local-dist-new/bot/actions/crew/names.js.map +0 -1
  510. package/local-dist-new/bot/actions/crew/protocol.d.ts +0 -75
  511. package/local-dist-new/bot/actions/crew/protocol.d.ts.map +0 -1
  512. package/local-dist-new/bot/actions/crew/protocol.js +0 -205
  513. package/local-dist-new/bot/actions/crew/protocol.js.map +0 -1
  514. package/local-dist-new/bot/actions/crew/task-store.d.ts +0 -89
  515. package/local-dist-new/bot/actions/crew/task-store.d.ts.map +0 -1
  516. package/local-dist-new/bot/actions/crew/task-store.js +0 -445
  517. package/local-dist-new/bot/actions/crew/task-store.js.map +0 -1
  518. package/local-dist-new/bot/actions/crew/team-attach-claim.d.ts +0 -36
  519. package/local-dist-new/bot/actions/crew/team-attach-claim.d.ts.map +0 -1
  520. package/local-dist-new/bot/actions/crew/team-attach-claim.js +0 -144
  521. package/local-dist-new/bot/actions/crew/team-attach-claim.js.map +0 -1
  522. package/local-dist-new/bot/actions/crew/team-config.d.ts +0 -55
  523. package/local-dist-new/bot/actions/crew/team-config.d.ts.map +0 -1
  524. package/local-dist-new/bot/actions/crew/team-config.js +0 -252
  525. package/local-dist-new/bot/actions/crew/team-config.js.map +0 -1
  526. package/local-dist-new/bot/actions/crew/worktree.d.ts +0 -40
  527. package/local-dist-new/bot/actions/crew/worktree.d.ts.map +0 -1
  528. package/local-dist-new/bot/actions/crew/worktree.js +0 -213
  529. package/local-dist-new/bot/actions/crew/worktree.js.map +0 -1
  530. package/local-dist-new/bot/actions/edit-diff.d.ts +0 -63
  531. package/local-dist-new/bot/actions/edit-diff.d.ts.map +0 -1
  532. package/local-dist-new/bot/actions/edit-diff.js +0 -255
  533. package/local-dist-new/bot/actions/edit-diff.js.map +0 -1
  534. package/local-dist-new/bot/actions/edit.d.ts +0 -42
  535. package/local-dist-new/bot/actions/edit.d.ts.map +0 -1
  536. package/local-dist-new/bot/actions/edit.js +0 -176
  537. package/local-dist-new/bot/actions/edit.js.map +0 -1
  538. package/local-dist-new/bot/actions/find.d.ts +0 -26
  539. package/local-dist-new/bot/actions/find.d.ts.map +0 -1
  540. package/local-dist-new/bot/actions/find.js +0 -170
  541. package/local-dist-new/bot/actions/find.js.map +0 -1
  542. package/local-dist-new/bot/actions/grep.d.ts +0 -43
  543. package/local-dist-new/bot/actions/grep.d.ts.map +0 -1
  544. package/local-dist-new/bot/actions/grep.js +0 -218
  545. package/local-dist-new/bot/actions/grep.js.map +0 -1
  546. package/local-dist-new/bot/actions/index.d.ts +0 -301
  547. package/local-dist-new/bot/actions/index.d.ts.map +0 -1
  548. package/local-dist-new/bot/actions/index.js +0 -255
  549. package/local-dist-new/bot/actions/index.js.map +0 -1
  550. package/local-dist-new/bot/actions/kit/hook-runner.d.ts +0 -13
  551. package/local-dist-new/bot/actions/kit/hook-runner.d.ts.map +0 -1
  552. package/local-dist-new/bot/actions/kit/hook-runner.js +0 -33
  553. package/local-dist-new/bot/actions/kit/hook-runner.js.map +0 -1
  554. package/local-dist-new/bot/actions/kit/image-resize.d.ts +0 -20
  555. package/local-dist-new/bot/actions/kit/image-resize.d.ts.map +0 -1
  556. package/local-dist-new/bot/actions/kit/image-resize.js +0 -93
  557. package/local-dist-new/bot/actions/kit/image-resize.js.map +0 -1
  558. package/local-dist-new/bot/actions/kit/mime.d.ts +0 -2
  559. package/local-dist-new/bot/actions/kit/mime.d.ts.map +0 -1
  560. package/local-dist-new/bot/actions/kit/mime.js +0 -65
  561. package/local-dist-new/bot/actions/kit/mime.js.map +0 -1
  562. package/local-dist-new/bot/actions/kit/shell.d.ts +0 -13
  563. package/local-dist-new/bot/actions/kit/shell.d.ts.map +0 -1
  564. package/local-dist-new/bot/actions/kit/shell.js +0 -103
  565. package/local-dist-new/bot/actions/kit/shell.js.map +0 -1
  566. package/local-dist-new/bot/actions/ls.d.ts +0 -41
  567. package/local-dist-new/bot/actions/ls.d.ts.map +0 -1
  568. package/local-dist-new/bot/actions/ls.js +0 -174
  569. package/local-dist-new/bot/actions/ls.js.map +0 -1
  570. package/local-dist-new/bot/actions/path-utils.d.ts +0 -8
  571. package/local-dist-new/bot/actions/path-utils.d.ts.map +0 -1
  572. package/local-dist-new/bot/actions/path-utils.js +0 -75
  573. package/local-dist-new/bot/actions/path-utils.js.map +0 -1
  574. package/local-dist-new/bot/actions/process-controller.d.ts +0 -15
  575. package/local-dist-new/bot/actions/process-controller.d.ts.map +0 -1
  576. package/local-dist-new/bot/actions/process-controller.js +0 -39
  577. package/local-dist-new/bot/actions/process-controller.js.map +0 -1
  578. package/local-dist-new/bot/actions/process-manager.d.ts +0 -60
  579. package/local-dist-new/bot/actions/process-manager.d.ts.map +0 -1
  580. package/local-dist-new/bot/actions/process-manager.js +0 -485
  581. package/local-dist-new/bot/actions/process-manager.js.map +0 -1
  582. package/local-dist-new/bot/actions/process-types.d.ts +0 -74
  583. package/local-dist-new/bot/actions/process-types.d.ts.map +0 -1
  584. package/local-dist-new/bot/actions/process-types.js +0 -7
  585. package/local-dist-new/bot/actions/process-types.js.map +0 -1
  586. package/local-dist-new/bot/actions/process.d.ts +0 -38
  587. package/local-dist-new/bot/actions/process.d.ts.map +0 -1
  588. package/local-dist-new/bot/actions/process.js +0 -360
  589. package/local-dist-new/bot/actions/process.js.map +0 -1
  590. package/local-dist-new/bot/actions/read.d.ts +0 -37
  591. package/local-dist-new/bot/actions/read.d.ts.map +0 -1
  592. package/local-dist-new/bot/actions/read.js +0 -190
  593. package/local-dist-new/bot/actions/read.js.map +0 -1
  594. package/local-dist-new/bot/actions/registry.d.ts +0 -21
  595. package/local-dist-new/bot/actions/registry.d.ts.map +0 -1
  596. package/local-dist-new/bot/actions/registry.js +0 -23
  597. package/local-dist-new/bot/actions/registry.js.map +0 -1
  598. package/local-dist-new/bot/actions/todo-store.d.ts +0 -77
  599. package/local-dist-new/bot/actions/todo-store.d.ts.map +0 -1
  600. package/local-dist-new/bot/actions/todo-store.js +0 -137
  601. package/local-dist-new/bot/actions/todo-store.js.map +0 -1
  602. package/local-dist-new/bot/actions/todo-types.d.ts +0 -73
  603. package/local-dist-new/bot/actions/todo-types.d.ts.map +0 -1
  604. package/local-dist-new/bot/actions/todo-types.js +0 -8
  605. package/local-dist-new/bot/actions/todo-types.js.map +0 -1
  606. package/local-dist-new/bot/actions/todo.d.ts +0 -77
  607. package/local-dist-new/bot/actions/todo.d.ts.map +0 -1
  608. package/local-dist-new/bot/actions/todo.js +0 -122
  609. package/local-dist-new/bot/actions/todo.js.map +0 -1
  610. package/local-dist-new/bot/actions/truncate.d.ts +0 -73
  611. package/local-dist-new/bot/actions/truncate.d.ts.map +0 -1
  612. package/local-dist-new/bot/actions/truncate.js +0 -221
  613. package/local-dist-new/bot/actions/truncate.js.map +0 -1
  614. package/local-dist-new/bot/actions/webfetch.d.ts +0 -36
  615. package/local-dist-new/bot/actions/webfetch.d.ts.map +0 -1
  616. package/local-dist-new/bot/actions/webfetch.js +0 -247
  617. package/local-dist-new/bot/actions/webfetch.js.map +0 -1
  618. package/local-dist-new/bot/actions/websearch.d.ts +0 -35
  619. package/local-dist-new/bot/actions/websearch.d.ts.map +0 -1
  620. package/local-dist-new/bot/actions/websearch.js +0 -132
  621. package/local-dist-new/bot/actions/websearch.js.map +0 -1
  622. package/local-dist-new/bot/actions/write.d.ts +0 -31
  623. package/local-dist-new/bot/actions/write.d.ts.map +0 -1
  624. package/local-dist-new/bot/actions/write.js +0 -139
  625. package/local-dist-new/bot/actions/write.js.map +0 -1
  626. package/local-dist-new/bot/agent-loop.d.ts +0 -15
  627. package/local-dist-new/bot/agent-loop.d.ts.map +0 -1
  628. package/local-dist-new/bot/agent-loop.js +0 -293
  629. package/local-dist-new/bot/agent-loop.js.map +0 -1
  630. package/local-dist-new/bot/agent.d.ts +0 -122
  631. package/local-dist-new/bot/agent.d.ts.map +0 -1
  632. package/local-dist-new/bot/agent.js +0 -393
  633. package/local-dist-new/bot/agent.js.map +0 -1
  634. package/local-dist-new/bot/error-handler.d.ts +0 -8
  635. package/local-dist-new/bot/error-handler.d.ts.map +0 -1
  636. package/local-dist-new/bot/error-handler.js +0 -8
  637. package/local-dist-new/bot/error-handler.js.map +0 -1
  638. package/local-dist-new/bot/event-bus.d.ts +0 -9
  639. package/local-dist-new/bot/event-bus.d.ts.map +0 -1
  640. package/local-dist-new/bot/event-bus.js +0 -15
  641. package/local-dist-new/bot/event-bus.js.map +0 -1
  642. package/local-dist-new/bot/index.d.ts +0 -8
  643. package/local-dist-new/bot/index.d.ts.map +0 -1
  644. package/local-dist-new/bot/index.js +0 -8
  645. package/local-dist-new/bot/index.js.map +0 -1
  646. package/local-dist-new/bot/messages.d.ts +0 -77
  647. package/local-dist-new/bot/messages.d.ts.map +0 -1
  648. package/local-dist-new/bot/messages.js +0 -116
  649. package/local-dist-new/bot/messages.js.map +0 -1
  650. package/local-dist-new/bot/proxy.d.ts +0 -66
  651. package/local-dist-new/bot/proxy.d.ts.map +0 -1
  652. package/local-dist-new/bot/proxy.js +0 -228
  653. package/local-dist-new/bot/proxy.js.map +0 -1
  654. package/local-dist-new/bot/session-manager.d.ts +0 -448
  655. package/local-dist-new/bot/session-manager.d.ts.map +0 -1
  656. package/local-dist-new/bot/session-manager.js +0 -1232
  657. package/local-dist-new/bot/session-manager.js.map +0 -1
  658. package/local-dist-new/bot/state-manager.d.ts +0 -22
  659. package/local-dist-new/bot/state-manager.d.ts.map +0 -1
  660. package/local-dist-new/bot/state-manager.js +0 -60
  661. package/local-dist-new/bot/state-manager.js.map +0 -1
  662. package/local-dist-new/bot/telemetry.d.ts +0 -7
  663. package/local-dist-new/bot/telemetry.d.ts.map +0 -1
  664. package/local-dist-new/bot/telemetry.js +0 -18
  665. package/local-dist-new/bot/telemetry.js.map +0 -1
  666. package/local-dist-new/bot/types.d.ts +0 -205
  667. package/local-dist-new/bot/types.d.ts.map +0 -1
  668. package/local-dist-new/bot/types.js +0 -60
  669. package/local-dist-new/bot/types.js.map +0 -1
  670. package/local-dist-new/cli.d.ts +0 -3
  671. package/local-dist-new/cli.d.ts.map +0 -1
  672. package/local-dist-new/cli.js +0 -3
  673. package/local-dist-new/cli.js.map +0 -1
  674. package/local-dist-new/index.d.ts +0 -7
  675. package/local-dist-new/index.d.ts.map +0 -1
  676. package/local-dist-new/index.js +0 -7
  677. package/local-dist-new/index.js.map +0 -1
  678. package/local-dist-new/mcp/client-pool.d.ts +0 -106
  679. package/local-dist-new/mcp/client-pool.d.ts.map +0 -1
  680. package/local-dist-new/mcp/client-pool.js +0 -234
  681. package/local-dist-new/mcp/client-pool.js.map +0 -1
  682. package/local-dist-new/mcp/client.d.ts +0 -158
  683. package/local-dist-new/mcp/client.d.ts.map +0 -1
  684. package/local-dist-new/mcp/client.js +0 -599
  685. package/local-dist-new/mcp/client.js.map +0 -1
  686. package/local-dist-new/mcp/config.d.ts +0 -61
  687. package/local-dist-new/mcp/config.d.ts.map +0 -1
  688. package/local-dist-new/mcp/config.js +0 -250
  689. package/local-dist-new/mcp/config.js.map +0 -1
  690. package/local-dist-new/mcp/errors.d.ts +0 -104
  691. package/local-dist-new/mcp/errors.d.ts.map +0 -1
  692. package/local-dist-new/mcp/errors.js +0 -146
  693. package/local-dist-new/mcp/errors.js.map +0 -1
  694. package/local-dist-new/mcp/index.d.ts +0 -56
  695. package/local-dist-new/mcp/index.d.ts.map +0 -1
  696. package/local-dist-new/mcp/index.js +0 -83
  697. package/local-dist-new/mcp/index.js.map +0 -1
  698. package/local-dist-new/mcp/schema-converter.d.ts +0 -68
  699. package/local-dist-new/mcp/schema-converter.d.ts.map +0 -1
  700. package/local-dist-new/mcp/schema-converter.js +0 -230
  701. package/local-dist-new/mcp/schema-converter.js.map +0 -1
  702. package/local-dist-new/mcp/server.d.ts +0 -111
  703. package/local-dist-new/mcp/server.d.ts.map +0 -1
  704. package/local-dist-new/mcp/server.js +0 -305
  705. package/local-dist-new/mcp/server.js.map +0 -1
  706. package/local-dist-new/mcp/tool-factory.d.ts +0 -63
  707. package/local-dist-new/mcp/tool-factory.d.ts.map +0 -1
  708. package/local-dist-new/mcp/tool-factory.js +0 -228
  709. package/local-dist-new/mcp/tool-factory.js.map +0 -1
  710. package/local-dist-new/mcp/types.d.ts +0 -289
  711. package/local-dist-new/mcp/types.d.ts.map +0 -1
  712. package/local-dist-new/mcp/types.js +0 -8
  713. package/local-dist-new/mcp/types.js.map +0 -1
  714. package/local-dist-new/mcp.d.ts +0 -2
  715. package/local-dist-new/mcp.d.ts.map +0 -1
  716. package/local-dist-new/mcp.js +0 -2
  717. package/local-dist-new/mcp.js.map +0 -1
  718. package/local-dist-new/ml/adapters/amazon-bedrock.d.ts +0 -33
  719. package/local-dist-new/ml/adapters/amazon-bedrock.d.ts.map +0 -1
  720. package/local-dist-new/ml/adapters/amazon-bedrock.js +0 -610
  721. package/local-dist-new/ml/adapters/amazon-bedrock.js.map +0 -1
  722. package/local-dist-new/ml/adapters/anthropic.d.ts +0 -62
  723. package/local-dist-new/ml/adapters/anthropic.d.ts.map +0 -1
  724. package/local-dist-new/ml/adapters/anthropic.js +0 -682
  725. package/local-dist-new/ml/adapters/anthropic.js.map +0 -1
  726. package/local-dist-new/ml/adapters/azure-openai-responses.d.ts +0 -15
  727. package/local-dist-new/ml/adapters/azure-openai-responses.d.ts.map +0 -1
  728. package/local-dist-new/ml/adapters/azure-openai-responses.js +0 -233
  729. package/local-dist-new/ml/adapters/azure-openai-responses.js.map +0 -1
  730. package/local-dist-new/ml/adapters/google-shared.d.ts +0 -60
  731. package/local-dist-new/ml/adapters/google-shared.d.ts.map +0 -1
  732. package/local-dist-new/ml/adapters/google-shared.js +0 -316
  733. package/local-dist-new/ml/adapters/google-shared.js.map +0 -1
  734. package/local-dist-new/ml/adapters/google-vertex.d.ts +0 -15
  735. package/local-dist-new/ml/adapters/google-vertex.d.ts.map +0 -1
  736. package/local-dist-new/ml/adapters/google-vertex.js +0 -396
  737. package/local-dist-new/ml/adapters/google-vertex.js.map +0 -1
  738. package/local-dist-new/ml/adapters/google.d.ts +0 -16
  739. package/local-dist-new/ml/adapters/google.d.ts.map +0 -1
  740. package/local-dist-new/ml/adapters/google.js +0 -381
  741. package/local-dist-new/ml/adapters/google.js.map +0 -1
  742. package/local-dist-new/ml/adapters/kimi.d.ts +0 -22
  743. package/local-dist-new/ml/adapters/kimi.d.ts.map +0 -1
  744. package/local-dist-new/ml/adapters/kimi.js +0 -249
  745. package/local-dist-new/ml/adapters/kimi.js.map +0 -1
  746. package/local-dist-new/ml/adapters/mock.d.ts +0 -10
  747. package/local-dist-new/ml/adapters/mock.d.ts.map +0 -1
  748. package/local-dist-new/ml/adapters/mock.js +0 -64
  749. package/local-dist-new/ml/adapters/mock.js.map +0 -1
  750. package/local-dist-new/ml/adapters/openai-codex-responses.d.ts +0 -9
  751. package/local-dist-new/ml/adapters/openai-codex-responses.d.ts.map +0 -1
  752. package/local-dist-new/ml/adapters/openai-codex-responses.js +0 -397
  753. package/local-dist-new/ml/adapters/openai-codex-responses.js.map +0 -1
  754. package/local-dist-new/ml/adapters/openai-completions.d.ts +0 -25
  755. package/local-dist-new/ml/adapters/openai-completions.d.ts.map +0 -1
  756. package/local-dist-new/ml/adapters/openai-completions.js +0 -831
  757. package/local-dist-new/ml/adapters/openai-completions.js.map +0 -1
  758. package/local-dist-new/ml/adapters/openai-responses-shared.d.ts +0 -26
  759. package/local-dist-new/ml/adapters/openai-responses-shared.d.ts.map +0 -1
  760. package/local-dist-new/ml/adapters/openai-responses-shared.js +0 -461
  761. package/local-dist-new/ml/adapters/openai-responses-shared.js.map +0 -1
  762. package/local-dist-new/ml/adapters/openai-responses.d.ts +0 -13
  763. package/local-dist-new/ml/adapters/openai-responses.d.ts.map +0 -1
  764. package/local-dist-new/ml/adapters/openai-responses.js +0 -209
  765. package/local-dist-new/ml/adapters/openai-responses.js.map +0 -1
  766. package/local-dist-new/ml/adapters/openai-scaffold.d.ts +0 -4
  767. package/local-dist-new/ml/adapters/openai-scaffold.d.ts.map +0 -1
  768. package/local-dist-new/ml/adapters/openai-scaffold.js +0 -33
  769. package/local-dist-new/ml/adapters/openai-scaffold.js.map +0 -1
  770. package/local-dist-new/ml/adapters/register-builtins.d.ts +0 -3
  771. package/local-dist-new/ml/adapters/register-builtins.d.ts.map +0 -1
  772. package/local-dist-new/ml/adapters/register-builtins.js +0 -134
  773. package/local-dist-new/ml/adapters/register-builtins.js.map +0 -1
  774. package/local-dist-new/ml/adapters/simple-options.d.ts +0 -27
  775. package/local-dist-new/ml/adapters/simple-options.d.ts.map +0 -1
  776. package/local-dist-new/ml/adapters/simple-options.js +0 -96
  777. package/local-dist-new/ml/adapters/simple-options.js.map +0 -1
  778. package/local-dist-new/ml/adapters/transform-messages.d.ts +0 -22
  779. package/local-dist-new/ml/adapters/transform-messages.d.ts.map +0 -1
  780. package/local-dist-new/ml/adapters/transform-messages.js +0 -147
  781. package/local-dist-new/ml/adapters/transform-messages.js.map +0 -1
  782. package/local-dist-new/ml/api-registry.d.ts +0 -50
  783. package/local-dist-new/ml/api-registry.d.ts.map +0 -1
  784. package/local-dist-new/ml/api-registry.js +0 -121
  785. package/local-dist-new/ml/api-registry.js.map +0 -1
  786. package/local-dist-new/ml/cli.d.ts +0 -3
  787. package/local-dist-new/ml/cli.d.ts.map +0 -1
  788. package/local-dist-new/ml/cli.js +0 -117
  789. package/local-dist-new/ml/cli.js.map +0 -1
  790. package/local-dist-new/ml/env-api-keys.d.ts +0 -18
  791. package/local-dist-new/ml/env-api-keys.d.ts.map +0 -1
  792. package/local-dist-new/ml/env-api-keys.js +0 -121
  793. package/local-dist-new/ml/env-api-keys.js.map +0 -1
  794. package/local-dist-new/ml/index.d.ts +0 -27
  795. package/local-dist-new/ml/index.d.ts.map +0 -1
  796. package/local-dist-new/ml/index.js +0 -27
  797. package/local-dist-new/ml/index.js.map +0 -1
  798. package/local-dist-new/ml/kit/auth/anthropic.d.ts +0 -18
  799. package/local-dist-new/ml/kit/auth/anthropic.d.ts.map +0 -1
  800. package/local-dist-new/ml/kit/auth/anthropic.js +0 -152
  801. package/local-dist-new/ml/kit/auth/anthropic.js.map +0 -1
  802. package/local-dist-new/ml/kit/auth/github-copilot.d.ts +0 -23
  803. package/local-dist-new/ml/kit/auth/github-copilot.d.ts.map +0 -1
  804. package/local-dist-new/ml/kit/auth/github-copilot.js +0 -275
  805. package/local-dist-new/ml/kit/auth/github-copilot.js.map +0 -1
  806. package/local-dist-new/ml/kit/auth/index.d.ts +0 -50
  807. package/local-dist-new/ml/kit/auth/index.d.ts.map +0 -1
  808. package/local-dist-new/ml/kit/auth/index.js +0 -112
  809. package/local-dist-new/ml/kit/auth/index.js.map +0 -1
  810. package/local-dist-new/ml/kit/auth/kimi.d.ts +0 -24
  811. package/local-dist-new/ml/kit/auth/kimi.d.ts.map +0 -1
  812. package/local-dist-new/ml/kit/auth/kimi.js +0 -30
  813. package/local-dist-new/ml/kit/auth/kimi.js.map +0 -1
  814. package/local-dist-new/ml/kit/auth/openai-codex.d.ts +0 -37
  815. package/local-dist-new/ml/kit/auth/openai-codex.d.ts.map +0 -1
  816. package/local-dist-new/ml/kit/auth/openai-codex.js +0 -368
  817. package/local-dist-new/ml/kit/auth/openai-codex.js.map +0 -1
  818. package/local-dist-new/ml/kit/auth/pkce.d.ts +0 -15
  819. package/local-dist-new/ml/kit/auth/pkce.d.ts.map +0 -1
  820. package/local-dist-new/ml/kit/auth/pkce.js +0 -39
  821. package/local-dist-new/ml/kit/auth/pkce.js.map +0 -1
  822. package/local-dist-new/ml/kit/auth/types.d.ts +0 -72
  823. package/local-dist-new/ml/kit/auth/types.d.ts.map +0 -1
  824. package/local-dist-new/ml/kit/auth/types.js +0 -11
  825. package/local-dist-new/ml/kit/auth/types.js.map +0 -1
  826. package/local-dist-new/ml/kit/base-stream-handler.d.ts +0 -16
  827. package/local-dist-new/ml/kit/base-stream-handler.d.ts.map +0 -1
  828. package/local-dist-new/ml/kit/base-stream-handler.js +0 -25
  829. package/local-dist-new/ml/kit/base-stream-handler.js.map +0 -1
  830. package/local-dist-new/ml/kit/event-stream.d.ts +0 -45
  831. package/local-dist-new/ml/kit/event-stream.d.ts.map +0 -1
  832. package/local-dist-new/ml/kit/event-stream.js +0 -178
  833. package/local-dist-new/ml/kit/event-stream.js.map +0 -1
  834. package/local-dist-new/ml/kit/index.d.ts +0 -15
  835. package/local-dist-new/ml/kit/index.d.ts.map +0 -1
  836. package/local-dist-new/ml/kit/index.js +0 -15
  837. package/local-dist-new/ml/kit/index.js.map +0 -1
  838. package/local-dist-new/ml/kit/json-parse.d.ts +0 -21
  839. package/local-dist-new/ml/kit/json-parse.d.ts.map +0 -1
  840. package/local-dist-new/ml/kit/json-parse.js +0 -44
  841. package/local-dist-new/ml/kit/json-parse.js.map +0 -1
  842. package/local-dist-new/ml/kit/message-transform.d.ts +0 -29
  843. package/local-dist-new/ml/kit/message-transform.d.ts.map +0 -1
  844. package/local-dist-new/ml/kit/message-transform.js +0 -55
  845. package/local-dist-new/ml/kit/message-transform.js.map +0 -1
  846. package/local-dist-new/ml/kit/output-factory.d.ts +0 -3
  847. package/local-dist-new/ml/kit/output-factory.d.ts.map +0 -1
  848. package/local-dist-new/ml/kit/output-factory.js +0 -23
  849. package/local-dist-new/ml/kit/output-factory.js.map +0 -1
  850. package/local-dist-new/ml/kit/overflow.d.ts +0 -10
  851. package/local-dist-new/ml/kit/overflow.d.ts.map +0 -1
  852. package/local-dist-new/ml/kit/overflow.js +0 -76
  853. package/local-dist-new/ml/kit/overflow.js.map +0 -1
  854. package/local-dist-new/ml/kit/provider-adapter.d.ts +0 -57
  855. package/local-dist-new/ml/kit/provider-adapter.d.ts.map +0 -1
  856. package/local-dist-new/ml/kit/provider-adapter.js +0 -37
  857. package/local-dist-new/ml/kit/provider-adapter.js.map +0 -1
  858. package/local-dist-new/ml/kit/provider-client-builder.d.ts +0 -37
  859. package/local-dist-new/ml/kit/provider-client-builder.d.ts.map +0 -1
  860. package/local-dist-new/ml/kit/provider-client-builder.js +0 -50
  861. package/local-dist-new/ml/kit/provider-client-builder.js.map +0 -1
  862. package/local-dist-new/ml/kit/provider-consolidation.d.ts +0 -4
  863. package/local-dist-new/ml/kit/provider-consolidation.d.ts.map +0 -1
  864. package/local-dist-new/ml/kit/provider-consolidation.js +0 -33
  865. package/local-dist-new/ml/kit/provider-consolidation.js.map +0 -1
  866. package/local-dist-new/ml/kit/provider-constants.d.ts +0 -35
  867. package/local-dist-new/ml/kit/provider-constants.d.ts.map +0 -1
  868. package/local-dist-new/ml/kit/provider-constants.js +0 -35
  869. package/local-dist-new/ml/kit/provider-constants.js.map +0 -1
  870. package/local-dist-new/ml/kit/provider-errors.d.ts +0 -46
  871. package/local-dist-new/ml/kit/provider-errors.d.ts.map +0 -1
  872. package/local-dist-new/ml/kit/provider-errors.js +0 -103
  873. package/local-dist-new/ml/kit/provider-errors.js.map +0 -1
  874. package/local-dist-new/ml/kit/sanitize-unicode.d.ts +0 -3
  875. package/local-dist-new/ml/kit/sanitize-unicode.d.ts.map +0 -1
  876. package/local-dist-new/ml/kit/sanitize-unicode.js +0 -60
  877. package/local-dist-new/ml/kit/sanitize-unicode.js.map +0 -1
  878. package/local-dist-new/ml/kit/stream-event-helper.d.ts +0 -28
  879. package/local-dist-new/ml/kit/stream-event-helper.d.ts.map +0 -1
  880. package/local-dist-new/ml/kit/stream-event-helper.js +0 -52
  881. package/local-dist-new/ml/kit/stream-event-helper.js.map +0 -1
  882. package/local-dist-new/ml/kit/stream-handler-types.d.ts +0 -43
  883. package/local-dist-new/ml/kit/stream-handler-types.d.ts.map +0 -1
  884. package/local-dist-new/ml/kit/stream-handler-types.js +0 -23
  885. package/local-dist-new/ml/kit/stream-handler-types.js.map +0 -1
  886. package/local-dist-new/ml/kit/streaming-state-manager.d.ts +0 -50
  887. package/local-dist-new/ml/kit/streaming-state-manager.d.ts.map +0 -1
  888. package/local-dist-new/ml/kit/streaming-state-manager.js +0 -67
  889. package/local-dist-new/ml/kit/streaming-state-manager.js.map +0 -1
  890. package/local-dist-new/ml/kit/tool-converter.d.ts +0 -50
  891. package/local-dist-new/ml/kit/tool-converter.d.ts.map +0 -1
  892. package/local-dist-new/ml/kit/tool-converter.js +0 -54
  893. package/local-dist-new/ml/kit/tool-converter.js.map +0 -1
  894. package/local-dist-new/ml/kit/typebox-helpers.d.ts +0 -24
  895. package/local-dist-new/ml/kit/typebox-helpers.d.ts.map +0 -1
  896. package/local-dist-new/ml/kit/typebox-helpers.js +0 -46
  897. package/local-dist-new/ml/kit/typebox-helpers.js.map +0 -1
  898. package/local-dist-new/ml/kit/validation.d.ts +0 -24
  899. package/local-dist-new/ml/kit/validation.d.ts.map +0 -1
  900. package/local-dist-new/ml/kit/validation.js +0 -119
  901. package/local-dist-new/ml/kit/validation.js.map +0 -1
  902. package/local-dist-new/ml/models.d.ts +0 -41
  903. package/local-dist-new/ml/models.d.ts.map +0 -1
  904. package/local-dist-new/ml/models.generated.d.ts +0 -12124
  905. package/local-dist-new/ml/models.generated.d.ts.map +0 -1
  906. package/local-dist-new/ml/models.generated.js +0 -11959
  907. package/local-dist-new/ml/models.generated.js.map +0 -1
  908. package/local-dist-new/ml/models.js +0 -126
  909. package/local-dist-new/ml/models.js.map +0 -1
  910. package/local-dist-new/ml/stream.d.ts +0 -12
  911. package/local-dist-new/ml/stream.d.ts.map +0 -1
  912. package/local-dist-new/ml/stream.js +0 -54
  913. package/local-dist-new/ml/stream.js.map +0 -1
  914. package/local-dist-new/ml/types.d.ts +0 -270
  915. package/local-dist-new/ml/types.d.ts.map +0 -1
  916. package/local-dist-new/ml/types.js +0 -167
  917. package/local-dist-new/ml/types.js.map +0 -1
  918. package/local-dist-new/observability.d.ts +0 -2
  919. package/local-dist-new/observability.d.ts.map +0 -1
  920. package/local-dist-new/observability.js +0 -2
  921. package/local-dist-new/observability.js.map +0 -1
  922. package/local-dist-new/react-host/index.d.ts +0 -10
  923. package/local-dist-new/react-host/index.d.ts.map +0 -1
  924. package/local-dist-new/react-host/index.js +0 -9
  925. package/local-dist-new/react-host/index.js.map +0 -1
  926. package/local-dist-new/react-host/ink.d.ts +0 -6
  927. package/local-dist-new/react-host/ink.d.ts.map +0 -1
  928. package/local-dist-new/react-host/ink.js +0 -7
  929. package/local-dist-new/react-host/ink.js.map +0 -1
  930. package/local-dist-new/react-host/jsx-runtime.d.ts +0 -5
  931. package/local-dist-new/react-host/jsx-runtime.d.ts.map +0 -1
  932. package/local-dist-new/react-host/jsx-runtime.js +0 -6
  933. package/local-dist-new/react-host/jsx-runtime.js.map +0 -1
  934. package/local-dist-new/react-host/loader.d.ts +0 -4
  935. package/local-dist-new/react-host/loader.d.ts.map +0 -1
  936. package/local-dist-new/react-host/loader.js +0 -108
  937. package/local-dist-new/react-host/loader.js.map +0 -1
  938. package/local-dist-new/react-ink/components/ChangelogBlock.d.ts +0 -9
  939. package/local-dist-new/react-ink/components/ChangelogBlock.d.ts.map +0 -1
  940. package/local-dist-new/react-ink/components/ChangelogBlock.js +0 -58
  941. package/local-dist-new/react-ink/components/ChangelogBlock.js.map +0 -1
  942. package/local-dist-new/react-ink/components/DisplayBlockView.d.ts +0 -9
  943. package/local-dist-new/react-ink/components/DisplayBlockView.d.ts.map +0 -1
  944. package/local-dist-new/react-ink/components/DisplayBlockView.js +0 -11
  945. package/local-dist-new/react-ink/components/DisplayBlockView.js.map +0 -1
  946. package/local-dist-new/react-ink/components/Footer.d.ts +0 -12
  947. package/local-dist-new/react-ink/components/Footer.d.ts.map +0 -1
  948. package/local-dist-new/react-ink/components/Footer.js +0 -113
  949. package/local-dist-new/react-ink/components/Footer.js.map +0 -1
  950. package/local-dist-new/react-ink/components/MessageList.d.ts +0 -15
  951. package/local-dist-new/react-ink/components/MessageList.d.ts.map +0 -1
  952. package/local-dist-new/react-ink/components/MessageList.js +0 -43
  953. package/local-dist-new/react-ink/components/MessageList.js.map +0 -1
  954. package/local-dist-new/react-ink/components/MessageRow.d.ts +0 -14
  955. package/local-dist-new/react-ink/components/MessageRow.d.ts.map +0 -1
  956. package/local-dist-new/react-ink/components/MessageRow.js +0 -35
  957. package/local-dist-new/react-ink/components/MessageRow.js.map +0 -1
  958. package/local-dist-new/react-ink/components/StatusLine.d.ts +0 -10
  959. package/local-dist-new/react-ink/components/StatusLine.d.ts.map +0 -1
  960. package/local-dist-new/react-ink/components/StatusLine.js +0 -39
  961. package/local-dist-new/react-ink/components/StatusLine.js.map +0 -1
  962. package/local-dist-new/react-ink/components/TaskPanel.d.ts +0 -12
  963. package/local-dist-new/react-ink/components/TaskPanel.d.ts.map +0 -1
  964. package/local-dist-new/react-ink/components/TaskPanel.js +0 -23
  965. package/local-dist-new/react-ink/components/TaskPanel.js.map +0 -1
  966. package/local-dist-new/react-ink/components/ToolEventBlock.d.ts +0 -18
  967. package/local-dist-new/react-ink/components/ToolEventBlock.d.ts.map +0 -1
  968. package/local-dist-new/react-ink/components/ToolEventBlock.js +0 -61
  969. package/local-dist-new/react-ink/components/ToolEventBlock.js.map +0 -1
  970. package/local-dist-new/react-ink/components/dialogs/DialogFrame.d.ts +0 -9
  971. package/local-dist-new/react-ink/components/dialogs/DialogFrame.d.ts.map +0 -1
  972. package/local-dist-new/react-ink/components/dialogs/DialogFrame.js +0 -6
  973. package/local-dist-new/react-ink/components/dialogs/DialogFrame.js.map +0 -1
  974. package/local-dist-new/react-ink/components/dialogs/LoginDialog.d.ts +0 -15
  975. package/local-dist-new/react-ink/components/dialogs/LoginDialog.d.ts.map +0 -1
  976. package/local-dist-new/react-ink/components/dialogs/LoginDialog.js +0 -10
  977. package/local-dist-new/react-ink/components/dialogs/LoginDialog.js.map +0 -1
  978. package/local-dist-new/react-ink/components/dialogs/ModelDialog.d.ts +0 -10
  979. package/local-dist-new/react-ink/components/dialogs/ModelDialog.d.ts.map +0 -1
  980. package/local-dist-new/react-ink/components/dialogs/ModelDialog.js +0 -64
  981. package/local-dist-new/react-ink/components/dialogs/ModelDialog.js.map +0 -1
  982. package/local-dist-new/react-ink/components/dialogs/OAuthDialog.d.ts +0 -10
  983. package/local-dist-new/react-ink/components/dialogs/OAuthDialog.d.ts.map +0 -1
  984. package/local-dist-new/react-ink/components/dialogs/OAuthDialog.js +0 -24
  985. package/local-dist-new/react-ink/components/dialogs/OAuthDialog.js.map +0 -1
  986. package/local-dist-new/react-ink/components/dialogs/ScopedModelsDialog.d.ts +0 -10
  987. package/local-dist-new/react-ink/components/dialogs/ScopedModelsDialog.d.ts.map +0 -1
  988. package/local-dist-new/react-ink/components/dialogs/ScopedModelsDialog.js +0 -95
  989. package/local-dist-new/react-ink/components/dialogs/ScopedModelsDialog.js.map +0 -1
  990. package/local-dist-new/react-ink/components/dialogs/SelectableDialog.d.ts +0 -17
  991. package/local-dist-new/react-ink/components/dialogs/SelectableDialog.d.ts.map +0 -1
  992. package/local-dist-new/react-ink/components/dialogs/SelectableDialog.js +0 -66
  993. package/local-dist-new/react-ink/components/dialogs/SelectableDialog.js.map +0 -1
  994. package/local-dist-new/react-ink/components/dialogs/SessionDialog.d.ts +0 -14
  995. package/local-dist-new/react-ink/components/dialogs/SessionDialog.d.ts.map +0 -1
  996. package/local-dist-new/react-ink/components/dialogs/SessionDialog.js +0 -201
  997. package/local-dist-new/react-ink/components/dialogs/SessionDialog.js.map +0 -1
  998. package/local-dist-new/react-ink/components/dialogs/SettingsDialog.d.ts +0 -15
  999. package/local-dist-new/react-ink/components/dialogs/SettingsDialog.d.ts.map +0 -1
  1000. package/local-dist-new/react-ink/components/dialogs/SettingsDialog.js +0 -79
  1001. package/local-dist-new/react-ink/components/dialogs/SettingsDialog.js.map +0 -1
  1002. package/local-dist-new/react-ink/components/dialogs/StartupSessionPicker.d.ts +0 -10
  1003. package/local-dist-new/react-ink/components/dialogs/StartupSessionPicker.d.ts.map +0 -1
  1004. package/local-dist-new/react-ink/components/dialogs/StartupSessionPicker.js +0 -100
  1005. package/local-dist-new/react-ink/components/dialogs/StartupSessionPicker.js.map +0 -1
  1006. package/local-dist-new/react-ink/components/dialogs/ThemeDialog.d.ts +0 -8
  1007. package/local-dist-new/react-ink/components/dialogs/ThemeDialog.d.ts.map +0 -1
  1008. package/local-dist-new/react-ink/components/dialogs/ThemeDialog.js +0 -7
  1009. package/local-dist-new/react-ink/components/dialogs/ThemeDialog.js.map +0 -1
  1010. package/local-dist-new/react-ink/components/dialogs/TreeDialog.d.ts +0 -9
  1011. package/local-dist-new/react-ink/components/dialogs/TreeDialog.d.ts.map +0 -1
  1012. package/local-dist-new/react-ink/components/dialogs/TreeDialog.js +0 -7
  1013. package/local-dist-new/react-ink/components/dialogs/TreeDialog.js.map +0 -1
  1014. package/local-dist-new/react-ink/components/dialogs/UserMessageDialog.d.ts +0 -9
  1015. package/local-dist-new/react-ink/components/dialogs/UserMessageDialog.d.ts.map +0 -1
  1016. package/local-dist-new/react-ink/components/dialogs/UserMessageDialog.js +0 -7
  1017. package/local-dist-new/react-ink/components/dialogs/UserMessageDialog.js.map +0 -1
  1018. package/local-dist-new/react-ink/components/messages/AssistantMessage.d.ts +0 -13
  1019. package/local-dist-new/react-ink/components/messages/AssistantMessage.d.ts.map +0 -1
  1020. package/local-dist-new/react-ink/components/messages/AssistantMessage.js +0 -20
  1021. package/local-dist-new/react-ink/components/messages/AssistantMessage.js.map +0 -1
  1022. package/local-dist-new/react-ink/components/messages/BashMessage.d.ts +0 -9
  1023. package/local-dist-new/react-ink/components/messages/BashMessage.d.ts.map +0 -1
  1024. package/local-dist-new/react-ink/components/messages/BashMessage.js +0 -11
  1025. package/local-dist-new/react-ink/components/messages/BashMessage.js.map +0 -1
  1026. package/local-dist-new/react-ink/components/messages/BranchSummaryMessage.d.ts +0 -9
  1027. package/local-dist-new/react-ink/components/messages/BranchSummaryMessage.d.ts.map +0 -1
  1028. package/local-dist-new/react-ink/components/messages/BranchSummaryMessage.js +0 -6
  1029. package/local-dist-new/react-ink/components/messages/BranchSummaryMessage.js.map +0 -1
  1030. package/local-dist-new/react-ink/components/messages/CompactionMessage.d.ts +0 -9
  1031. package/local-dist-new/react-ink/components/messages/CompactionMessage.d.ts.map +0 -1
  1032. package/local-dist-new/react-ink/components/messages/CompactionMessage.js +0 -6
  1033. package/local-dist-new/react-ink/components/messages/CompactionMessage.js.map +0 -1
  1034. package/local-dist-new/react-ink/components/messages/CustomMessage.d.ts +0 -10
  1035. package/local-dist-new/react-ink/components/messages/CustomMessage.d.ts.map +0 -1
  1036. package/local-dist-new/react-ink/components/messages/CustomMessage.js +0 -9
  1037. package/local-dist-new/react-ink/components/messages/CustomMessage.js.map +0 -1
  1038. package/local-dist-new/react-ink/components/messages/SkillInvocationMessage.d.ts +0 -8
  1039. package/local-dist-new/react-ink/components/messages/SkillInvocationMessage.d.ts.map +0 -1
  1040. package/local-dist-new/react-ink/components/messages/SkillInvocationMessage.js +0 -10
  1041. package/local-dist-new/react-ink/components/messages/SkillInvocationMessage.js.map +0 -1
  1042. package/local-dist-new/react-ink/components/messages/ToolCallMessage.d.ts +0 -9
  1043. package/local-dist-new/react-ink/components/messages/ToolCallMessage.d.ts.map +0 -1
  1044. package/local-dist-new/react-ink/components/messages/ToolCallMessage.js +0 -8
  1045. package/local-dist-new/react-ink/components/messages/ToolCallMessage.js.map +0 -1
  1046. package/local-dist-new/react-ink/components/messages/ToolResultBlock.d.ts +0 -13
  1047. package/local-dist-new/react-ink/components/messages/ToolResultBlock.d.ts.map +0 -1
  1048. package/local-dist-new/react-ink/components/messages/ToolResultBlock.js +0 -8
  1049. package/local-dist-new/react-ink/components/messages/ToolResultBlock.js.map +0 -1
  1050. package/local-dist-new/react-ink/components/messages/UserMessage.d.ts +0 -10
  1051. package/local-dist-new/react-ink/components/messages/UserMessage.d.ts.map +0 -1
  1052. package/local-dist-new/react-ink/components/messages/UserMessage.js +0 -9
  1053. package/local-dist-new/react-ink/components/messages/UserMessage.js.map +0 -1
  1054. package/local-dist-new/react-ink/index.d.ts +0 -35
  1055. package/local-dist-new/react-ink/index.d.ts.map +0 -1
  1056. package/local-dist-new/react-ink/index.js +0 -35
  1057. package/local-dist-new/react-ink/index.js.map +0 -1
  1058. package/local-dist-new/react-ink/theme-adapter.d.ts +0 -10
  1059. package/local-dist-new/react-ink/theme-adapter.d.ts.map +0 -1
  1060. package/local-dist-new/react-ink/theme-adapter.js +0 -44
  1061. package/local-dist-new/react-ink/theme-adapter.js.map +0 -1
  1062. package/local-dist-new/react-ink/types.d.ts +0 -134
  1063. package/local-dist-new/react-ink/types.d.ts.map +0 -1
  1064. package/local-dist-new/react-ink/types.js +0 -2
  1065. package/local-dist-new/react-ink/types.js.map +0 -1
  1066. package/local-dist-new/react-ink/utils/message-groups.d.ts +0 -26
  1067. package/local-dist-new/react-ink/utils/message-groups.d.ts.map +0 -1
  1068. package/local-dist-new/react-ink/utils/message-groups.js +0 -240
  1069. package/local-dist-new/react-ink/utils/message-groups.js.map +0 -1
  1070. package/local-dist-new/react-ink/utils/selection-dialog.d.ts +0 -3
  1071. package/local-dist-new/react-ink/utils/selection-dialog.d.ts.map +0 -1
  1072. package/local-dist-new/react-ink/utils/selection-dialog.js +0 -18
  1073. package/local-dist-new/react-ink/utils/selection-dialog.js.map +0 -1
  1074. package/local-dist-new/react-ink/utils/session-browser.d.ts +0 -28
  1075. package/local-dist-new/react-ink/utils/session-browser.d.ts.map +0 -1
  1076. package/local-dist-new/react-ink/utils/session-browser.js +0 -191
  1077. package/local-dist-new/react-ink/utils/session-browser.js.map +0 -1
  1078. package/local-dist-new/react-ink/utils/tool-display.d.ts +0 -22
  1079. package/local-dist-new/react-ink/utils/tool-display.d.ts.map +0 -1
  1080. package/local-dist-new/react-ink/utils/tool-display.js +0 -349
  1081. package/local-dist-new/react-ink/utils/tool-display.js.map +0 -1
  1082. package/local-dist-new/react-ink.d.ts +0 -3
  1083. package/local-dist-new/react-ink.d.ts.map +0 -1
  1084. package/local-dist-new/react-ink.js +0 -2
  1085. package/local-dist-new/react-ink.js.map +0 -1
  1086. package/local-dist-new/tui.d.ts +0 -9
  1087. package/local-dist-new/tui.d.ts.map +0 -1
  1088. package/local-dist-new/tui.js +0 -8
  1089. package/local-dist-new/tui.js.map +0 -1
  1090. package/local-dist-new/ui/autocomplete.d.ts +0 -60
  1091. package/local-dist-new/ui/autocomplete.d.ts.map +0 -1
  1092. package/local-dist-new/ui/autocomplete.js +0 -393
  1093. package/local-dist-new/ui/autocomplete.js.map +0 -1
  1094. package/local-dist-new/ui/contracts.d.ts +0 -39
  1095. package/local-dist-new/ui/contracts.d.ts.map +0 -1
  1096. package/local-dist-new/ui/contracts.js +0 -2
  1097. package/local-dist-new/ui/contracts.js.map +0 -1
  1098. package/local-dist-new/ui/editor-component.d.ts +0 -101
  1099. package/local-dist-new/ui/editor-component.d.ts.map +0 -1
  1100. package/local-dist-new/ui/editor-component.js +0 -2
  1101. package/local-dist-new/ui/editor-component.js.map +0 -1
  1102. package/local-dist-new/ui/fuzzy.d.ts +0 -26
  1103. package/local-dist-new/ui/fuzzy.d.ts.map +0 -1
  1104. package/local-dist-new/ui/fuzzy.js +0 -177
  1105. package/local-dist-new/ui/fuzzy.js.map +0 -1
  1106. package/local-dist-new/ui/index.d.ts +0 -9
  1107. package/local-dist-new/ui/index.d.ts.map +0 -1
  1108. package/local-dist-new/ui/index.js +0 -6
  1109. package/local-dist-new/ui/index.js.map +0 -1
  1110. package/local-dist-new/ui/keybindings.d.ts +0 -52
  1111. package/local-dist-new/ui/keybindings.d.ts.map +0 -1
  1112. package/local-dist-new/ui/keybindings.js +0 -193
  1113. package/local-dist-new/ui/keybindings.js.map +0 -1
  1114. package/local-dist-new/ui/keys.d.ts +0 -168
  1115. package/local-dist-new/ui/keys.d.ts.map +0 -1
  1116. package/local-dist-new/ui/keys.js +0 -1093
  1117. package/local-dist-new/ui/keys.js.map +0 -1
  1118. package/local-dist-new/ui/theme-types.d.ts +0 -37
  1119. package/local-dist-new/ui/theme-types.d.ts.map +0 -1
  1120. package/local-dist-new/ui/theme-types.js +0 -2
  1121. package/local-dist-new/ui/theme-types.js.map +0 -1
  1122. package/local-dist-new/ui/utils.d.ts +0 -97
  1123. package/local-dist-new/ui/utils.d.ts.map +0 -1
  1124. package/local-dist-new/ui/utils.js +0 -860
  1125. package/local-dist-new/ui/utils.js.map +0 -1
  1126. package/observe.d.ts +0 -1
  1127. package/observe.js +0 -1
@@ -1,860 +0,0 @@
1
- import { eastAsianWidth } from "get-east-asian-width";
2
- // Grapheme segmenter (shared instance)
3
- const segmenter = new Intl.Segmenter(undefined, { granularity: "grapheme" });
4
- /**
5
- * Get the shared grapheme segmenter instance.
6
- */
7
- export function getSegmenter() {
8
- return segmenter;
9
- }
10
- export class GraphemeHandler {
11
- segment(text) {
12
- return segmenter.segment(text);
13
- }
14
- *iterator(text) {
15
- for (const { segment } of segmenter.segment(text)) {
16
- yield segment;
17
- }
18
- }
19
- }
20
- export class TextWidthCalculator {
21
- getWidth(text) {
22
- return visibleWidth(text);
23
- }
24
- clearCache() {
25
- widthCache.clear();
26
- }
27
- }
28
- export const textWidthCalculator = new TextWidthCalculator();
29
- /**
30
- * Check if a grapheme cluster (after segmentation) could possibly be an RGI emoji.
31
- * This is a fast heuristic to avoid the expensive rgiEmojiRegex test.
32
- * The tested Unicode blocks are deliberately broad to account for future
33
- * Unicode additions.
34
- */
35
- function looksLikeEmojiCandidate(segment) {
36
- const cp = segment.codePointAt(0);
37
- return ((cp >= 0x1f000 && cp <= 0x1fbff) || // Emoji and Pictograph
38
- (cp >= 0x2300 && cp <= 0x23ff) || // Misc technical
39
- (cp >= 0x2600 && cp <= 0x27bf) || // Misc symbols, dingbats
40
- (cp >= 0x2b50 && cp <= 0x2b55) || // Specific stars/circles
41
- segment.includes("\uFE0F") || // Contains VS16 (emoji presentation selector)
42
- segment.length > 2 // Multi-codepoint sequences (ZWJ, skin tones, etc.)
43
- );
44
- }
45
- // Regexes for character classification (same as string-width library)
46
- // Use dynamic construction to keep compatibility with ts target < es2024 while
47
- // still preferring Unicode Sets (v-flag) when available at runtime.
48
- function createUnicodeRegex(vPattern, uFallback) {
49
- try {
50
- return new RegExp(vPattern, "v");
51
- }
52
- catch {
53
- return new RegExp(uFallback, "u");
54
- }
55
- }
56
- const zeroWidthRegex = createUnicodeRegex("^(?:\\p{Default_Ignorable_Code_Point}|\\p{Control}|\\p{Mark}|\\p{Surrogate})+$", "^(?:\\p{Default_Ignorable_Code_Point}|\\p{Control}|\\p{Mark}|\\p{Surrogate})+$");
57
- const leadingNonPrintingRegex = createUnicodeRegex("^[\\p{Default_Ignorable_Code_Point}\\p{Control}\\p{Format}\\p{Mark}\\p{Surrogate}]+", "^[\\p{Default_Ignorable_Code_Point}\\p{Control}\\p{Format}\\p{Mark}\\p{Surrogate}]+");
58
- const rgiEmojiRegex = createUnicodeRegex("^\\p{RGI_Emoji}$", "^\\p{Extended_Pictographic}$");
59
- const AnsiStripper = {
60
- strip(text) {
61
- if (!text.includes("\x1b")) {
62
- return text;
63
- }
64
- let cleaned = text;
65
- // Strip SGR codes (\x1b[...m) and cursor codes (\x1b[...G/K/H/J)
66
- cleaned = cleaned.replace(/\x1b\[[0-9;]*[mGKHJ]/g, "");
67
- // Strip OSC 8 hyperlinks: \x1b]8;;URL\x07 and \x1b]8;;\x07
68
- cleaned = cleaned.replace(/\x1b\]8;;[^\x07]*\x07/g, "");
69
- // Strip APC sequences: \x1b_...\x07 or \x1b_...\x1b\\ (cursor marker)
70
- cleaned = cleaned.replace(/\x1b_[^\x07\x1b]*(?:\x07|\x1b\\)/g, "");
71
- return cleaned;
72
- },
73
- };
74
- // Cache for non-ASCII strings
75
- const WIDTH_CACHE_SIZE = 512;
76
- const widthCache = new Map();
77
- /**
78
- * Calculate the terminal width of a single grapheme cluster.
79
- * Based on code from the string-width library, but includes a possible-emoji
80
- * check to avoid running the RGI_Emoji regex unnecessarily.
81
- */
82
- function measureClusterWidth(segment) {
83
- // Zero-width clusters
84
- if (zeroWidthRegex.test(segment)) {
85
- return 0;
86
- }
87
- // Emoji check with pre-filter
88
- if (looksLikeEmojiCandidate(segment) && rgiEmojiRegex.test(segment)) {
89
- return 2;
90
- }
91
- // Get base visible codepoint
92
- const base = segment.replace(leadingNonPrintingRegex, "");
93
- const cp = base.codePointAt(0);
94
- if (cp === undefined) {
95
- return 0;
96
- }
97
- let width = eastAsianWidth(cp);
98
- // Trailing halfwidth/fullwidth forms
99
- if (segment.length > 1) {
100
- for (const char of segment.slice(1)) {
101
- const c = char.codePointAt(0);
102
- if (c >= 0xff00 && c <= 0xffef) {
103
- width += eastAsianWidth(c);
104
- }
105
- }
106
- }
107
- return width;
108
- }
109
- /**
110
- * Calculate the visible width of a string in terminal columns.
111
- */
112
- export function visibleWidth(str) {
113
- if (str.length === 0) {
114
- return 0;
115
- }
116
- // Fast path: pure ASCII printable
117
- let isPureAscii = true;
118
- for (let i = 0; i < str.length; i++) {
119
- const code = str.charCodeAt(i);
120
- if (code < 0x20 || code > 0x7e) {
121
- isPureAscii = false;
122
- break;
123
- }
124
- }
125
- if (isPureAscii) {
126
- return str.length;
127
- }
128
- // Check cache
129
- const cached = widthCache.get(str);
130
- if (cached !== undefined) {
131
- return cached;
132
- }
133
- // Normalize: tabs to 3 spaces, strip ANSI escape codes
134
- let clean = str;
135
- if (str.includes("\t")) {
136
- clean = clean.replace(/\t/g, " ");
137
- }
138
- clean = AnsiStripper.strip(clean);
139
- // Calculate width
140
- let width = 0;
141
- for (const { segment } of segmenter.segment(clean)) {
142
- width += measureClusterWidth(segment);
143
- }
144
- // Cache result
145
- if (widthCache.size >= WIDTH_CACHE_SIZE) {
146
- const firstKey = widthCache.keys().next().value;
147
- if (firstKey !== undefined) {
148
- widthCache.delete(firstKey);
149
- }
150
- }
151
- widthCache.set(str, width);
152
- return width;
153
- }
154
- /**
155
- * Extract ANSI escape sequences from a string at the given position.
156
- */
157
- export function extractAnsiCode(str, pos) {
158
- if (pos >= str.length || str[pos] !== "\x1b")
159
- return null;
160
- const next = str[pos + 1];
161
- // CSI sequence: ESC [ ... m/G/K/H/J
162
- if (next === "[") {
163
- let j = pos + 2;
164
- while (j < str.length && !/[mGKHJ]/.test(str[j]))
165
- j++;
166
- if (j < str.length)
167
- return { code: str.substring(pos, j + 1), length: j + 1 - pos };
168
- return null;
169
- }
170
- // OSC sequence: ESC ] ... BEL or ESC ] ... ST (ESC \)
171
- // Used for hyperlinks (OSC 8), window titles, etc.
172
- if (next === "]") {
173
- let j = pos + 2;
174
- while (j < str.length) {
175
- if (str[j] === "\x07")
176
- return { code: str.substring(pos, j + 1), length: j + 1 - pos };
177
- if (str[j] === "\x1b" && str[j + 1] === "\\")
178
- return { code: str.substring(pos, j + 2), length: j + 2 - pos };
179
- j++;
180
- }
181
- return null;
182
- }
183
- // APC sequence: ESC _ ... BEL or ESC _ ... ST (ESC \)
184
- // Used for cursor marker and application-specific commands
185
- if (next === "_") {
186
- let j = pos + 2;
187
- while (j < str.length) {
188
- if (str[j] === "\x07")
189
- return { code: str.substring(pos, j + 1), length: j + 1 - pos };
190
- if (str[j] === "\x1b" && str[j + 1] === "\\")
191
- return { code: str.substring(pos, j + 2), length: j + 2 - pos };
192
- j++;
193
- }
194
- return null;
195
- }
196
- return null;
197
- }
198
- /**
199
- * Track active ANSI SGR codes to preserve styling across line breaks.
200
- */
201
- class AnsiStateTracker {
202
- // Track individual attributes separately so we can reset them specifically
203
- _bold = false;
204
- _dim = false;
205
- italic = false;
206
- underline = false;
207
- blink = false;
208
- inverse = false;
209
- hidden = false;
210
- strikethrough = false;
211
- _colors = { fg: null, bg: null };
212
- process(ansiCode) {
213
- if (!ansiCode.endsWith("m")) {
214
- return;
215
- }
216
- // Extract the parameters between \x1b[ and m
217
- const match = ansiCode.match(/\x1b\[([\d;]*)m/);
218
- if (!match)
219
- return;
220
- const params = match[1];
221
- if (params === "" || params === "0") {
222
- // Full reset
223
- this.reset();
224
- return;
225
- }
226
- // Parse parameters (can be semicolon-separated)
227
- const parts = params.split(";");
228
- let i = 0;
229
- while (i < parts.length) {
230
- const code = Number.parseInt(parts[i] ?? "", 10);
231
- if (Number.isNaN(code)) {
232
- i++;
233
- continue;
234
- }
235
- const consumed = this.tryConsumeColorCode(parts, i, code);
236
- if (consumed > 0) {
237
- i += consumed;
238
- continue;
239
- }
240
- this.applyStandardCode(code);
241
- i++;
242
- }
243
- }
244
- tryConsumeColorCode(parts, index, code) {
245
- if (code !== 38 && code !== 48) {
246
- return 0;
247
- }
248
- if (parts[index + 1] === "5" && parts[index + 2] !== undefined) {
249
- const colorCode = `${parts[index]};${parts[index + 1]};${parts[index + 2]}`;
250
- if (code === 38) {
251
- this._colors.fg = colorCode;
252
- }
253
- else {
254
- this._colors.bg = colorCode;
255
- }
256
- return 3;
257
- }
258
- if (parts[index + 1] === "2" && parts[index + 4] !== undefined) {
259
- const colorCode = `${parts[index]};${parts[index + 1]};${parts[index + 2]};${parts[index + 3]};${parts[index + 4]}`;
260
- if (code === 38) {
261
- this._colors.fg = colorCode;
262
- }
263
- else {
264
- this._colors.bg = colorCode;
265
- }
266
- return 5;
267
- }
268
- return 0;
269
- }
270
- applyStandardCode(code) {
271
- switch (code) {
272
- case 0:
273
- this.reset();
274
- return;
275
- case 1:
276
- this._bold = true;
277
- return;
278
- case 2:
279
- this._dim = true;
280
- return;
281
- case 3:
282
- this.italic = true;
283
- return;
284
- case 4:
285
- this.underline = true;
286
- return;
287
- case 5:
288
- this.blink = true;
289
- return;
290
- case 7:
291
- this.inverse = true;
292
- return;
293
- case 8:
294
- this.hidden = true;
295
- return;
296
- case 9:
297
- this.strikethrough = true;
298
- return;
299
- case 21:
300
- this._bold = false;
301
- return;
302
- case 22:
303
- this._bold = false;
304
- this._dim = false;
305
- return;
306
- case 23:
307
- this.italic = false;
308
- return;
309
- case 24:
310
- this.underline = false;
311
- return;
312
- case 25:
313
- this.blink = false;
314
- return;
315
- case 27:
316
- this.inverse = false;
317
- return;
318
- case 28:
319
- this.hidden = false;
320
- return;
321
- case 29:
322
- this.strikethrough = false;
323
- return;
324
- case 39:
325
- this._colors.fg = null;
326
- return;
327
- case 49:
328
- this._colors.bg = null;
329
- return;
330
- default:
331
- if ((code >= 30 && code <= 37) || (code >= 90 && code <= 97)) {
332
- this._colors.fg = String(code);
333
- return;
334
- }
335
- if ((code >= 40 && code <= 47) || (code >= 100 && code <= 107)) {
336
- this._colors.bg = String(code);
337
- }
338
- }
339
- }
340
- reset() {
341
- this._bold = false;
342
- this._dim = false;
343
- this.italic = false;
344
- this.underline = false;
345
- this.blink = false;
346
- this.inverse = false;
347
- this.hidden = false;
348
- this.strikethrough = false;
349
- this._colors.fg = null;
350
- this._colors.bg = null;
351
- }
352
- /** Clear all state for reuse. */
353
- clear() {
354
- this.reset();
355
- }
356
- getActiveCodes() {
357
- const codes = [];
358
- if (this._bold)
359
- codes.push("1");
360
- if (this._dim)
361
- codes.push("2");
362
- if (this.italic)
363
- codes.push("3");
364
- if (this.underline)
365
- codes.push("4");
366
- if (this.blink)
367
- codes.push("5");
368
- if (this.inverse)
369
- codes.push("7");
370
- if (this.hidden)
371
- codes.push("8");
372
- if (this.strikethrough)
373
- codes.push("9");
374
- if (this._colors.fg)
375
- codes.push(this._colors.fg);
376
- if (this._colors.bg)
377
- codes.push(this._colors.bg);
378
- if (codes.length === 0)
379
- return "";
380
- return `\x1b[${codes.join(";")}m`;
381
- }
382
- hasActiveCodes() {
383
- return (this._bold ||
384
- this._dim ||
385
- this.italic ||
386
- this.underline ||
387
- this.blink ||
388
- this.inverse ||
389
- this.hidden ||
390
- this.strikethrough ||
391
- this._colors.fg !== null ||
392
- this._colors.bg !== null);
393
- }
394
- /**
395
- * Get reset codes for attributes that need to be turned off at line end,
396
- * specifically underline which bleeds into padding.
397
- * Returns empty string if no problematic attributes are active.
398
- */
399
- getLineEndReset() {
400
- // Only underline causes visual bleeding into padding
401
- // Other attributes like colors don't visually bleed to padding
402
- if (this.underline) {
403
- return "\x1b[24m"; // Underline off only
404
- }
405
- return "";
406
- }
407
- }
408
- function mergeTextIntoTracker(text, tracker) {
409
- let i = 0;
410
- while (i < text.length) {
411
- const ansiResult = extractAnsiCode(text, i);
412
- if (ansiResult) {
413
- tracker.process(ansiResult.code);
414
- i += ansiResult.length;
415
- }
416
- else {
417
- i++;
418
- }
419
- }
420
- }
421
- /**
422
- * Split text into words while keeping ANSI codes attached.
423
- */
424
- function tokenizeTextWithAnsi(text) {
425
- const tokens = [];
426
- let current = "";
427
- let pendingAnsi = ""; // ANSI codes waiting to be attached to next visible content
428
- let inWhitespace = false;
429
- let i = 0;
430
- while (i < text.length) {
431
- const ansiResult = extractAnsiCode(text, i);
432
- if (ansiResult) {
433
- // Hold ANSI codes separately - they'll be attached to the next visible char
434
- pendingAnsi += ansiResult.code;
435
- i += ansiResult.length;
436
- continue;
437
- }
438
- const char = text[i];
439
- const charIsSpace = char === " ";
440
- if (charIsSpace !== inWhitespace && current) {
441
- // Switching between whitespace and non-whitespace, push current token
442
- tokens.push(current);
443
- current = "";
444
- }
445
- // Attach any pending ANSI codes to this visible character
446
- if (pendingAnsi) {
447
- current += pendingAnsi;
448
- pendingAnsi = "";
449
- }
450
- inWhitespace = charIsSpace;
451
- current += char;
452
- i++;
453
- }
454
- // Handle any remaining pending ANSI codes (attach to last token)
455
- if (pendingAnsi) {
456
- current += pendingAnsi;
457
- }
458
- if (current) {
459
- tokens.push(current);
460
- }
461
- return tokens;
462
- }
463
- /**
464
- * Wrap text with ANSI codes preserved.
465
- *
466
- * ONLY does word wrapping - NO padding, NO background colors.
467
- * Returns lines where each line is <= width visible chars.
468
- * Active ANSI codes are preserved across line breaks.
469
- *
470
- * @param text - Text to wrap (may contain ANSI codes and newlines)
471
- * @param width - Maximum visible width per line
472
- * @returns Array of wrapped lines (NOT padded to width)
473
- */
474
- export class AnsiCodeManager {
475
- tracker = new AnsiStateTracker();
476
- process(ansiCode) {
477
- this.tracker.process(ansiCode);
478
- }
479
- toAnsiString() {
480
- return this.tracker.getActiveCodes();
481
- }
482
- reset() {
483
- this.tracker.reset();
484
- }
485
- }
486
- export class TextWrapper {
487
- wrap(text, width) {
488
- return wrapTextWithAnsi(text, width);
489
- }
490
- }
491
- export const textWrapper = new TextWrapper();
492
- const TokenWrapEngine = {
493
- wrap(tokens, width, tracker) {
494
- const wrapped = [];
495
- let currentLine = "";
496
- let currentVisibleLength = 0;
497
- for (const token of tokens) {
498
- const tokenVisibleLength = visibleWidth(token);
499
- const isWhitespace = token.trim() === "";
500
- // Token itself is too long - break it character by character
501
- if (tokenVisibleLength > width && !isWhitespace) {
502
- if (currentLine) {
503
- const lineEndReset = tracker.getLineEndReset();
504
- if (lineEndReset) {
505
- currentLine += lineEndReset;
506
- }
507
- wrapped.push(currentLine);
508
- currentLine = "";
509
- currentVisibleLength = 0;
510
- }
511
- const broken = splitLongToken(token, width, tracker);
512
- wrapped.push(...broken.slice(0, -1));
513
- currentLine = broken[broken.length - 1];
514
- currentVisibleLength = visibleWidth(currentLine);
515
- continue;
516
- }
517
- const totalNeeded = currentVisibleLength + tokenVisibleLength;
518
- if (totalNeeded > width && currentVisibleLength > 0) {
519
- let lineToWrap = currentLine.trimEnd();
520
- const lineEndReset = tracker.getLineEndReset();
521
- if (lineEndReset) {
522
- lineToWrap += lineEndReset;
523
- }
524
- wrapped.push(lineToWrap);
525
- if (isWhitespace) {
526
- currentLine = tracker.getActiveCodes();
527
- currentVisibleLength = 0;
528
- }
529
- else {
530
- currentLine = tracker.getActiveCodes() + token;
531
- currentVisibleLength = tokenVisibleLength;
532
- }
533
- }
534
- else {
535
- currentLine += token;
536
- currentVisibleLength += tokenVisibleLength;
537
- }
538
- mergeTextIntoTracker(token, tracker);
539
- }
540
- return { wrapped, currentLine, currentVisibleLength };
541
- },
542
- };
543
- export function wrapTextWithAnsi(text, width) {
544
- if (!text) {
545
- return [""];
546
- }
547
- // Handle newlines by processing each line separately
548
- // Track ANSI state across lines so styles carry over after literal newlines
549
- const inputLines = text.split("\n");
550
- const result = [];
551
- const tracker = new AnsiStateTracker();
552
- for (const inputLine of inputLines) {
553
- // Prepend active ANSI codes from previous lines (except for first line)
554
- const prefix = result.length > 0 ? tracker.getActiveCodes() : "";
555
- result.push(...wrapLinePreservingAnsi(prefix + inputLine, width));
556
- // Update tracker with codes from this line for next iteration
557
- mergeTextIntoTracker(inputLine, tracker);
558
- }
559
- return result.length > 0 ? result : [""];
560
- }
561
- function wrapLinePreservingAnsi(line, width) {
562
- if (!line) {
563
- return [""];
564
- }
565
- const visibleLength = visibleWidth(line);
566
- if (visibleLength <= width) {
567
- return [line];
568
- }
569
- const tracker = new AnsiStateTracker();
570
- const tokens = tokenizeTextWithAnsi(line);
571
- const { wrapped, currentLine } = TokenWrapEngine.wrap(tokens, width, tracker);
572
- if (currentLine) {
573
- // No reset at end of final line - let caller handle it
574
- wrapped.push(currentLine);
575
- }
576
- // Trailing whitespace can cause lines to exceed the requested width
577
- return wrapped.length > 0 ? wrapped.map((segmentLine) => segmentLine.trimEnd()) : [""];
578
- }
579
- const PUNCTUATION_REGEX = /[(){}[\]<>.,;:'"!?+\-=*/\\|&%^$#@~`]/;
580
- /**
581
- * Check if a character is whitespace.
582
- */
583
- export function isWhitespaceChar(char) {
584
- return /\s/.test(char);
585
- }
586
- /**
587
- * Check if a character is punctuation.
588
- */
589
- export function isPunctuationChar(char) {
590
- return PUNCTUATION_REGEX.test(char);
591
- }
592
- function splitLongToken(word, width, tracker) {
593
- const lines = [];
594
- let currentLine = tracker.getActiveCodes();
595
- let currentWidth = 0;
596
- // First, separate ANSI codes from visible content
597
- // We need to handle ANSI codes specially since they're not graphemes
598
- let i = 0;
599
- const segments = [];
600
- while (i < word.length) {
601
- const ansiResult = extractAnsiCode(word, i);
602
- if (ansiResult) {
603
- segments.push({ type: "ansi", value: ansiResult.code });
604
- i += ansiResult.length;
605
- }
606
- else {
607
- // Find the next ANSI code or end of string
608
- let end = i;
609
- while (end < word.length) {
610
- const nextAnsi = extractAnsiCode(word, end);
611
- if (nextAnsi)
612
- break;
613
- end++;
614
- }
615
- // Segment this non-ANSI portion into graphemes
616
- const textPortion = word.slice(i, end);
617
- for (const seg of segmenter.segment(textPortion)) {
618
- segments.push({ type: "grapheme", value: seg.segment });
619
- }
620
- i = end;
621
- }
622
- }
623
- // Now process segments
624
- for (const seg of segments) {
625
- if (seg.type === "ansi") {
626
- currentLine += seg.value;
627
- tracker.process(seg.value);
628
- continue;
629
- }
630
- const grapheme = seg.value;
631
- // Skip empty graphemes to avoid issues with string-width calculation
632
- if (!grapheme)
633
- continue;
634
- const clusterWidth = visibleWidth(grapheme);
635
- if (currentWidth + clusterWidth > width) {
636
- // Add specific reset for underline only (preserves background)
637
- const lineEndReset = tracker.getLineEndReset();
638
- if (lineEndReset) {
639
- currentLine += lineEndReset;
640
- }
641
- lines.push(currentLine);
642
- currentLine = tracker.getActiveCodes();
643
- currentWidth = 0;
644
- }
645
- currentLine += grapheme;
646
- currentWidth += clusterWidth;
647
- }
648
- if (currentLine) {
649
- // No reset at end of final segment - caller handles continuation
650
- lines.push(currentLine);
651
- }
652
- return lines.length > 0 ? lines : [""];
653
- }
654
- /**
655
- * Apply background color to a line, padding to full width.
656
- *
657
- * @param line - Line of text (may contain ANSI codes)
658
- * @param width - Total width to pad to
659
- * @param bgFn - Background color function
660
- * @returns Line with background applied and padded to width
661
- */
662
- export function applyBackgroundToLine(line, width, bgFn) {
663
- // Calculate padding needed
664
- const visibleLen = visibleWidth(line);
665
- const paddingNeeded = Math.max(0, width - visibleLen);
666
- const padding = " ".repeat(paddingNeeded);
667
- // Apply background to content + padding
668
- const withPadding = line + padding;
669
- return bgFn(withPadding);
670
- }
671
- /**
672
- * Truncate text to fit within a maximum visible width, adding ellipsis if needed.
673
- * Optionally pad with spaces to reach exactly maxWidth.
674
- * Properly handles ANSI escape codes (they don't count toward width).
675
- *
676
- * @param text - Text to truncate (may contain ANSI codes)
677
- * @param maxWidth - Maximum visible width
678
- * @param ellipsis - Ellipsis string to append when truncating (default: "...")
679
- * @param pad - If true, pad result with spaces to exactly maxWidth (default: false)
680
- * @returns Truncated text, optionally padded to exactly maxWidth
681
- */
682
- export function truncateToWidth(text, maxWidth, ellipsis = "...", pad = false) {
683
- const textVisibleWidth = visibleWidth(text);
684
- if (textVisibleWidth <= maxWidth) {
685
- return pad ? text + " ".repeat(maxWidth - textVisibleWidth) : text;
686
- }
687
- const ellipsisWidth = visibleWidth(ellipsis);
688
- const targetWidth = maxWidth - ellipsisWidth;
689
- if (targetWidth <= 0) {
690
- return ellipsis.substring(0, maxWidth);
691
- }
692
- // Separate ANSI codes from visible content using grapheme segmentation
693
- let i = 0;
694
- const segments = [];
695
- while (i < text.length) {
696
- const ansiResult = extractAnsiCode(text, i);
697
- if (ansiResult) {
698
- segments.push({ type: "ansi", value: ansiResult.code });
699
- i += ansiResult.length;
700
- }
701
- else {
702
- // Find the next ANSI code or end of string
703
- let end = i;
704
- while (end < text.length) {
705
- const nextAnsi = extractAnsiCode(text, end);
706
- if (nextAnsi)
707
- break;
708
- end++;
709
- }
710
- // Segment this non-ANSI portion into graphemes
711
- const textPortion = text.slice(i, end);
712
- for (const seg of segmenter.segment(textPortion)) {
713
- segments.push({ type: "grapheme", value: seg.segment });
714
- }
715
- i = end;
716
- }
717
- }
718
- // Build truncated string from segments
719
- let result = "";
720
- let currentWidth = 0;
721
- for (const seg of segments) {
722
- if (seg.type === "ansi") {
723
- result += seg.value;
724
- continue;
725
- }
726
- const grapheme = seg.value;
727
- // Skip empty graphemes to avoid issues with string-width calculation
728
- if (!grapheme)
729
- continue;
730
- const clusterWidth = visibleWidth(grapheme);
731
- if (currentWidth + clusterWidth > targetWidth) {
732
- break;
733
- }
734
- result += grapheme;
735
- currentWidth += clusterWidth;
736
- }
737
- // Add reset code before ellipsis to prevent styling leaking into it
738
- const truncated = `${result}\x1b[0m${ellipsis}`;
739
- if (pad) {
740
- const truncatedWidth = visibleWidth(truncated);
741
- return truncated + " ".repeat(Math.max(0, maxWidth - truncatedWidth));
742
- }
743
- return truncated;
744
- }
745
- /**
746
- * Extract a range of visible columns from a line. Handles ANSI codes and wide chars.
747
- * @param strict - If true, exclude wide chars at boundary that would extend past the range
748
- */
749
- export function sliceByColumn(line, startCol, length, strict = false) {
750
- return sliceWithWidth(line, startCol, length, strict).text;
751
- }
752
- /** Like sliceByColumn but also returns the actual visible width of the result. */
753
- export function sliceWithWidth(line, startCol, length, strict = false) {
754
- if (length <= 0)
755
- return { text: "", width: 0 };
756
- const endCol = startCol + length;
757
- let result = "", resultWidth = 0, currentCol = 0, i = 0, pendingAnsi = "";
758
- while (i < line.length) {
759
- const ansi = extractAnsiCode(line, i);
760
- if (ansi) {
761
- if (currentCol >= startCol && currentCol < endCol)
762
- result += ansi.code;
763
- else if (currentCol < startCol)
764
- pendingAnsi += ansi.code;
765
- i += ansi.length;
766
- continue;
767
- }
768
- let textEnd = i;
769
- while (textEnd < line.length && !extractAnsiCode(line, textEnd))
770
- textEnd++;
771
- for (const { segment } of segmenter.segment(line.slice(i, textEnd))) {
772
- const w = measureClusterWidth(segment);
773
- const inRange = currentCol >= startCol && currentCol < endCol;
774
- const fits = !strict || currentCol + w <= endCol;
775
- if (inRange && fits) {
776
- if (pendingAnsi) {
777
- result += pendingAnsi;
778
- pendingAnsi = "";
779
- }
780
- result += segment;
781
- resultWidth += w;
782
- }
783
- currentCol += w;
784
- if (currentCol >= endCol)
785
- break;
786
- }
787
- i = textEnd;
788
- if (currentCol >= endCol)
789
- break;
790
- }
791
- return { text: result, width: resultWidth };
792
- }
793
- // Pooled tracker instance for extractSegments (avoids allocation per call)
794
- const pooledStyleTracker = new AnsiStateTracker();
795
- /**
796
- * Extract "before" and "after" segments from a line in a single pass.
797
- * Used for overlay compositing where we need content before and after the overlay region.
798
- * Preserves styling from before the overlay that should affect content after it.
799
- */
800
- export function extractSegments(line, beforeEnd, afterStart, afterLen, strictAfter = false) {
801
- let before = "", beforeWidth = 0, after = "", afterWidth = 0;
802
- let currentCol = 0, i = 0;
803
- let pendingAnsiBefore = "";
804
- let afterStarted = false;
805
- const afterEnd = afterStart + afterLen;
806
- // Track styling state so "after" inherits styling from before the overlay
807
- pooledStyleTracker.clear();
808
- while (i < line.length) {
809
- const ansi = extractAnsiCode(line, i);
810
- if (ansi) {
811
- // Track all SGR codes to know styling state at afterStart
812
- pooledStyleTracker.process(ansi.code);
813
- // Include ANSI codes in their respective segments
814
- if (currentCol < beforeEnd) {
815
- pendingAnsiBefore += ansi.code;
816
- }
817
- else if (currentCol >= afterStart && currentCol < afterEnd && afterStarted) {
818
- // Only include after we've started "after" (styling already prepended)
819
- after += ansi.code;
820
- }
821
- i += ansi.length;
822
- continue;
823
- }
824
- let textEnd = i;
825
- while (textEnd < line.length && !extractAnsiCode(line, textEnd))
826
- textEnd++;
827
- for (const { segment } of segmenter.segment(line.slice(i, textEnd))) {
828
- const w = measureClusterWidth(segment);
829
- if (currentCol < beforeEnd) {
830
- if (pendingAnsiBefore) {
831
- before += pendingAnsiBefore;
832
- pendingAnsiBefore = "";
833
- }
834
- before += segment;
835
- beforeWidth += w;
836
- }
837
- else if (currentCol >= afterStart && currentCol < afterEnd) {
838
- const fits = !strictAfter || currentCol + w <= afterEnd;
839
- if (fits) {
840
- // On first "after" grapheme, prepend inherited styling from before overlay
841
- if (!afterStarted) {
842
- after += pooledStyleTracker.getActiveCodes();
843
- afterStarted = true;
844
- }
845
- after += segment;
846
- afterWidth += w;
847
- }
848
- }
849
- currentCol += w;
850
- // Early exit: done with "before" only, or done with both segments
851
- if (afterLen <= 0 ? currentCol >= beforeEnd : currentCol >= afterEnd)
852
- break;
853
- }
854
- i = textEnd;
855
- if (afterLen <= 0 ? currentCol >= beforeEnd : currentCol >= afterEnd)
856
- break;
857
- }
858
- return { before, beforeWidth, after, afterWidth };
859
- }
860
- //# sourceMappingURL=utils.js.map