salmon-loop 0.2.3

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 (655) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +144 -0
  3. package/README.zh-CN.md +144 -0
  4. package/dist/cli/argv/headless-detection.js +60 -0
  5. package/dist/cli/argv/print-mode.js +60 -0
  6. package/dist/cli/authorization/allowlist.js +908 -0
  7. package/dist/cli/authorization/non-interactive.js +166 -0
  8. package/dist/cli/authorization/provider.js +416 -0
  9. package/dist/cli/chat-interface.js +83 -0
  10. package/dist/cli/chat.js +492 -0
  11. package/dist/cli/cli-runtime-context.js +12 -0
  12. package/dist/cli/commander-error-adapter.js +35 -0
  13. package/dist/cli/commander-error-meta.js +13 -0
  14. package/dist/cli/commands/allowlist.js +270 -0
  15. package/dist/cli/commands/chat.js +120 -0
  16. package/dist/cli/commands/config.js +250 -0
  17. package/dist/cli/commands/context.js +57 -0
  18. package/dist/cli/commands/dispatcher.js +53 -0
  19. package/dist/cli/commands/exit.js +9 -0
  20. package/dist/cli/commands/llm-output.js +135 -0
  21. package/dist/cli/commands/log-mode.js +143 -0
  22. package/dist/cli/commands/mode.js +136 -0
  23. package/dist/cli/commands/new.js +18 -0
  24. package/dist/cli/commands/parallel.js +256 -0
  25. package/dist/cli/commands/queue.js +130 -0
  26. package/dist/cli/commands/registry.js +85 -0
  27. package/dist/cli/commands/restore.js +26 -0
  28. package/dist/cli/commands/run/assistant-message.js +14 -0
  29. package/dist/cli/commands/run/config-resolution.js +37 -0
  30. package/dist/cli/commands/run/early-errors.js +108 -0
  31. package/dist/cli/commands/run/execute.js +73 -0
  32. package/dist/cli/commands/run/extensions-resolution.js +22 -0
  33. package/dist/cli/commands/run/handler.js +434 -0
  34. package/dist/cli/commands/run/headless-error-writer.js +182 -0
  35. package/dist/cli/commands/run/instruction-guard.js +24 -0
  36. package/dist/cli/commands/run/loop-params.js +46 -0
  37. package/dist/cli/commands/run/mode.js +8 -0
  38. package/dist/cli/commands/run/parse-options.js +67 -0
  39. package/dist/cli/commands/run/persist-session.js +35 -0
  40. package/dist/cli/commands/run/preflight.js +156 -0
  41. package/dist/cli/commands/run/reporter-factory.js +52 -0
  42. package/dist/cli/commands/run/runtime-llm.js +56 -0
  43. package/dist/cli/commands/run/runtime-options.js +30 -0
  44. package/dist/cli/commands/run/session.js +19 -0
  45. package/dist/cli/commands/run/structured-output.js +106 -0
  46. package/dist/cli/commands/run/types.js +2 -0
  47. package/dist/cli/commands/run/validate-options.js +28 -0
  48. package/dist/cli/commands/run/verbose.js +36 -0
  49. package/dist/cli/commands/run.js +2 -0
  50. package/dist/cli/commands/serve.js +323 -0
  51. package/dist/cli/commands/session.js +77 -0
  52. package/dist/cli/commands/snapshot-interactive.js +165 -0
  53. package/dist/cli/commands/snapshot.js +159 -0
  54. package/dist/cli/commands/status.js +17 -0
  55. package/dist/cli/commands/subagent.js +178 -0
  56. package/dist/cli/commands/subcommand-suggestions.js +63 -0
  57. package/dist/cli/commands/tool-names.js +155 -0
  58. package/dist/cli/commands/types.js +2 -0
  59. package/dist/cli/commands/utils.js +42 -0
  60. package/dist/cli/config.js +16 -0
  61. package/dist/cli/crash-reporter.js +5 -0
  62. package/dist/cli/headless/anthropic-stream-normalized-encoder.js +164 -0
  63. package/dist/cli/headless/anthropic-stream-protocol.js +62 -0
  64. package/dist/cli/headless/json-protocol.js +124 -0
  65. package/dist/cli/headless/native-stream-normalized-encoder.js +206 -0
  66. package/dist/cli/headless/openai-responses-canonical-applier.js +94 -0
  67. package/dist/cli/headless/openai-responses-state.js +294 -0
  68. package/dist/cli/headless/openai-stream-encoder.js +152 -0
  69. package/dist/cli/headless/stdout-writer.js +9 -0
  70. package/dist/cli/headless/stream-json-protocol.js +136 -0
  71. package/dist/cli/index.js +8 -0
  72. package/dist/cli/locales/en.js +409 -0
  73. package/dist/cli/locales/index.js +7 -0
  74. package/dist/cli/program-bootstrap.js +14 -0
  75. package/dist/cli/program-commands.js +106 -0
  76. package/dist/cli/program-options.js +15 -0
  77. package/dist/cli/program-output-mode.js +11 -0
  78. package/dist/cli/program-parse.js +24 -0
  79. package/dist/cli/reporters/anthropic-stream.js +77 -0
  80. package/dist/cli/reporters/base.js +2 -0
  81. package/dist/cli/reporters/json.js +69 -0
  82. package/dist/cli/reporters/openai-stream.js +72 -0
  83. package/dist/cli/reporters/standard.js +226 -0
  84. package/dist/cli/reporters/stderr-log-reporter.js +71 -0
  85. package/dist/cli/reporters/stream-json.js +111 -0
  86. package/dist/cli/run-cli.js +25 -0
  87. package/dist/cli/slash/runtime.js +240 -0
  88. package/dist/cli/ui/App.js +273 -0
  89. package/dist/cli/ui/authorization/bus.js +35 -0
  90. package/dist/cli/ui/components/CommandInput.js +200 -0
  91. package/dist/cli/ui/components/CommandSuggestionList.js +20 -0
  92. package/dist/cli/ui/components/Markdown.js +423 -0
  93. package/dist/cli/ui/components/MessageList.js +34 -0
  94. package/dist/cli/ui/components/StatusBannerLine.js +7 -0
  95. package/dist/cli/ui/components/TodoDrawer.js +60 -0
  96. package/dist/cli/ui/components/WelcomeMessage.js +14 -0
  97. package/dist/cli/ui/components/animations/StretchingThinking.js +51 -0
  98. package/dist/cli/ui/components/animations/ThinkingWave.js +15 -0
  99. package/dist/cli/ui/components/animations/TypeIndicator.js +30 -0
  100. package/dist/cli/ui/components/layout/SplitPane.js +11 -0
  101. package/dist/cli/ui/components/messageList/MessageItem.js +27 -0
  102. package/dist/cli/ui/components/messageList/QueuePreviewList.js +11 -0
  103. package/dist/cli/ui/components/messageList/items/EmphasisMessageItem.js +20 -0
  104. package/dist/cli/ui/components/messageList/items/InterruptMessageItem.js +10 -0
  105. package/dist/cli/ui/components/messageList/items/LightweightMessageItem.js +12 -0
  106. package/dist/cli/ui/components/messageList/items/StandardMessageItem.js +23 -0
  107. package/dist/cli/ui/components/messageList/items/WelcomeMessageItem.js +7 -0
  108. package/dist/cli/ui/components/messageList/messageListLayout.js +27 -0
  109. package/dist/cli/ui/components/messageList/streaming.js +51 -0
  110. package/dist/cli/ui/components/messageList/types.js +2 -0
  111. package/dist/cli/ui/components/messageList/utils.js +7 -0
  112. package/dist/cli/ui/components/sidebar/FileContext.js +8 -0
  113. package/dist/cli/ui/components/sidebar/MissionControl.js +8 -0
  114. package/dist/cli/ui/config.js +59 -0
  115. package/dist/cli/ui/hooks/useCommandLifecycle.js +110 -0
  116. package/dist/cli/ui/hooks/useCommandSuggestions.js +87 -0
  117. package/dist/cli/ui/hooks/useInputHistory.js +57 -0
  118. package/dist/cli/ui/hooks/useLoopEvents.js +382 -0
  119. package/dist/cli/ui/hooks/useLoopState.js +73 -0
  120. package/dist/cli/ui/hooks/useOnionExit.js +31 -0
  121. package/dist/cli/ui/hooks/useTerminalDimensions.js +34 -0
  122. package/dist/cli/ui/index.js +136 -0
  123. package/dist/cli/ui/selection/bus.js +35 -0
  124. package/dist/cli/ui/status/formatStatusBanner.js +8 -0
  125. package/dist/cli/ui/store/context.js +17 -0
  126. package/dist/cli/ui/store/reducer.js +264 -0
  127. package/dist/cli/ui/store/types.js +81 -0
  128. package/dist/cli/ui/styles/theme.js +295 -0
  129. package/dist/cli/ui/types.js +2 -0
  130. package/dist/cli/ui/utils/sanitizer.js +122 -0
  131. package/dist/cli/ui/utils/transcript.js +28 -0
  132. package/dist/cli/utils/asyncQueue.js +125 -0
  133. package/dist/cli/utils/audit-scope.js +10 -0
  134. package/dist/cli/utils/detectors/index.js +38 -0
  135. package/dist/cli/utils/llm-output.js +34 -0
  136. package/dist/cli/utils/outcome-reporter.js +17 -0
  137. package/dist/cli/utils/safe-fs.js +184 -0
  138. package/dist/cli/utils/verify-resolver.js +34 -0
  139. package/dist/cli/utils/worktree-prepare-resolver.js +18 -0
  140. package/dist/core/adapters/fs/atomic-file-writer.js +129 -0
  141. package/dist/core/adapters/fs/file-adapter.js +95 -0
  142. package/dist/core/adapters/fs/filesystem.js +31 -0
  143. package/dist/core/adapters/fs/index.js +5 -0
  144. package/dist/core/adapters/fs/node-fs.js +7 -0
  145. package/dist/core/adapters/fs/readonly-filesystem.js +23 -0
  146. package/dist/core/adapters/git/git-adapter.js +704 -0
  147. package/dist/core/adapters/git/git-runner.js +119 -0
  148. package/dist/core/adapters/git/lock-manager.js +314 -0
  149. package/dist/core/adapters/git/types.js +2 -0
  150. package/dist/core/adapters/path/index.js +2 -0
  151. package/dist/core/adapters/path/path-adapter.js +23 -0
  152. package/dist/core/ast/guard.js +116 -0
  153. package/dist/core/ast/index.js +4 -0
  154. package/dist/core/ast/parser.js +284 -0
  155. package/dist/core/ast/validator.js +46 -0
  156. package/dist/core/backends/salmon-loop/task-executor.js +68 -0
  157. package/dist/core/checkpoint-domain/manifest-store.js +379 -0
  158. package/dist/core/checkpoint-domain/service.js +84 -0
  159. package/dist/core/checkpoint-domain/types.js +2 -0
  160. package/dist/core/config/defaults.js +50 -0
  161. package/dist/core/config/errors.js +11 -0
  162. package/dist/core/config/file-format.js +108 -0
  163. package/dist/core/config/index.js +7 -0
  164. package/dist/core/config/limits.js +77 -0
  165. package/dist/core/config/load.js +34 -0
  166. package/dist/core/config/normalize.js +35 -0
  167. package/dist/core/config/paths.js +20 -0
  168. package/dist/core/config/redact.js +16 -0
  169. package/dist/core/config/resolve-env.js +43 -0
  170. package/dist/core/config/resolve-llm.js +130 -0
  171. package/dist/core/config/resolve.js +68 -0
  172. package/dist/core/config/resolvers/ast-validation.js +8 -0
  173. package/dist/core/config/resolvers/context.js +21 -0
  174. package/dist/core/config/resolvers/observability.js +45 -0
  175. package/dist/core/config/resolvers/output.js +8 -0
  176. package/dist/core/config/resolvers/permission-mode.js +6 -0
  177. package/dist/core/config/resolvers/security.js +14 -0
  178. package/dist/core/config/resolvers/server.js +36 -0
  179. package/dist/core/config/resolvers/tool-authorization.js +39 -0
  180. package/dist/core/config/resolvers/ui.js +26 -0
  181. package/dist/core/config/types/config-file.js +2 -0
  182. package/dist/core/config/types/primitives.js +9 -0
  183. package/dist/core/config/types/resolved.js +2 -0
  184. package/dist/core/config/types.js +4 -0
  185. package/dist/core/config/validate.js +852 -0
  186. package/dist/core/context/assembly/default-prompt-assembler.js +7 -0
  187. package/dist/core/context/assembly/prompt-assembler.js +2 -0
  188. package/dist/core/context/ast/import-extractor.js +28 -0
  189. package/dist/core/context/ast/module-resolver.js +61 -0
  190. package/dist/core/context/ast/source-outline.js +25 -0
  191. package/dist/core/context/audit-constants.js +23 -0
  192. package/dist/core/context/audit.js +54 -0
  193. package/dist/core/context/budget/dynamic-adjuster.js +149 -0
  194. package/dist/core/context/budget/example-integration.js +49 -0
  195. package/dist/core/context/budget/integration.js +93 -0
  196. package/dist/core/context/builder.js +289 -0
  197. package/dist/core/context/cache/errors.js +16 -0
  198. package/dist/core/context/cache/incremental-updater.js +131 -0
  199. package/dist/core/context/cache/index.js +25 -0
  200. package/dist/core/context/cache/path-resolver.js +127 -0
  201. package/dist/core/context/cache/prompt-caching.js +207 -0
  202. package/dist/core/context/cache/store-factory.js +63 -0
  203. package/dist/core/context/cache/store.js +193 -0
  204. package/dist/core/context/cache/types.js +15 -0
  205. package/dist/core/context/compression/js-like-comments.js +139 -0
  206. package/dist/core/context/compression/smart-compress.js +61 -0
  207. package/dist/core/context/compression/whitespace.js +26 -0
  208. package/dist/core/context/dependencies.js +102 -0
  209. package/dist/core/context/effectiveness/index.js +25 -0
  210. package/dist/core/context/effectiveness/tracker.js +253 -0
  211. package/dist/core/context/effectiveness/types.js +15 -0
  212. package/dist/core/context/formatters/index.js +7 -0
  213. package/dist/core/context/formatters/json-converter.js +662 -0
  214. package/dist/core/context/formatters/types.js +6 -0
  215. package/dist/core/context/formatters/xml-context.js +296 -0
  216. package/dist/core/context/gatherers/architecture-gatherer.js +75 -0
  217. package/dist/core/context/gatherers/artifact-gatherer.js +53 -0
  218. package/dist/core/context/gatherers/ast-gatherer.js +370 -0
  219. package/dist/core/context/gatherers/ghost-dependency-gatherer.js +46 -0
  220. package/dist/core/context/gatherers/git-diff-gatherer.js +91 -0
  221. package/dist/core/context/gatherers/git-history-gatherer.js +57 -0
  222. package/dist/core/context/gatherers/knowledge-gatherer.js +101 -0
  223. package/dist/core/context/gatherers/metadata-gatherer.js +59 -0
  224. package/dist/core/context/gatherers/primary-text-gatherer.js +36 -0
  225. package/dist/core/context/gatherers/ripgrep-gatherer.js +104 -0
  226. package/dist/core/context/hash.js +52 -0
  227. package/dist/core/context/index.js +3 -0
  228. package/dist/core/context/keywords.js +179 -0
  229. package/dist/core/context/policies/budget-policy.js +36 -0
  230. package/dist/core/context/policies/pack-until-full.js +419 -0
  231. package/dist/core/context/scoring/relevance.js +191 -0
  232. package/dist/core/context/service-deps.js +32 -0
  233. package/dist/core/context/service-helpers.js +32 -0
  234. package/dist/core/context/service.js +265 -0
  235. package/dist/core/context/steps/context-budget.js +157 -0
  236. package/dist/core/context/steps/context-gather.js +71 -0
  237. package/dist/core/context/steps/context-primary.js +19 -0
  238. package/dist/core/context/steps/context-promotion.js +78 -0
  239. package/dist/core/context/steps/context-targets.js +85 -0
  240. package/dist/core/context/steps/types.js +2 -0
  241. package/dist/core/context/summarization/index.js +27 -0
  242. package/dist/core/context/summarization/prompts.js +80 -0
  243. package/dist/core/context/summarization/summarizer.js +377 -0
  244. package/dist/core/context/summarization/types.js +29 -0
  245. package/dist/core/context/targeting/churn-policy.js +27 -0
  246. package/dist/core/context/targeting/target-resolver.js +491 -0
  247. package/dist/core/context/token/adaptive-budget.js +364 -0
  248. package/dist/core/context/token/cache.js +163 -0
  249. package/dist/core/context/token/counter.js +190 -0
  250. package/dist/core/context/token/encoding-registry.js +173 -0
  251. package/dist/core/context/token/index.js +31 -0
  252. package/dist/core/context/token/token-budget.js +213 -0
  253. package/dist/core/context/token/types.js +10 -0
  254. package/dist/core/context/truncation/index.js +23 -0
  255. package/dist/core/context/truncation/semantic-truncator.js +103 -0
  256. package/dist/core/context/truncation/strategies/error-stack.js +94 -0
  257. package/dist/core/context/truncation/strategies/generic.js +48 -0
  258. package/dist/core/context/truncation/strategies/git-diff.js +99 -0
  259. package/dist/core/context/truncation/strategies/index.js +10 -0
  260. package/dist/core/context/truncation/strategies/json.js +142 -0
  261. package/dist/core/context/truncation/strategies/log.js +131 -0
  262. package/dist/core/context/truncation/strategies/test-result.js +140 -0
  263. package/dist/core/context/truncation/type-detector.js +133 -0
  264. package/dist/core/context/truncation/types.js +16 -0
  265. package/dist/core/context/types.js +2 -0
  266. package/dist/core/extensions/index.js +118 -0
  267. package/dist/core/extensions/load.js +36 -0
  268. package/dist/core/extensions/merge.js +29 -0
  269. package/dist/core/extensions/paths.js +40 -0
  270. package/dist/core/extensions/redact.js +37 -0
  271. package/dist/core/extensions/schemas.js +70 -0
  272. package/dist/core/extensions/types.js +2 -0
  273. package/dist/core/facades/cli-authorization-allowlist.js +3 -0
  274. package/dist/core/facades/cli-authorization-non-interactive.js +3 -0
  275. package/dist/core/facades/cli-authorization-provider.js +2 -0
  276. package/dist/core/facades/cli-chat.js +11 -0
  277. package/dist/core/facades/cli-command-allowlist.js +3 -0
  278. package/dist/core/facades/cli-command-chat.js +8 -0
  279. package/dist/core/facades/cli-command-checkpoint.js +3 -0
  280. package/dist/core/facades/cli-command-config.js +10 -0
  281. package/dist/core/facades/cli-command-dispatcher.js +2 -0
  282. package/dist/core/facades/cli-command-parallel.js +8 -0
  283. package/dist/core/facades/cli-command-session.js +2 -0
  284. package/dist/core/facades/cli-command-tool-names.js +6 -0
  285. package/dist/core/facades/cli-context.js +8 -0
  286. package/dist/core/facades/cli-headless.js +3 -0
  287. package/dist/core/facades/cli-observability.js +3 -0
  288. package/dist/core/facades/cli-program-bootstrap.js +2 -0
  289. package/dist/core/facades/cli-reporters.js +5 -0
  290. package/dist/core/facades/cli-run-execute.js +3 -0
  291. package/dist/core/facades/cli-run-handler.js +7 -0
  292. package/dist/core/facades/cli-run-headless-error-writer.js +2 -0
  293. package/dist/core/facades/cli-run-loop-params.js +2 -0
  294. package/dist/core/facades/cli-run-persist-session.js +2 -0
  295. package/dist/core/facades/cli-run-runtime-llm.js +5 -0
  296. package/dist/core/facades/cli-serve.js +21 -0
  297. package/dist/core/facades/cli-slash-runtime.js +9 -0
  298. package/dist/core/facades/cli-subagent.js +2 -0
  299. package/dist/core/facades/cli-ui.js +5 -0
  300. package/dist/core/facades/cli-utils-llm-output.js +3 -0
  301. package/dist/core/facades/cli-utils-path.js +2 -0
  302. package/dist/core/facades/cli-utils-worktree.js +2 -0
  303. package/dist/core/failure/diagnostics.js +221 -0
  304. package/dist/core/feedback/index.js +28 -0
  305. package/dist/core/feedback/parsers.js +59 -0
  306. package/dist/core/feedback/patterns.js +26 -0
  307. package/dist/core/feedback/types.js +2 -0
  308. package/dist/core/grizzco/domain/grizzco-types.js +41 -0
  309. package/dist/core/grizzco/dsl/DecisionEngine.js +149 -0
  310. package/dist/core/grizzco/dsl/MicroTaskRunner.js +39 -0
  311. package/dist/core/grizzco/dsl/llm-strategy.js +80 -0
  312. package/dist/core/grizzco/dsl/strategies.js +69 -0
  313. package/dist/core/grizzco/dsl/types.js +2 -0
  314. package/dist/core/grizzco/engine/observability/event-adapter.js +41 -0
  315. package/dist/core/grizzco/engine/observability/index.js +3 -0
  316. package/dist/core/grizzco/engine/observability/loop-telemetry.js +51 -0
  317. package/dist/core/grizzco/engine/outcome/index.js +2 -0
  318. package/dist/core/grizzco/engine/outcome/loop-result-mapper.js +167 -0
  319. package/dist/core/grizzco/engine/pipeline/pipeline.js +335 -0
  320. package/dist/core/grizzco/engine/pipeline/types.js +2 -0
  321. package/dist/core/grizzco/engine/transaction/attempt-failure.js +242 -0
  322. package/dist/core/grizzco/engine/transaction/authorization-summary.js +44 -0
  323. package/dist/core/grizzco/engine/transaction/index.js +3 -0
  324. package/dist/core/grizzco/engine/transaction/report-mapper.js +50 -0
  325. package/dist/core/grizzco/engine/transaction/retry-policy.js +19 -0
  326. package/dist/core/grizzco/engine/transaction/runner-builder.js +45 -0
  327. package/dist/core/grizzco/engine/transaction/session.js +58 -0
  328. package/dist/core/grizzco/engine/transaction/transaction-runner.js +193 -0
  329. package/dist/core/grizzco/engine/transaction/types.js +2 -0
  330. package/dist/core/grizzco/execution/Executor.js +58 -0
  331. package/dist/core/grizzco/execution/RejectionManager.js +71 -0
  332. package/dist/core/grizzco/execution/WorkerFactory.js +31 -0
  333. package/dist/core/grizzco/flows/SalmonLoopFlow.js +102 -0
  334. package/dist/core/grizzco/runtime/apply-back-runtime.js +136 -0
  335. package/dist/core/grizzco/runtime/apply-back-utils.js +13 -0
  336. package/dist/core/grizzco/runtime/host/host-runner.js +99 -0
  337. package/dist/core/grizzco/runtime/host/index.js +2 -0
  338. package/dist/core/grizzco/runtime/host/types.js +2 -0
  339. package/dist/core/grizzco/services/CachedService.js +42 -0
  340. package/dist/core/grizzco/services/implementations/default/GitConfigService.js +38 -0
  341. package/dist/core/grizzco/services/implementations/mock/MockLockService.js +11 -0
  342. package/dist/core/grizzco/services/implementations/mock/MockUserQuotaService.js +11 -0
  343. package/dist/core/grizzco/services/registry.js +30 -0
  344. package/dist/core/grizzco/services/types.js +2 -0
  345. package/dist/core/grizzco/steps/answer.js +75 -0
  346. package/dist/core/grizzco/steps/apply-back.js +46 -0
  347. package/dist/core/grizzco/steps/apply.js +136 -0
  348. package/dist/core/grizzco/steps/ast-validate.js +37 -0
  349. package/dist/core/grizzco/steps/audit.js +311 -0
  350. package/dist/core/grizzco/steps/context.js +74 -0
  351. package/dist/core/grizzco/steps/display-answer.js +6 -0
  352. package/dist/core/grizzco/steps/display-report.js +158 -0
  353. package/dist/core/grizzco/steps/display-research.js +6 -0
  354. package/dist/core/grizzco/steps/displayReview.js +6 -0
  355. package/dist/core/grizzco/steps/explore.js +245 -0
  356. package/dist/core/grizzco/steps/extractIssues.js +27 -0
  357. package/dist/core/grizzco/steps/generateFixPlan.js +13 -0
  358. package/dist/core/grizzco/steps/generateReview.js +71 -0
  359. package/dist/core/grizzco/steps/patch.js +220 -0
  360. package/dist/core/grizzco/steps/plan.js +191 -0
  361. package/dist/core/grizzco/steps/preflight.js +93 -0
  362. package/dist/core/grizzco/steps/prepare-deps.js +49 -0
  363. package/dist/core/grizzco/steps/read-only-shrink.js +4 -0
  364. package/dist/core/grizzco/steps/research.js +188 -0
  365. package/dist/core/grizzco/steps/rollback.js +138 -0
  366. package/dist/core/grizzco/steps/shrink.js +64 -0
  367. package/dist/core/grizzco/steps/validate.js +40 -0
  368. package/dist/core/grizzco/steps/verify.js +136 -0
  369. package/dist/core/grizzco/validation/AstValidationService.js +133 -0
  370. package/dist/core/grizzco/validation/ContextValidator.js +17 -0
  371. package/dist/core/grizzco/validation/ast-validation-policy.js +11 -0
  372. package/dist/core/grizzco/workers/direct-write-worker.js +44 -0
  373. package/dist/core/grizzco/workers/git-apply-worker.js +75 -0
  374. package/dist/core/grizzco/workers/i-merge-worker.js +2 -0
  375. package/dist/core/grizzco/workers/mm-three-way-worker.js +117 -0
  376. package/dist/core/grizzco/workers/no-op-worker.js +18 -0
  377. package/dist/core/grizzco/workers/overwrite-binary-worker.js +29 -0
  378. package/dist/core/grizzco/workers/strata-sync-worker.js +69 -0
  379. package/dist/core/grizzco/workers/three-way-merge-worker.js +84 -0
  380. package/dist/core/grizzco/workers/three-way-staged-worker.js +93 -0
  381. package/dist/core/grizzco/workers/union-merge-worker.js +71 -0
  382. package/dist/core/history/input-history.js +55 -0
  383. package/dist/core/intent/chat-intent.js +250 -0
  384. package/dist/core/interaction/events/bus.js +52 -0
  385. package/dist/core/interaction/model/events.js +2 -0
  386. package/dist/core/interaction/model/index.js +3 -0
  387. package/dist/core/interaction/model/task-state.js +9 -0
  388. package/dist/core/interaction/model/transition-policy.js +50 -0
  389. package/dist/core/interaction/model/types.js +2 -0
  390. package/dist/core/interaction/orchestration/facade.js +190 -0
  391. package/dist/core/interaction/orchestration/index.js +2 -0
  392. package/dist/core/interaction/orchestration/store.js +32 -0
  393. package/dist/core/interaction/sync/task-sync-engine.js +57 -0
  394. package/dist/core/interaction/turn-stop-reason.js +27 -0
  395. package/dist/core/language-support/index.js +3 -0
  396. package/dist/core/language-support/orchestrator.js +37 -0
  397. package/dist/core/language-support/strategies/extension-candidate-strategy.js +27 -0
  398. package/dist/core/language-support/strategies/index.js +3 -0
  399. package/dist/core/language-support/strategies/language-query-strategy.js +26 -0
  400. package/dist/core/llm/ai-sdk/chat-executor.js +88 -0
  401. package/dist/core/llm/ai-sdk/langfuse-headers.js +28 -0
  402. package/dist/core/llm/ai-sdk/message-mapper.js +240 -0
  403. package/dist/core/llm/ai-sdk/observation-context.js +16 -0
  404. package/dist/core/llm/ai-sdk/provider-factory.js +29 -0
  405. package/dist/core/llm/ai-sdk/request-params.js +18 -0
  406. package/dist/core/llm/ai-sdk/request-runtime.js +168 -0
  407. package/dist/core/llm/ai-sdk/result-mapper.js +31 -0
  408. package/dist/core/llm/ai-sdk/retry-classifier.js +82 -0
  409. package/dist/core/llm/ai-sdk/retry-executor.js +38 -0
  410. package/dist/core/llm/ai-sdk.js +92 -0
  411. package/dist/core/llm/audit.js +2 -0
  412. package/dist/core/llm/base-url.js +18 -0
  413. package/dist/core/llm/contracts/repair.js +68 -0
  414. package/dist/core/llm/errors.js +172 -0
  415. package/dist/core/llm/factory.js +21 -0
  416. package/dist/core/llm/http/index.js +2 -0
  417. package/dist/core/llm/index.js +6 -0
  418. package/dist/core/llm/message-composition.js +25 -0
  419. package/dist/core/llm/openai.js +69 -0
  420. package/dist/core/llm/output-policy.js +192 -0
  421. package/dist/core/llm/phase-router.js +55 -0
  422. package/dist/core/llm/redact.js +37 -0
  423. package/dist/core/llm/registry.js +81 -0
  424. package/dist/core/llm/retry-utils.js +114 -0
  425. package/dist/core/llm/stream-utils.js +87 -0
  426. package/dist/core/llm/utils.js +82 -0
  427. package/dist/core/observability/audit-file.js +199 -0
  428. package/dist/core/observability/audit-trail.js +125 -0
  429. package/dist/core/observability/authorization-decisions.js +54 -0
  430. package/dist/core/observability/debug-artifacts.js +61 -0
  431. package/dist/core/observability/error-envelope.js +63 -0
  432. package/dist/core/observability/error-mapping.js +271 -0
  433. package/dist/core/observability/ignored-error.js +6 -0
  434. package/dist/core/observability/logger.js +457 -0
  435. package/dist/core/observability/loop-event-reporter.js +46 -0
  436. package/dist/core/observability/monitor.js +240 -0
  437. package/dist/core/observability/run-outcome-reporter.js +15 -0
  438. package/dist/core/observability/token-usage.js +36 -0
  439. package/dist/core/observability/ui-log-sanitize.js +35 -0
  440. package/dist/core/patch/aggregator.js +93 -0
  441. package/dist/core/patch/diff.js +298 -0
  442. package/dist/core/permission-gate/default-gate.js +115 -0
  443. package/dist/core/permission-gate/gate.js +2 -0
  444. package/dist/core/permission-gate/types.js +2 -0
  445. package/dist/core/plan/index.js +2 -0
  446. package/dist/core/plan/manager.js +123 -0
  447. package/dist/core/plan/markdown-editor.js +238 -0
  448. package/dist/core/plan/storage.js +75 -0
  449. package/dist/core/plan/types.js +2 -0
  450. package/dist/core/plugin/interface.js +2 -0
  451. package/dist/core/plugin/loader.js +130 -0
  452. package/dist/core/plugin/registry.js +90 -0
  453. package/dist/core/plugin/validator.js +98 -0
  454. package/dist/core/prompts/registry.js +189 -0
  455. package/dist/core/prompts/runtime.js +69 -0
  456. package/dist/core/prompts/schema.js +2 -0
  457. package/dist/core/prompts/templates/phases/explore_user.hbs +26 -0
  458. package/dist/core/prompts/templates/phases/patch_user.hbs +57 -0
  459. package/dist/core/prompts/templates/phases/plan_user.hbs +33 -0
  460. package/dist/core/prompts/templates/system/_context_json_legend.hbs +21 -0
  461. package/dist/core/prompts/templates/system/_tool_defs.hbs +60 -0
  462. package/dist/core/prompts/templates/system/explore_system.hbs +26 -0
  463. package/dist/core/prompts/templates/system/main_system.hbs +18 -0
  464. package/dist/core/prompts/templates/system/patch_system.hbs +10 -0
  465. package/dist/core/prompts/templates/system/plan_system.hbs +1 -0
  466. package/dist/core/prompts/templates/system/reflection.hbs +39 -0
  467. package/dist/core/protocols/a2a/agent-card.js +30 -0
  468. package/dist/core/protocols/a2a/mapper.js +14 -0
  469. package/dist/core/protocols/a2a/sdk/auth-middleware.js +31 -0
  470. package/dist/core/protocols/a2a/sdk/executor.js +301 -0
  471. package/dist/core/protocols/a2a/sdk/server.js +24 -0
  472. package/dist/core/protocols/a2a/task-projection.js +45 -0
  473. package/dist/core/protocols/acp/acp-command-runner.js +204 -0
  474. package/dist/core/protocols/acp/acp-filesystem.js +43 -0
  475. package/dist/core/protocols/acp/checkpoint-meta.js +2 -0
  476. package/dist/core/protocols/acp/formal-agent.js +1201 -0
  477. package/dist/core/protocols/acp/handlers.js +51 -0
  478. package/dist/core/protocols/acp/permission-provider.js +122 -0
  479. package/dist/core/protocols/acp/stdio-server.js +116 -0
  480. package/dist/core/reflection/engine.js +55 -0
  481. package/dist/core/reflection/types.js +2 -0
  482. package/dist/core/runtime/agent-server-runtime.js +88 -0
  483. package/dist/core/runtime/bun-runtime.js +26 -0
  484. package/dist/core/runtime/command-runner-context.js +16 -0
  485. package/dist/core/runtime/exit-codes.js +11 -0
  486. package/dist/core/runtime/fastify-fetch-bridge.js +51 -0
  487. package/dist/core/runtime/fastify-server-bundle.js +26 -0
  488. package/dist/core/runtime/initialize.js +132 -0
  489. package/dist/core/runtime/loop-finalize.js +71 -0
  490. package/dist/core/runtime/loop-run-lifecycle.js +73 -0
  491. package/dist/core/runtime/loop-run-reporter.js +19 -0
  492. package/dist/core/runtime/loop-runtime-config.js +26 -0
  493. package/dist/core/runtime/loop-session-runner.js +30 -0
  494. package/dist/core/runtime/loop.js +84 -0
  495. package/dist/core/runtime/paths.js +84 -0
  496. package/dist/core/runtime/process-runner.js +16 -0
  497. package/dist/core/runtime/process-types.js +2 -0
  498. package/dist/core/runtime/semaphore.js +41 -0
  499. package/dist/core/runtime/sidecar-fastify-plugin.js +35 -0
  500. package/dist/core/runtime/sidecar-paths.js +47 -0
  501. package/dist/core/runtime/sidecar-route-catalog.js +103 -0
  502. package/dist/core/runtime/spawn-command.js +392 -0
  503. package/dist/core/runtime/spawn-interactive.js +71 -0
  504. package/dist/core/security/redaction.js +160 -0
  505. package/dist/core/session/compression.js +323 -0
  506. package/dist/core/session/flow.js +85 -0
  507. package/dist/core/session/manager.js +313 -0
  508. package/dist/core/session/pruning-strategy.js +153 -0
  509. package/dist/core/session/session-context-builder.js +122 -0
  510. package/dist/core/session/summary-sync.js +82 -0
  511. package/dist/core/session/token-tracker.js +82 -0
  512. package/dist/core/session/types.js +2 -0
  513. package/dist/core/skills/bridge.js +33 -0
  514. package/dist/core/skills/index.js +8 -0
  515. package/dist/core/skills/loader.js +80 -0
  516. package/dist/core/skills/parser.js +66 -0
  517. package/dist/core/skills/runtime/MicroTaskRunner.js +102 -0
  518. package/dist/core/skills/runtime/SkillRunner.js +108 -0
  519. package/dist/core/skills/strategy.js +29 -0
  520. package/dist/core/skills/types.js +2 -0
  521. package/dist/core/slash/index.js +6 -0
  522. package/dist/core/slash/parser.js +33 -0
  523. package/dist/core/slash/registry.js +78 -0
  524. package/dist/core/slash/router.js +76 -0
  525. package/dist/core/slash/steps/slash-decide.js +19 -0
  526. package/dist/core/slash/steps/slash-execute.js +73 -0
  527. package/dist/core/slash/steps/types.js +2 -0
  528. package/dist/core/slash/strategy.js +33 -0
  529. package/dist/core/slash/types.js +2 -0
  530. package/dist/core/strata/checkpoint/manager.js +492 -0
  531. package/dist/core/strata/checkpoint/snapshot-audit.js +88 -0
  532. package/dist/core/strata/checkpoint/snapshot-create.js +79 -0
  533. package/dist/core/strata/checkpoint/snapshot-write-tree.js +72 -0
  534. package/dist/core/strata/engine/shadow-merge-engine.js +394 -0
  535. package/dist/core/strata/index.js +15 -0
  536. package/dist/core/strata/interaction/content-guardian.js +59 -0
  537. package/dist/core/strata/interaction/file-system-provider.js +89 -0
  538. package/dist/core/strata/layers/file-state-resolver.js +157 -0
  539. package/dist/core/strata/layers/immutable-git-layer.js +42 -0
  540. package/dist/core/strata/layers/shadow-driver/copy-backend.js +114 -0
  541. package/dist/core/strata/layers/shadow-driver/env.js +29 -0
  542. package/dist/core/strata/layers/shadow-driver/error-classifier.js +41 -0
  543. package/dist/core/strata/layers/shadow-driver/index.js +17 -0
  544. package/dist/core/strata/layers/shadow-driver/readonly-lock.js +221 -0
  545. package/dist/core/strata/layers/shadow-driver/shadow-driver.js +234 -0
  546. package/dist/core/strata/layers/shadow-driver/strategy.js +86 -0
  547. package/dist/core/strata/layers/sidecar-layer.js +96 -0
  548. package/dist/core/strata/layers/worktree.js +240 -0
  549. package/dist/core/strata/runtime/environment.js +377 -0
  550. package/dist/core/strata/runtime/synchronizer.js +819 -0
  551. package/dist/core/strata/types.js +46 -0
  552. package/dist/core/streaming/canonical/canonical-responses-event-emitter.js +326 -0
  553. package/dist/core/streaming/canonical/function-call-item-id.js +13 -0
  554. package/dist/core/streaming/canonical/parts-from-llm-stream-chunk.js +54 -0
  555. package/dist/core/streaming/canonical/responses-event-emitter.js +127 -0
  556. package/dist/core/streaming/canonical/responses-events.js +2 -0
  557. package/dist/core/streaming/normalized-events.js +9 -0
  558. package/dist/core/streaming/normalized-from-text.js +47 -0
  559. package/dist/core/streaming/stream-assembler.js +347 -0
  560. package/dist/core/structured-output/index.js +3 -0
  561. package/dist/core/structured-output/json-extract.js +70 -0
  562. package/dist/core/structured-output/json-schema-validator.js +90 -0
  563. package/dist/core/structured-output/types.js +2 -0
  564. package/dist/core/sub-agent/artifacts/store.js +141 -0
  565. package/dist/core/sub-agent/artifacts/types.js +2 -0
  566. package/dist/core/sub-agent/controller.js +69 -0
  567. package/dist/core/sub-agent/core/loop.js +79 -0
  568. package/dist/core/sub-agent/core/manager.js +246 -0
  569. package/dist/core/sub-agent/registry-defaults.js +52 -0
  570. package/dist/core/sub-agent/registry.js +35 -0
  571. package/dist/core/sub-agent/tools/task-spawn.js +29 -0
  572. package/dist/core/sub-agent/types.js +23 -0
  573. package/dist/core/target-runtime/command-resolver.js +42 -0
  574. package/dist/core/target-runtime/index.js +3 -0
  575. package/dist/core/target-runtime/profile.js +73 -0
  576. package/dist/core/testgen/detector.js +17 -0
  577. package/dist/core/testgen/index.js +38 -0
  578. package/dist/core/testgen/templates.js +46 -0
  579. package/dist/core/tools/audit.js +140 -0
  580. package/dist/core/tools/authorization/types.js +2 -0
  581. package/dist/core/tools/budget.js +118 -0
  582. package/dist/core/tools/builtin/artifact.js +29 -0
  583. package/dist/core/tools/builtin/ast-grep.js +107 -0
  584. package/dist/core/tools/builtin/ast.js +62 -0
  585. package/dist/core/tools/builtin/code-search/backends/powershell.js +84 -0
  586. package/dist/core/tools/builtin/code-search/backends/rg.js +85 -0
  587. package/dist/core/tools/builtin/code-search/executor.js +87 -0
  588. package/dist/core/tools/builtin/code-search/parse/plain-grep.js +59 -0
  589. package/dist/core/tools/builtin/code-search/parse/rg-json.js +31 -0
  590. package/dist/core/tools/builtin/code-search/spec.js +82 -0
  591. package/dist/core/tools/builtin/fs.js +243 -0
  592. package/dist/core/tools/builtin/git.js +118 -0
  593. package/dist/core/tools/builtin/index.js +80 -0
  594. package/dist/core/tools/builtin/interaction.js +120 -0
  595. package/dist/core/tools/builtin/knowledge.js +98 -0
  596. package/dist/core/tools/builtin/plan.js +148 -0
  597. package/dist/core/tools/builtin/proposal.js +207 -0
  598. package/dist/core/tools/builtin/shell.js +71 -0
  599. package/dist/core/tools/builtin/verify.js +41 -0
  600. package/dist/core/tools/capability/executor.js +84 -0
  601. package/dist/core/tools/capability/runner.js +50 -0
  602. package/dist/core/tools/capability/types.js +2 -0
  603. package/dist/core/tools/dispatcher.js +80 -0
  604. package/dist/core/tools/headless-payload.js +37 -0
  605. package/dist/core/tools/loader.js +100 -0
  606. package/dist/core/tools/mapper.js +142 -0
  607. package/dist/core/tools/mcp/client.js +308 -0
  608. package/dist/core/tools/mcp/loader.js +110 -0
  609. package/dist/core/tools/mcp/schema.js +54 -0
  610. package/dist/core/tools/mcp/streamable-http.js +101 -0
  611. package/dist/core/tools/mcp/types.js +26 -0
  612. package/dist/core/tools/parallel/isolation.js +25 -0
  613. package/dist/core/tools/parallel/lock-manager.js +124 -0
  614. package/dist/core/tools/parallel/persistence.js +126 -0
  615. package/dist/core/tools/parallel/plan-builder.js +66 -0
  616. package/dist/core/tools/parallel/plan.js +2 -0
  617. package/dist/core/tools/parallel/refs.js +7 -0
  618. package/dist/core/tools/parallel/resolve-args.js +50 -0
  619. package/dist/core/tools/parallel/resource-helpers.js +35 -0
  620. package/dist/core/tools/parallel/resources.js +2 -0
  621. package/dist/core/tools/parallel/scheduler.js +372 -0
  622. package/dist/core/tools/parser.js +89 -0
  623. package/dist/core/tools/permissions/permission-rules.js +503 -0
  624. package/dist/core/tools/plugins/loader.js +102 -0
  625. package/dist/core/tools/policy.js +87 -0
  626. package/dist/core/tools/registry.js +29 -0
  627. package/dist/core/tools/router.js +514 -0
  628. package/dist/core/tools/sanitize.js +78 -0
  629. package/dist/core/tools/schema-utils.js +71 -0
  630. package/dist/core/tools/session.js +1105 -0
  631. package/dist/core/tools/streaming/ToolCallAccumulator.js +64 -0
  632. package/dist/core/tools/types.js +2 -0
  633. package/dist/core/types/authorization.js +2 -0
  634. package/dist/core/types/context.js +2 -0
  635. package/dist/core/types/errors.js +29 -0
  636. package/dist/core/types/execution.js +65 -0
  637. package/dist/core/types/index.js +9 -0
  638. package/dist/core/types/llm.js +9 -0
  639. package/dist/core/types/loop.js +2 -0
  640. package/dist/core/types/planning.js +2 -0
  641. package/dist/core/types/runtime.js +2 -0
  642. package/dist/core/types/usage.js +2 -0
  643. package/dist/core/ui/kaomoji.js +5 -0
  644. package/dist/core/utils/path.js +116 -0
  645. package/dist/core/utils/platform-shell.js +10 -0
  646. package/dist/core/utils/sanitizer.js +107 -0
  647. package/dist/core/verification/runner.js +265 -0
  648. package/dist/integrations/langfuse/litellm-langfuse-outcome-reporter.js +272 -0
  649. package/dist/integrations/langfuse/outcome-proxy.js +68 -0
  650. package/dist/interfaces/cli/task-runner.js +11 -0
  651. package/dist/languages/typescript/index.js +178 -0
  652. package/dist/locales/en.js +679 -0
  653. package/dist/locales/index.js +11 -0
  654. package/dist/utils/eol.js +35 -0
  655. package/package.json +153 -0
@@ -0,0 +1,200 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { Box, Text, useInput } from 'ink';
3
+ import TextInput from 'ink-text-input';
4
+ import React, { useState } from 'react';
5
+ import { en } from '../../locales/en.js';
6
+ import { rejectAuthorization } from '../authorization/bus.js';
7
+ import { UI_CONFIG } from '../config.js';
8
+ import { useCommandSuggestions } from '../hooks/useCommandSuggestions.js';
9
+ import { useInputHistory } from '../hooks/useInputHistory.js';
10
+ import { rejectSelection, resolveSelection } from '../selection/bus.js';
11
+ import { useUIStore } from '../store/context.js';
12
+ import { CommandSuggestionList } from './CommandSuggestionList.js';
13
+ export const CommandInput = ({ value, onChange, onSubmit, placeholder, getSuggestions, findCommand, }) => {
14
+ const { state, dispatch } = useUIStore();
15
+ const { pendingConfirmation } = state;
16
+ const { pendingAuthorization } = state;
17
+ const { pendingSelection } = state;
18
+ const isConfirming = !!pendingConfirmation;
19
+ const isAuthorizing = !!pendingAuthorization;
20
+ const isSelecting = !!pendingSelection;
21
+ const isMultiSelecting = Boolean(pendingSelection?.multiSelect);
22
+ const isIntercepting = isAuthorizing || isConfirming || isSelecting;
23
+ const activeChallenge = pendingAuthorization?.challenge || pendingConfirmation?.challenge;
24
+ const [inputKey, setInputKey] = useState(0);
25
+ const [selectionIndex, setSelectionIndex] = useState(0);
26
+ const [selectedItems, setSelectedItems] = useState([]);
27
+ const suppressNextInputChangeRef = React.useRef(false);
28
+ React.useEffect(() => {
29
+ if (pendingSelection) {
30
+ setSelectionIndex(0);
31
+ setSelectedItems([]);
32
+ }
33
+ }, [pendingSelection?.id]);
34
+ const { suggestions, selectedIndex, startIndex, isListClosed, setIsListClosed, setSuggestions, setSelectedIndex, setStartIndex, navigateSuggestions, activeCommand, } = useCommandSuggestions(value, getSuggestions, isIntercepting, findCommand);
35
+ const { navigateHistory, resetHistory } = useInputHistory(value, (val) => {
36
+ setInputKey((prev) => prev + 1);
37
+ onChange(val);
38
+ });
39
+ // Calculate ghost text for non-intrusive suggestions
40
+ const getGhostText = () => {
41
+ if (selectedIndex === -1 || suggestions.length === 0 || isListClosed)
42
+ return '';
43
+ const selected = suggestions[selectedIndex].name.trimEnd();
44
+ const parts = value.split(/\s+/);
45
+ const lastToken = parts[parts.length - 1];
46
+ if (selected.toLowerCase().startsWith(lastToken.toLowerCase())) {
47
+ return selected.slice(lastToken.length);
48
+ }
49
+ return '';
50
+ };
51
+ const getCompletedValue = (selectedName) => {
52
+ const parts = value.split(/\s+/);
53
+ const trimmedName = selectedName.trimEnd();
54
+ if (value.endsWith(' ')) {
55
+ return value + trimmedName + ' ';
56
+ }
57
+ parts.pop();
58
+ const prefix = parts.join(' ');
59
+ return (prefix ? prefix + ' ' : '') + trimmedName + ' ';
60
+ };
61
+ const applySelection = (selected, config) => {
62
+ const nextValue = getCompletedValue(selected.name);
63
+ if (config.closeList) {
64
+ setSuggestions([]);
65
+ setSelectedIndex(-1);
66
+ setStartIndex(0);
67
+ setIsListClosed(true);
68
+ }
69
+ else {
70
+ setIsListClosed(false);
71
+ }
72
+ setInputKey((prev) => prev + 1);
73
+ onChange(nextValue);
74
+ };
75
+ useInput((input, key) => {
76
+ if (key.ctrl &&
77
+ (input === 't' || input === 'T' || input === '\u0014' || key.name === 't')) {
78
+ suppressNextInputChangeRef.current = true;
79
+ return;
80
+ }
81
+ if (key.escape) {
82
+ if (!isListClosed && suggestions.length > 0) {
83
+ setIsListClosed(true);
84
+ }
85
+ else if (isSelecting) {
86
+ rejectSelection();
87
+ }
88
+ else if (isAuthorizing) {
89
+ rejectAuthorization();
90
+ }
91
+ else if (isConfirming) {
92
+ dispatch({ type: 'CLEAR_CONFIRMATION' });
93
+ }
94
+ return;
95
+ }
96
+ if (isSelecting) {
97
+ const items = pendingSelection?.items ?? [];
98
+ if (key.upArrow) {
99
+ if (items.length > 0) {
100
+ setSelectionIndex((prev) => (prev - 1 + items.length) % items.length);
101
+ }
102
+ return;
103
+ }
104
+ if (key.downArrow) {
105
+ if (items.length > 0) {
106
+ setSelectionIndex((prev) => (prev + 1) % items.length);
107
+ }
108
+ return;
109
+ }
110
+ if (isMultiSelecting && input === ' ') {
111
+ const picked = items[selectionIndex]?.id;
112
+ if (!picked)
113
+ return;
114
+ setSelectedItems((prev) => prev.includes(picked) ? prev.filter((id) => id !== picked) : [...prev, picked]);
115
+ return;
116
+ }
117
+ return;
118
+ }
119
+ if (isIntercepting)
120
+ return;
121
+ if ((key.rightArrow || key.tab) &&
122
+ suggestions.length > 0 &&
123
+ !isListClosed &&
124
+ selectedIndex !== -1) {
125
+ applySelection(suggestions[selectedIndex], { closeList: false });
126
+ return;
127
+ }
128
+ if (key.upArrow) {
129
+ if (!navigateSuggestions('up')) {
130
+ navigateHistory('up');
131
+ }
132
+ }
133
+ else if (key.downArrow) {
134
+ if (!navigateSuggestions('down')) {
135
+ navigateHistory('down');
136
+ }
137
+ }
138
+ });
139
+ const visibleSuggestions = suggestions.slice(startIndex, startIndex + UI_CONFIG.MAX_SUGGESTIONS);
140
+ const ghostText = getGhostText();
141
+ return (_jsxs(Box, { flexDirection: "column", children: [_jsxs(Box, { children: [_jsx(TextInput, { value: isSelecting ? '' : value, focus: true, onChange: (val) => {
142
+ if (isSelecting)
143
+ return;
144
+ if (suppressNextInputChangeRef.current) {
145
+ suppressNextInputChangeRef.current = false;
146
+ if (val === `${value}t` || val === `${value}T` || val === `${value}\u0014`) {
147
+ return;
148
+ }
149
+ }
150
+ setIsListClosed(false);
151
+ resetHistory();
152
+ onChange(val);
153
+ }, onSubmit: (val) => {
154
+ if (isSelecting && pendingSelection) {
155
+ const items = pendingSelection.items ?? [];
156
+ if (isMultiSelecting) {
157
+ resolveSelection(pendingSelection.id, selectedItems.length > 0 ? selectedItems : []);
158
+ }
159
+ else {
160
+ const picked = items[selectionIndex]?.id ?? null;
161
+ resolveSelection(pendingSelection.id, picked ? [picked] : []);
162
+ }
163
+ dispatch({ type: 'SET_INPUT', payload: '' });
164
+ return;
165
+ }
166
+ if (isIntercepting && activeChallenge) {
167
+ const trimmed = val.trim();
168
+ if (trimmed === activeChallenge || trimmed.startsWith(`${activeChallenge} `)) {
169
+ onSubmit(val);
170
+ }
171
+ return;
172
+ }
173
+ if (suggestions.length > 0 && !isListClosed && selectedIndex !== -1) {
174
+ applySelection(suggestions[selectedIndex], { closeList: false });
175
+ return;
176
+ }
177
+ resetHistory();
178
+ if (val.trim()) {
179
+ dispatch({ type: 'APPEND_INPUT', payload: val });
180
+ }
181
+ onSubmit(val);
182
+ }, placeholder: isSelecting
183
+ ? isMultiSelecting
184
+ ? en.gui.selectionPlaceholderMulti
185
+ : en.gui.selectionPlaceholder
186
+ : isIntercepting && activeChallenge
187
+ ? en.gui.confirmationChallenge(activeChallenge)
188
+ : placeholder }, inputKey), ghostText && (_jsx(Text, { color: "gray", dimColor: true, children: ghostText }))] }), isIntercepting && (_jsxs(Box, { flexDirection: "column", borderStyle: "round", borderColor: "yellow", paddingX: 1, children: [_jsx(Text, { color: "yellow", bold: true, children: isSelecting
189
+ ? pendingSelection?.title
190
+ : isAuthorizing
191
+ ? en.gui.authorizationTitle
192
+ : en.gui.confirmationTitle }), !isSelecting && (_jsx(Text, { color: "white", children: isAuthorizing ? pendingAuthorization?.message : pendingConfirmation?.message })), _jsx(Text, { color: "gray", dimColor: true, children: isSelecting
193
+ ? isMultiSelecting
194
+ ? en.gui.selectionHintMulti
195
+ : en.gui.selectionHint
196
+ : isAuthorizing
197
+ ? en.gui.authorizationWarning
198
+ : en.gui.highRiskWarning }), isAuthorizing && (_jsx(Text, { color: "gray", dimColor: true, children: en.gui.authorizationHint })), isSelecting && pendingSelection && (_jsx(Box, { flexDirection: "column", marginTop: 1, children: pendingSelection.items.map((item, idx) => (_jsxs(Text, { color: idx === selectionIndex ? 'green' : 'gray', children: [isMultiSelecting && (_jsx(Text, { color: selectedItems.includes(item.id) ? 'green' : 'gray', children: selectedItems.includes(item.id) ? '[x] ' : '[ ] ' })), item.label, item.description ? ` - ${item.description}` : ''] }, item.id))) }))] })), !isIntercepting && suggestions.length > 0 && !isListClosed && (_jsx(CommandSuggestionList, { suggestions: visibleSuggestions, selectedIndex: selectedIndex - startIndex, parentCommand: activeCommand }))] }));
199
+ };
200
+ //# sourceMappingURL=CommandInput.js.map
@@ -0,0 +1,20 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { Box, Text } from 'ink';
3
+ import { COLORS } from '../styles/theme.js';
4
+ export const CommandSuggestionList = ({ suggestions, selectedIndex, parentCommand, }) => {
5
+ if (suggestions.length === 0)
6
+ return null;
7
+ // Header Title Logic
8
+ let title = 'SLASH COMMANDS';
9
+ if (parentCommand) {
10
+ title = `${parentCommand.name} / SUBCOMMANDS`;
11
+ }
12
+ // Calculate dynamic column width
13
+ const maxNameLength = suggestions.reduce((max, s) => Math.max(max, s.name.length), 0);
14
+ return (_jsxs(Box, { flexDirection: "column", borderStyle: "single", borderColor: COLORS.border.subtle, marginTop: 0, marginBottom: 0, paddingX: 0, width: "100%", children: [_jsx(Box, { flexDirection: "column", paddingY: 0, children: suggestions.map((item, index) => {
15
+ const isSelected = index === selectedIndex;
16
+ const hasSubcommands = !!item.command?.subcommands?.length;
17
+ return (_jsxs(Box, { flexDirection: "row", paddingX: 1, children: [_jsx(Box, { width: 2, children: _jsx(Text, { color: COLORS.semantic.salmon, children: isSelected ? '│ ' : ' ' }) }), _jsx(Box, { width: maxNameLength + 4, children: _jsx(Text, { color: isSelected ? COLORS.semantic.cyan : COLORS.semantic.blue, bold: isSelected, children: item.name }) }), _jsx(Box, { width: 2, marginRight: 1, children: hasSubcommands ? _jsx(Text, { color: COLORS.text.muted, children: " " }) : _jsx(Text, { children: " " }) }), _jsx(Box, { flexGrow: 1, children: _jsx(Text, { color: isSelected ? COLORS.text.primary : COLORS.text.muted, wrap: "truncate", children: item.description }) })] }, `${item.name}-${index}`));
18
+ }) }), suggestions[selectedIndex]?.command?.usage && (_jsxs(Box, { flexDirection: "row", borderStyle: "single", borderTop: true, borderLeft: false, borderRight: false, borderBottom: false, borderColor: COLORS.border.subtle, paddingX: 1, paddingY: 0, children: [_jsx(Text, { color: COLORS.semantic.blue, children: "TIP: " }), _jsx(Text, { color: COLORS.text.muted, children: "Usage: " }), _jsx(Text, { color: COLORS.text.primary, children: suggestions[selectedIndex].command?.usage })] })), _jsxs(Box, { flexDirection: "row", borderStyle: "single", borderTop: true, borderLeft: false, borderRight: false, borderBottom: false, borderColor: COLORS.border.subtle, paddingX: 1, paddingY: 0, justifyContent: "space-between", children: [_jsxs(Box, { children: [_jsx(Text, { color: COLORS.semantic.salmon, children: "\u2502 " }), _jsx(Text, { color: COLORS.semantic.blue, bold: true, children: title })] }), _jsx(Box, { children: _jsx(Text, { color: COLORS.text.muted, dimColor: true, children: "\u2191\u2193 nav \u00B7 \u23CE select \u00B7 esc close" }) })] })] }));
19
+ };
20
+ //# sourceMappingURL=CommandSuggestionList.js.map
@@ -0,0 +1,423 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ // 1. MUST be at the very top to force all chalk instances to use color before any imports.
3
+ process.env.FORCE_COLOR = '3';
4
+ import chalk from 'chalk';
5
+ import { Text } from 'ink';
6
+ import { Marked } from 'marked';
7
+ import TerminalRendererOriginal from 'marked-terminal';
8
+ import { useMemo } from 'react';
9
+ import { DEFAULT_MARKDOWN_RENDER_MODE, DEFAULT_MARKDOWN_THEME, } from '../../../core/config/types.js';
10
+ import { COLORS } from '../styles/theme.js';
11
+ if (chalk.level < 3) {
12
+ chalk.level = 3;
13
+ }
14
+ const CODE_WRAP_SAFETY_MARGIN = 2;
15
+ const THEME_OVERRIDES = {
16
+ vivid: {
17
+ heading: chalk.green.bold,
18
+ firstHeading: chalk.magenta.underline.bold,
19
+ strong: chalk.yellowBright.bold,
20
+ em: chalk.cyan.italic,
21
+ codespan: chalk.yellowBright,
22
+ code: chalk.yellowBright,
23
+ link: chalk.blueBright,
24
+ href: chalk.blueBright.underline,
25
+ listitem: chalk.hex(COLORS.text.primary),
26
+ blockquote: chalk.gray.italic,
27
+ html: chalk.gray,
28
+ table: chalk.hex(COLORS.text.primary),
29
+ },
30
+ default: {
31
+ heading: chalk.green.bold,
32
+ firstHeading: chalk.magenta.underline.bold,
33
+ strong: chalk.bold,
34
+ em: chalk.italic,
35
+ codespan: chalk.yellow,
36
+ code: chalk.yellow,
37
+ link: chalk.blue,
38
+ href: chalk.blue.underline,
39
+ listitem: chalk.hex(COLORS.text.primary),
40
+ blockquote: chalk.gray.italic,
41
+ html: chalk.gray,
42
+ table: chalk.hex(COLORS.text.primary),
43
+ },
44
+ };
45
+ export function __applyMarkedTerminalTaskListCompat(m) {
46
+ // marked@17 emits explicit `checkbox` tokens for task lists.
47
+ // marked-terminal also injects checkboxes for task list items, which can cause duplicates
48
+ // (e.g. "[x] [x] Task") if we render checkbox tokens as-is.
49
+ m.use({
50
+ walkTokens(token) {
51
+ if (!token || token.type !== 'list_item' || token.task !== true)
52
+ return;
53
+ if (!Array.isArray(token.tokens) || token.tokens.length === 0)
54
+ return;
55
+ token.tokens = token.tokens.filter((t) => t?.type !== 'checkbox');
56
+ },
57
+ });
58
+ }
59
+ export const Markdown = ({ children, theme = DEFAULT_MARKDOWN_THEME, mode = DEFAULT_MARKDOWN_RENDER_MODE, }) => {
60
+ const parser = useMemo(() => {
61
+ const m = new Marked();
62
+ const RendererClass = TerminalRendererOriginal.TerminalRenderer || TerminalRendererOriginal;
63
+ const rendererInstance = new RendererClass({
64
+ showSectionPrefix: false,
65
+ unescape: true,
66
+ color: true,
67
+ width: process.stdout.columns || 80,
68
+ ...(THEME_OVERRIDES[theme] ?? THEME_OVERRIDES.default),
69
+ });
70
+ __applyMarkedTerminalTaskListCompat(m);
71
+ if (mode === 'native') {
72
+ m.use({ renderer: rendererInstance });
73
+ return m;
74
+ }
75
+ const originalListitem = rendererInstance.listitem.bind(rendererInstance);
76
+ rendererInstance.listitem = function (token) {
77
+ if (isTightListItemWithCode(token)) {
78
+ const previous = rendererInstance.__inTightListItem;
79
+ rendererInstance.__inTightListItem = true;
80
+ try {
81
+ return originalListitem(token);
82
+ }
83
+ finally {
84
+ rendererInstance.__inTightListItem = previous;
85
+ }
86
+ }
87
+ return originalListitem(token);
88
+ };
89
+ const standardHooks = [
90
+ 'blockquote',
91
+ 'br',
92
+ 'checkbox',
93
+ 'code',
94
+ 'codespan',
95
+ 'del',
96
+ 'em',
97
+ 'heading',
98
+ 'hr',
99
+ 'html',
100
+ 'image',
101
+ 'link',
102
+ 'list',
103
+ 'listitem',
104
+ 'paragraph',
105
+ 'strong',
106
+ 'table',
107
+ 'tablecell',
108
+ 'tablerow',
109
+ 'text',
110
+ ];
111
+ const renderCodeWithLineNumbers = function (token, infostring, escaped) {
112
+ rendererInstance.options = this.options;
113
+ rendererInstance.parser = this.parser;
114
+ let codeText = '';
115
+ let codeToken;
116
+ if (token && typeof token === 'object') {
117
+ codeText = String(token.text ?? '');
118
+ const normalizedCodeText = normalizeCodeBlockForDisplay(codeText);
119
+ codeToken = {
120
+ text: normalizedCodeText,
121
+ lang: token.lang ?? infostring,
122
+ escaped: Boolean(token.escaped ?? escaped),
123
+ };
124
+ codeText = normalizedCodeText;
125
+ }
126
+ else {
127
+ codeText = String(token ?? '');
128
+ const normalizedCodeText = normalizeCodeBlockForDisplay(codeText);
129
+ codeToken = {
130
+ text: normalizedCodeText,
131
+ lang: infostring,
132
+ escaped: Boolean(escaped),
133
+ };
134
+ codeText = normalizedCodeText;
135
+ }
136
+ const logicalLines = codeText.endsWith('\n')
137
+ ? codeText.slice(0, -1).split('\n')
138
+ : codeText.split('\n');
139
+ const lineCount = Math.max(logicalLines.length, 1);
140
+ const numberWidth = String(lineCount).length;
141
+ const availableWidth = resolveRendererWidth(this.options, rendererInstance.options);
142
+ const maxContentWidth = Math.max(8, availableWidth - (numberWidth + 3) - CODE_WRAP_SAFETY_MARGIN);
143
+ const wrapped = wrapLogicalCodeLines(logicalLines, maxContentWidth);
144
+ codeToken.text = wrapped.lines.join('\n');
145
+ const base = String(rendererInstance.code(codeToken));
146
+ const { lines: baseLines, suffix } = splitRenderedCodeLines(base);
147
+ const normalizedBaseLines = removeRenderedCommonIndent(baseLines);
148
+ let visualLineIndex = 0;
149
+ let logicalLineIndex = 0;
150
+ const continuationPrefix = `${' '.repeat(numberWidth)}${chalk.gray(' | ')}`;
151
+ const numbered = normalizedBaseLines.map((line) => {
152
+ if (visualLineIndex >= wrapped.firstChunkFlags.length)
153
+ return line;
154
+ const isFirstChunk = wrapped.firstChunkFlags[visualLineIndex];
155
+ visualLineIndex += 1;
156
+ if (!isFirstChunk) {
157
+ return `${continuationPrefix}${line}`;
158
+ }
159
+ const number = String(logicalLineIndex + 1).padStart(numberWidth, ' ');
160
+ logicalLineIndex += 1;
161
+ return `${chalk.gray(number)}${chalk.gray(' | ')}${line}`;
162
+ });
163
+ const numberedBlock = `${numbered.join('\n')}${suffix}`;
164
+ if (rendererInstance.__inTightListItem &&
165
+ numberedBlock.length > 0 &&
166
+ !numberedBlock.startsWith('\n')) {
167
+ return `\n${numberedBlock}`;
168
+ }
169
+ return numberedBlock;
170
+ };
171
+ const cleanRenderer = Object.create(null);
172
+ for (const hook of standardHooks) {
173
+ if (typeof rendererInstance[hook] !== 'function')
174
+ continue;
175
+ if (hook === 'code') {
176
+ cleanRenderer.code = renderCodeWithLineNumbers;
177
+ continue;
178
+ }
179
+ if (hook === 'text') {
180
+ cleanRenderer.text = function (token) {
181
+ rendererInstance.options = this.options;
182
+ rendererInstance.parser = this.parser;
183
+ if (token && typeof token === 'object' && Array.isArray(token.tokens)) {
184
+ return this.parser.parseInline(token.tokens);
185
+ }
186
+ return rendererInstance.text(token);
187
+ };
188
+ continue;
189
+ }
190
+ cleanRenderer[hook] = function (...args) {
191
+ rendererInstance.options = this.options;
192
+ rendererInstance.parser = this.parser;
193
+ return rendererInstance[hook](...args);
194
+ };
195
+ }
196
+ m.use({ renderer: cleanRenderer });
197
+ return m;
198
+ }, [mode, theme]);
199
+ const content = useMemo(() => {
200
+ try {
201
+ if (!children)
202
+ return '';
203
+ if (mode === 'native') {
204
+ const result = parser.parse(children);
205
+ return typeof result === 'string' ? result.trimEnd() : String(result).trimEnd();
206
+ }
207
+ const preparedChildren = prepareMarkdownInput(children);
208
+ if (!preparedChildren)
209
+ return '';
210
+ const result = parser.parse(preparedChildren);
211
+ const rendered = typeof result === 'string' ? result : String(result);
212
+ return compactRenderedSpacing(rendered).trimEnd();
213
+ }
214
+ catch (_error) {
215
+ return children;
216
+ }
217
+ }, [children, mode, parser]);
218
+ return _jsx(Text, { children: content });
219
+ };
220
+ function prepareMarkdownInput(content) {
221
+ const lines = trimOuterEmptyLines(content.split('\n'));
222
+ if (lines.length === 0)
223
+ return '';
224
+ const minIndent = lines.reduce((min, line) => {
225
+ if (!line.trim())
226
+ return min;
227
+ const match = line.match(/^[ \t]*/);
228
+ const indent = match ? match[0].replace(/\t/g, ' ').length : 0;
229
+ return Math.min(min, indent);
230
+ }, Infinity);
231
+ if (minIndent === Infinity || minIndent <= 0) {
232
+ return lines.join('\n');
233
+ }
234
+ return lines.map((line) => removeIndent(line, minIndent)).join('\n');
235
+ }
236
+ function trimOuterEmptyLines(lines) {
237
+ let first = -1;
238
+ let last = -1;
239
+ for (let i = 0; i < lines.length; i += 1) {
240
+ if (lines[i].trim().length === 0)
241
+ continue;
242
+ if (first === -1)
243
+ first = i;
244
+ last = i;
245
+ }
246
+ if (first === -1)
247
+ return [];
248
+ return lines.slice(first, last + 1);
249
+ }
250
+ function removeIndent(line, amount) {
251
+ let index = 0;
252
+ let width = 0;
253
+ while (index < line.length && width < amount) {
254
+ const ch = line[index];
255
+ if (ch === ' ') {
256
+ width += 1;
257
+ index += 1;
258
+ continue;
259
+ }
260
+ if (ch === '\t') {
261
+ width += 4;
262
+ index += 1;
263
+ continue;
264
+ }
265
+ break;
266
+ }
267
+ return line.slice(index);
268
+ }
269
+ function normalizeCodeBlockForDisplay(code) {
270
+ const lines = code.split('\n');
271
+ const minIndent = lines.reduce((min, line) => {
272
+ if (!line.trim())
273
+ return min;
274
+ const match = line.match(/^[ \t]*/);
275
+ const indent = match ? match[0].replace(/\t/g, ' ').length : 0;
276
+ return Math.min(min, indent);
277
+ }, Infinity);
278
+ if (minIndent === Infinity || minIndent <= 0) {
279
+ return code;
280
+ }
281
+ return lines.map((line) => removeIndent(line, minIndent)).join('\n');
282
+ }
283
+ function isTightListItemWithCode(token) {
284
+ if (!token || typeof token !== 'object')
285
+ return false;
286
+ if (token.loose)
287
+ return false;
288
+ if (!Array.isArray(token.tokens))
289
+ return false;
290
+ return token.tokens.some((item) => item && item.type === 'code');
291
+ }
292
+ function splitRenderedCodeLines(code) {
293
+ const suffixMatch = code.match(/\n+$/);
294
+ const suffix = suffixMatch ? suffixMatch[0] : '';
295
+ const body = suffix.length > 0 ? code.slice(0, -suffix.length) : code;
296
+ if (!body)
297
+ return { lines: [''], suffix };
298
+ return { lines: body.split('\n'), suffix };
299
+ }
300
+ function removeRenderedCommonIndent(lines) {
301
+ const minIndent = lines.reduce((min, line) => {
302
+ if (!line.trim())
303
+ return min;
304
+ const match = line.match(/^[ \t]*/);
305
+ const indent = match ? match[0].replace(/\t/g, ' ').length : 0;
306
+ return Math.min(min, indent);
307
+ }, Infinity);
308
+ if (minIndent === Infinity || minIndent <= 0)
309
+ return lines;
310
+ return lines.map((line) => removeIndent(line, minIndent));
311
+ }
312
+ function resolveRendererWidth(markedOptions, rendererOptions) {
313
+ const markedWidth = markedOptions?.width;
314
+ if (typeof markedWidth === 'number' && Number.isFinite(markedWidth) && markedWidth > 0) {
315
+ return markedWidth;
316
+ }
317
+ const rendererWidth = rendererOptions?.width;
318
+ if (typeof rendererWidth === 'number' && Number.isFinite(rendererWidth) && rendererWidth > 0) {
319
+ return rendererWidth;
320
+ }
321
+ return process.stdout.columns || 80;
322
+ }
323
+ function wrapLogicalCodeLines(logicalLines, maxContentWidth) {
324
+ const lines = [];
325
+ const firstChunkFlags = [];
326
+ for (const logicalLine of logicalLines) {
327
+ const chunks = wrapPlainCodeLine(logicalLine, maxContentWidth);
328
+ for (let index = 0; index < chunks.length; index += 1) {
329
+ lines.push(chunks[index]);
330
+ firstChunkFlags.push(index === 0);
331
+ }
332
+ }
333
+ return { lines, firstChunkFlags };
334
+ }
335
+ function wrapPlainCodeLine(line, maxContentWidth) {
336
+ if (maxContentWidth <= 0)
337
+ return [line];
338
+ if (line.length === 0 || getDisplayWidth(line) <= maxContentWidth)
339
+ return [line];
340
+ const chunks = [];
341
+ let current = '';
342
+ let currentWidth = 0;
343
+ for (const ch of line) {
344
+ const width = getCharacterDisplayWidth(ch);
345
+ if (currentWidth + width > maxContentWidth && current.length > 0) {
346
+ chunks.push(current);
347
+ current = '';
348
+ currentWidth = 0;
349
+ }
350
+ current += ch;
351
+ currentWidth += width;
352
+ }
353
+ if (current.length > 0 || chunks.length === 0) {
354
+ chunks.push(current);
355
+ }
356
+ return chunks;
357
+ }
358
+ function getDisplayWidth(input) {
359
+ let width = 0;
360
+ for (const ch of input) {
361
+ width += getCharacterDisplayWidth(ch);
362
+ }
363
+ return width;
364
+ }
365
+ function getCharacterDisplayWidth(ch) {
366
+ if (ch === '\t')
367
+ return 4;
368
+ const codePoint = ch.codePointAt(0);
369
+ if (codePoint === undefined)
370
+ return 0;
371
+ if (isZeroWidthCodePoint(codePoint))
372
+ return 0;
373
+ if (isFullWidthCodePoint(codePoint))
374
+ return 2;
375
+ return 1;
376
+ }
377
+ function isZeroWidthCodePoint(codePoint) {
378
+ return ((codePoint >= 0x0000 && codePoint <= 0x001f) ||
379
+ (codePoint >= 0x007f && codePoint <= 0x009f) ||
380
+ (codePoint >= 0x0300 && codePoint <= 0x036f) ||
381
+ (codePoint >= 0x200b && codePoint <= 0x200f) ||
382
+ (codePoint >= 0x202a && codePoint <= 0x202e) ||
383
+ (codePoint >= 0x2060 && codePoint <= 0x206f) ||
384
+ codePoint === 0xfeff);
385
+ }
386
+ function isFullWidthCodePoint(codePoint) {
387
+ if (codePoint < 0x1100)
388
+ return false;
389
+ return (codePoint <= 0x115f ||
390
+ codePoint === 0x2329 ||
391
+ codePoint === 0x232a ||
392
+ (codePoint >= 0x2e80 && codePoint <= 0x3247 && codePoint !== 0x303f) ||
393
+ (codePoint >= 0x3250 && codePoint <= 0x4dbf) ||
394
+ (codePoint >= 0x4e00 && codePoint <= 0xa4c6) ||
395
+ (codePoint >= 0xa960 && codePoint <= 0xa97c) ||
396
+ (codePoint >= 0xac00 && codePoint <= 0xd7a3) ||
397
+ (codePoint >= 0xf900 && codePoint <= 0xfaff) ||
398
+ (codePoint >= 0xfe10 && codePoint <= 0xfe19) ||
399
+ (codePoint >= 0xfe30 && codePoint <= 0xfe6b) ||
400
+ (codePoint >= 0xff01 && codePoint <= 0xff60) ||
401
+ (codePoint >= 0xffe0 && codePoint <= 0xffe6) ||
402
+ (codePoint >= 0x1b000 && codePoint <= 0x1b001) ||
403
+ (codePoint >= 0x1f200 && codePoint <= 0x1f251) ||
404
+ (codePoint >= 0x20000 && codePoint <= 0x3fffd));
405
+ }
406
+ function compactRenderedSpacing(content) {
407
+ let output = '';
408
+ let newlineCount = 0;
409
+ for (let index = 0; index < content.length; index += 1) {
410
+ const ch = content[index];
411
+ if (ch === '\n') {
412
+ newlineCount += 1;
413
+ if (newlineCount <= 2) {
414
+ output += ch;
415
+ }
416
+ continue;
417
+ }
418
+ newlineCount = 0;
419
+ output += ch;
420
+ }
421
+ return output;
422
+ }
423
+ //# sourceMappingURL=Markdown.js.map
@@ -0,0 +1,34 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { Box, Static } from 'ink';
3
+ import React from 'react';
4
+ import { UI_CONFIG } from '../config.js';
5
+ import { useUIStore } from '../store/context.js';
6
+ import { MessageItem } from './messageList/MessageItem.js';
7
+ import { computeContainerWidth, computeSeparatorLine, computeStreamingMaxLines, } from './messageList/messageListLayout.js';
8
+ import { QueuePreviewList } from './messageList/QueuePreviewList.js';
9
+ export const MessageList = ({ markdownTheme, markdownRenderMode }) => {
10
+ const { state } = useUIStore();
11
+ const { completedMessages, activeStreamingMessage, queueMessages } = state;
12
+ const streamingMaxLines = React.useMemo(() => computeStreamingMaxLines({ terminalHeight: state.terminalHeight, logMode: state.logMode }), [state.terminalHeight, state.logMode]);
13
+ const containerWidth = React.useMemo(() => computeContainerWidth(state.terminalWidth), [state.terminalWidth]);
14
+ const separatorLine = React.useMemo(() => computeSeparatorLine(containerWidth), [containerWidth]);
15
+ const ctx = React.useMemo(() => ({
16
+ markdownTheme,
17
+ markdownRenderMode,
18
+ containerWidth,
19
+ separatorLine,
20
+ streamingMaxLines,
21
+ logView: state.logView,
22
+ logMode: state.logMode,
23
+ }), [
24
+ markdownTheme,
25
+ markdownRenderMode,
26
+ containerWidth,
27
+ separatorLine,
28
+ streamingMaxLines,
29
+ state.logView,
30
+ state.logMode,
31
+ ]);
32
+ return (_jsxs(Box, { flexDirection: "column", flexGrow: 1, width: containerWidth, children: [_jsx(Static, { items: completedMessages, children: (msg, index) => (_jsx(Box, { paddingLeft: UI_CONFIG.MESSAGE_AREA_PADDING_X, children: _jsx(MessageItem, { msg: msg, nextMsg: completedMessages[index + 1], ctx: ctx }) }, msg.id)) }), activeStreamingMessage && (_jsx(MessageItem, { msg: activeStreamingMessage, ctx: ctx }, activeStreamingMessage.id)), _jsx(QueuePreviewList, { queueMessages: queueMessages })] }));
33
+ };
34
+ //# sourceMappingURL=MessageList.js.map