rovecode 0.3.2

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 (334) hide show
  1. package/LICENSE +662 -0
  2. package/README.md +737 -0
  3. package/THIRD_PARTY_NOTICES.md +268 -0
  4. package/bin/rovecode.ts +21 -0
  5. package/package.json +56 -0
  6. package/src/acp/server.ts +374 -0
  7. package/src/cli/auth-login.ts +122 -0
  8. package/src/cli/connect.ts +244 -0
  9. package/src/cli/context-cmd.ts +199 -0
  10. package/src/cli/dispatch.ts +82 -0
  11. package/src/cli/doctor.ts +362 -0
  12. package/src/cli/export.ts +276 -0
  13. package/src/cli/help.ts +293 -0
  14. package/src/cli/is-tui-invocation.ts +8 -0
  15. package/src/cli/main.ts +583 -0
  16. package/src/cli/market-cmd.ts +658 -0
  17. package/src/cli/mcp-login.ts +141 -0
  18. package/src/cli/mcp-market-cmd.ts +302 -0
  19. package/src/cli/output.ts +382 -0
  20. package/src/cli/repl.ts +250 -0
  21. package/src/cli/repomap-root.ts +14 -0
  22. package/src/cli/resume.ts +57 -0
  23. package/src/cli/run-flags.ts +43 -0
  24. package/src/cli/run-limits.ts +78 -0
  25. package/src/cli/runtime.ts +931 -0
  26. package/src/cli/session-arg.ts +30 -0
  27. package/src/cli/sessions-cmd.ts +145 -0
  28. package/src/cli/setup.ts +153 -0
  29. package/src/cli/skills-cmd.ts +194 -0
  30. package/src/cli/start-chat.ts +65 -0
  31. package/src/cli/trust-cmd.ts +52 -0
  32. package/src/coding/bash.ts +148 -0
  33. package/src/coding/checkpoints.ts +327 -0
  34. package/src/coding/diff.ts +138 -0
  35. package/src/coding/files.ts +341 -0
  36. package/src/coding/hashline.ts +274 -0
  37. package/src/coding/lsp-gate.ts +254 -0
  38. package/src/coding/lsp-servers.ts +147 -0
  39. package/src/coding/lsp.ts +283 -0
  40. package/src/coding/repomap-cache.ts +99 -0
  41. package/src/coding/repomap-files.ts +192 -0
  42. package/src/coding/repomap.ts +481 -0
  43. package/src/core/agents.ts +255 -0
  44. package/src/core/compaction.ts +259 -0
  45. package/src/core/config.ts +289 -0
  46. package/src/core/context-report.ts +228 -0
  47. package/src/core/context.ts +60 -0
  48. package/src/core/count-remote.ts +107 -0
  49. package/src/core/execpolicy-rules.ts +196 -0
  50. package/src/core/execpolicy.ts +385 -0
  51. package/src/core/executor.ts +454 -0
  52. package/src/core/guardrails.ts +400 -0
  53. package/src/core/hooks.ts +411 -0
  54. package/src/core/images.ts +230 -0
  55. package/src/core/intro.ts +266 -0
  56. package/src/core/loop.ts +567 -0
  57. package/src/core/modes.ts +372 -0
  58. package/src/core/orchestrator.ts +245 -0
  59. package/src/core/proc-group.ts +48 -0
  60. package/src/core/project-trust.ts +98 -0
  61. package/src/core/reflection.ts +165 -0
  62. package/src/core/sandbox-config.ts +186 -0
  63. package/src/core/session-id.ts +24 -0
  64. package/src/core/session-images.ts +73 -0
  65. package/src/core/session-ops.ts +183 -0
  66. package/src/core/session-text.ts +29 -0
  67. package/src/core/session.ts +469 -0
  68. package/src/core/settings.ts +170 -0
  69. package/src/core/tasks.ts +646 -0
  70. package/src/core/token-scale.ts +108 -0
  71. package/src/core/tools.ts +309 -0
  72. package/src/core/trust.ts +104 -0
  73. package/src/core/types.ts +330 -0
  74. package/src/core/update-check.ts +171 -0
  75. package/src/core/usage.ts +204 -0
  76. package/src/core/validate.ts +121 -0
  77. package/src/core/verify-gate.ts +159 -0
  78. package/src/core/verify.ts +236 -0
  79. package/src/core/voice.ts +158 -0
  80. package/src/core/win-job.ts +183 -0
  81. package/src/core/workspace.ts +184 -0
  82. package/src/design/audit.ts +797 -0
  83. package/src/design/direction.ts +190 -0
  84. package/src/design/rules.ts +157 -0
  85. package/src/eval/bench.ts +150 -0
  86. package/src/eval/gauntlet-runner.ts +215 -0
  87. package/src/eval/gauntlet-support.ts +84 -0
  88. package/src/eval/gauntlet-wave3.ts +269 -0
  89. package/src/eval/gauntlet-wave4.ts +217 -0
  90. package/src/eval/gauntlet.ts +253 -0
  91. package/src/index.ts +17 -0
  92. package/src/lanes/agy.ts +95 -0
  93. package/src/lanes/approval.ts +24 -0
  94. package/src/lanes/claude.ts +129 -0
  95. package/src/lanes/codex.ts +127 -0
  96. package/src/lanes/events.ts +130 -0
  97. package/src/lanes/job.ts +142 -0
  98. package/src/lanes/opencode.ts +122 -0
  99. package/src/lanes/process.ts +184 -0
  100. package/src/lanes/progress.ts +183 -0
  101. package/src/lanes/registry.ts +178 -0
  102. package/src/lanes/runner.ts +124 -0
  103. package/src/lanes/types.ts +112 -0
  104. package/src/market/catalogs/mcp-docs.json +111 -0
  105. package/src/market/catalogs/plugins.json +111 -0
  106. package/src/market/catalogs/skills.json +478 -0
  107. package/src/market/clone.ts +72 -0
  108. package/src/market/context-cost.ts +121 -0
  109. package/src/market/digest.ts +106 -0
  110. package/src/market/index.ts +22 -0
  111. package/src/market/install.ts +578 -0
  112. package/src/market/manifest.ts +187 -0
  113. package/src/market/prereq.ts +145 -0
  114. package/src/market/registry.ts +363 -0
  115. package/src/market/resolve.ts +111 -0
  116. package/src/market/types.ts +236 -0
  117. package/src/market/validate.ts +227 -0
  118. package/src/mcp/client.ts +449 -0
  119. package/src/mcp/config.ts +252 -0
  120. package/src/mcp/local-package.ts +211 -0
  121. package/src/mcp/market-catalog.ts +84 -0
  122. package/src/mcp/market-install.ts +289 -0
  123. package/src/mcp/market.ts +362 -0
  124. package/src/mcp/oauth.ts +251 -0
  125. package/src/mcp/prompts-resources.ts +249 -0
  126. package/src/mcp/shared.ts +149 -0
  127. package/src/mcp/status.ts +67 -0
  128. package/src/mcp/tools.ts +275 -0
  129. package/src/mcp/transport.ts +122 -0
  130. package/src/mcp/trust.ts +25 -0
  131. package/src/memory/blocks.ts +278 -0
  132. package/src/memory/recall.ts +355 -0
  133. package/src/memory/scope.ts +182 -0
  134. package/src/memory/store.ts +105 -0
  135. package/src/memory/tools.ts +99 -0
  136. package/src/plugins/cli.ts +119 -0
  137. package/src/plugins/discover.ts +108 -0
  138. package/src/plugins/index.ts +50 -0
  139. package/src/plugins/install.ts +184 -0
  140. package/src/plugins/load.ts +124 -0
  141. package/src/plugins/manifest.ts +92 -0
  142. package/src/plugins/state.ts +83 -0
  143. package/src/providers/auth.ts +408 -0
  144. package/src/providers/cache.ts +223 -0
  145. package/src/providers/catalog-local.ts +160 -0
  146. package/src/providers/catalog.ts +421 -0
  147. package/src/providers/middleware-context.ts +86 -0
  148. package/src/providers/middleware.ts +373 -0
  149. package/src/providers/model-list.ts +23 -0
  150. package/src/providers/models-index.json +1 -0
  151. package/src/providers/oauth/common.ts +105 -0
  152. package/src/providers/oauth/device-code.ts +107 -0
  153. package/src/providers/oauth/github-copilot.ts +146 -0
  154. package/src/providers/oauth/loopback.ts +158 -0
  155. package/src/providers/oauth/openai.ts +163 -0
  156. package/src/providers/oauth/openrouter.ts +89 -0
  157. package/src/providers/oauth/pkce.ts +45 -0
  158. package/src/providers/oauth/registry.ts +39 -0
  159. package/src/providers/oauth/seam.ts +89 -0
  160. package/src/providers/profile-glm53.ts +111 -0
  161. package/src/providers/profile-sonnet5-persona.ts +65 -0
  162. package/src/providers/profile-sonnet5-voice.ts +23 -0
  163. package/src/providers/profiles.ts +156 -0
  164. package/src/providers/provider-config.ts +311 -0
  165. package/src/providers/registry.ts +333 -0
  166. package/src/providers/responses.ts +209 -0
  167. package/src/providers/retry.ts +234 -0
  168. package/src/providers/router.ts +294 -0
  169. package/src/providers/sse.ts +26 -0
  170. package/src/providers/stream-errors.ts +117 -0
  171. package/src/providers/stream.ts +566 -0
  172. package/src/providers/thinking.ts +189 -0
  173. package/src/providers/wire-messages.ts +129 -0
  174. package/src/providers/wire-responses.ts +79 -0
  175. package/src/providers/wire-select.ts +53 -0
  176. package/src/server/http.ts +291 -0
  177. package/src/server/openapi.ts +246 -0
  178. package/src/sextant/card-hits.ts +102 -0
  179. package/src/sextant/card-keys.ts +55 -0
  180. package/src/sextant/context-source.ts +157 -0
  181. package/src/sextant/crew-cards.ts +350 -0
  182. package/src/sextant/draw-agents.ts +273 -0
  183. package/src/sextant/draw-code.ts +388 -0
  184. package/src/sextant/draw-context.ts +222 -0
  185. package/src/sextant/draw-frame.ts +164 -0
  186. package/src/sextant/draw-market.ts +573 -0
  187. package/src/sextant/draw-messages.ts +386 -0
  188. package/src/sextant/draw-pet.ts +230 -0
  189. package/src/sextant/draw-plan.ts +187 -0
  190. package/src/sextant/draw-tabs.ts +85 -0
  191. package/src/sextant/draw-util.ts +65 -0
  192. package/src/sextant/draw-wizard.ts +378 -0
  193. package/src/sextant/engine.ts +230 -0
  194. package/src/sextant/frame-hits.ts +25 -0
  195. package/src/sextant/frame.ts +101 -0
  196. package/src/sextant/git-status.ts +197 -0
  197. package/src/sextant/grid.ts +59 -0
  198. package/src/sextant/input.ts +119 -0
  199. package/src/sextant/keys.ts +521 -0
  200. package/src/sextant/layout.ts +86 -0
  201. package/src/sextant/local-commands.ts +169 -0
  202. package/src/sextant/market-source.ts +287 -0
  203. package/src/sextant/mentions.ts +200 -0
  204. package/src/sextant/message-hits.ts +26 -0
  205. package/src/sextant/model.ts +387 -0
  206. package/src/sextant/overlays.ts +456 -0
  207. package/src/sextant/panel-hits.ts +38 -0
  208. package/src/sextant/pet.ts +399 -0
  209. package/src/sextant/screen.ts +324 -0
  210. package/src/sextant/scroll-hits.ts +66 -0
  211. package/src/sextant/scrollbar.ts +82 -0
  212. package/src/sextant/sextant-bridge.ts +174 -0
  213. package/src/sextant/sextant-cards.ts +142 -0
  214. package/src/sextant/sextant-diff-base.ts +63 -0
  215. package/src/sextant/sextant-files.ts +154 -0
  216. package/src/sextant/sextant-frame-loop.ts +335 -0
  217. package/src/sextant/sextant-renderer.ts +574 -0
  218. package/src/sextant/sextant-repo.ts +140 -0
  219. package/src/sextant/theme.ts +66 -0
  220. package/src/sextant/tool-rows.ts +189 -0
  221. package/src/sextant/types.ts +493 -0
  222. package/src/skills/index.ts +387 -0
  223. package/src/skills/pack.ts +220 -0
  224. package/src/skills/spec.ts +162 -0
  225. package/src/skills/tools.ts +69 -0
  226. package/src/skills/versioned.ts +227 -0
  227. package/src/telemetry/otel-export.ts +122 -0
  228. package/src/telemetry/otel-lanes.ts +89 -0
  229. package/src/telemetry/otel-logs.ts +131 -0
  230. package/src/telemetry/otel-metrics.ts +136 -0
  231. package/src/telemetry/otel.ts +397 -0
  232. package/src/telemetry/otlp.ts +76 -0
  233. package/src/tools/ask-user.ts +156 -0
  234. package/src/tools/bash-bg.ts +94 -0
  235. package/src/tools/bash-jobs.ts +237 -0
  236. package/src/tools/design.ts +151 -0
  237. package/src/tools/evalcell.ts +338 -0
  238. package/src/tools/html-text.ts +139 -0
  239. package/src/tools/provider.ts +149 -0
  240. package/src/tools/task.ts +250 -0
  241. package/src/tools/todo.ts +320 -0
  242. package/src/tools/webfetch.ts +332 -0
  243. package/src/tools/websearch.ts +359 -0
  244. package/src/tui/agents-cmd.ts +41 -0
  245. package/src/tui/app.ts +749 -0
  246. package/src/tui/attach.ts +127 -0
  247. package/src/tui/boot-notes.ts +41 -0
  248. package/src/tui/builtin-prompts.ts +59 -0
  249. package/src/tui/checkpoints-cmd.ts +70 -0
  250. package/src/tui/clipboard-image.ts +81 -0
  251. package/src/tui/clipboard.ts +78 -0
  252. package/src/tui/commands.ts +283 -0
  253. package/src/tui/config-view.ts +53 -0
  254. package/src/tui/context-cmds.ts +282 -0
  255. package/src/tui/cost.ts +108 -0
  256. package/src/tui/crash-guard.ts +173 -0
  257. package/src/tui/focus-terminal.ts +34 -0
  258. package/src/tui/git-cmds.ts +273 -0
  259. package/src/tui/git-plain.ts +58 -0
  260. package/src/tui/info-cmd.ts +150 -0
  261. package/src/tui/input-plain.ts +76 -0
  262. package/src/tui/mcp-cmd.ts +128 -0
  263. package/src/tui/memory-note.ts +77 -0
  264. package/src/tui/modes-cmd.ts +45 -0
  265. package/src/tui/notify-seq.ts +100 -0
  266. package/src/tui/notify.ts +318 -0
  267. package/src/tui/overlays.ts +97 -0
  268. package/src/tui/pi-renderer.ts +428 -0
  269. package/src/tui/providers-cmd.ts +377 -0
  270. package/src/tui/reasoning-view.ts +56 -0
  271. package/src/tui/renderer.ts +128 -0
  272. package/src/tui/replay-marker.ts +29 -0
  273. package/src/tui/session-cmd.ts +148 -0
  274. package/src/tui/session-manage.ts +95 -0
  275. package/src/tui/sextant-attach.ts +102 -0
  276. package/src/tui/sextant-io.ts +202 -0
  277. package/src/tui/sextant-smoke.ts +110 -0
  278. package/src/tui/shell-cmd.ts +158 -0
  279. package/src/tui/smoke.ts +72 -0
  280. package/src/tui/staged-terminal.ts +50 -0
  281. package/src/tui/startup.ts +12 -0
  282. package/src/tui/theme.ts +59 -0
  283. package/src/tui/todo-label.ts +7 -0
  284. package/src/tui/trust-card.ts +107 -0
  285. package/src/tui/tui-commands.ts +87 -0
  286. package/tsconfig.json +30 -0
  287. package/vendor/pi-tui/LICENSE +21 -0
  288. package/vendor/pi-tui/PATCHES.md +12 -0
  289. package/vendor/pi-tui/PROVENANCE.md +12 -0
  290. package/vendor/pi-tui/README.upstream.md +854 -0
  291. package/vendor/pi-tui/native/win32/prebuilds/win32-arm64/win32-console-mode.node +0 -0
  292. package/vendor/pi-tui/native/win32/prebuilds/win32-x64/win32-console-mode.node +0 -0
  293. package/vendor/pi-tui/src/alt-screen-search.ts +158 -0
  294. package/vendor/pi-tui/src/autocomplete.ts +827 -0
  295. package/vendor/pi-tui/src/components/alt-screen-flash.ts +52 -0
  296. package/vendor/pi-tui/src/components/box.ts +138 -0
  297. package/vendor/pi-tui/src/components/cancellable-loader.ts +41 -0
  298. package/vendor/pi-tui/src/components/editor.ts +2364 -0
  299. package/vendor/pi-tui/src/components/h-stack.ts +45 -0
  300. package/vendor/pi-tui/src/components/image.ts +128 -0
  301. package/vendor/pi-tui/src/components/input.ts +448 -0
  302. package/vendor/pi-tui/src/components/loader.ts +93 -0
  303. package/vendor/pi-tui/src/components/markdown.ts +1016 -0
  304. package/vendor/pi-tui/src/components/scroll-view.ts +217 -0
  305. package/vendor/pi-tui/src/components/select-list.ts +230 -0
  306. package/vendor/pi-tui/src/components/settings-list.ts +277 -0
  307. package/vendor/pi-tui/src/components/spacer.ts +29 -0
  308. package/vendor/pi-tui/src/components/stack.ts +155 -0
  309. package/vendor/pi-tui/src/components/text.ts +108 -0
  310. package/vendor/pi-tui/src/components/truncated-text.ts +66 -0
  311. package/vendor/pi-tui/src/components/v-stack.ts +34 -0
  312. package/vendor/pi-tui/src/editor-component.ts +75 -0
  313. package/vendor/pi-tui/src/fuzzy.ts +138 -0
  314. package/vendor/pi-tui/src/index.ts +149 -0
  315. package/vendor/pi-tui/src/keybindings.ts +321 -0
  316. package/vendor/pi-tui/src/keys.ts +1402 -0
  317. package/vendor/pi-tui/src/kill-ring.ts +47 -0
  318. package/vendor/pi-tui/src/latex.ts +1381 -0
  319. package/vendor/pi-tui/src/layout-node.ts +52 -0
  320. package/vendor/pi-tui/src/layout.ts +411 -0
  321. package/vendor/pi-tui/src/native-modifiers.ts +60 -0
  322. package/vendor/pi-tui/src/native-module-path.ts +32 -0
  323. package/vendor/pi-tui/src/stdin-buffer.ts +445 -0
  324. package/vendor/pi-tui/src/terminal-colors.ts +74 -0
  325. package/vendor/pi-tui/src/terminal-image.ts +701 -0
  326. package/vendor/pi-tui/src/terminal.ts +554 -0
  327. package/vendor/pi-tui/src/tui-alt-screen.ts +1379 -0
  328. package/vendor/pi-tui/src/tui-main-screen.ts +655 -0
  329. package/vendor/pi-tui/src/tui.ts +1264 -0
  330. package/vendor/pi-tui/src/undo-stack.ts +29 -0
  331. package/vendor/pi-tui/src/utils.ts +1327 -0
  332. package/vendor/pi-tui/src/word-navigation.ts +118 -0
  333. package/vendor/pi-tui/test/test-themes.ts +39 -0
  334. package/vendor/pi-tui/test/virtual-terminal.ts +219 -0
@@ -0,0 +1,362 @@
1
+ /** `rovecode doctor` — "what is wrong with my setup", answered once, in one pass.
2
+ *
3
+ * Every check here already existed and already spoke — each at its own moment: the LSP note at boot, the
4
+ * provider hint when a run fails, the prerequisite row inside an install plan, the MCP loader's skipped-server
5
+ * warnings, the trust gate's line. A person whose setup is half-wrong met them one at a time, in the order
6
+ * the day happened to raise them. This runs the same code and lays the answers side by side.
7
+ *
8
+ * Rules it keeps:
9
+ * - It invents nothing. Every row is produced by the module that owns that decision (providers/registry.ts,
10
+ * mcp/config.ts, mcp/market-install.ts, coding/lsp.ts, market/prereq.ts, core/settings.ts). A check that
11
+ * would need code this repository does not have is listed under `notChecked`, by name.
12
+ * - It never prints a secret. Provider rows carry ids, scopes and key NAMES; the registry's own redaction is
13
+ * not even consulted, because nothing here needs the value.
14
+ * - It makes no provider request: reachability would be a billed call, so it is a listed non-check. MCP
15
+ * servers ARE connected (that is a local process, and "does it connect" is the question); `--no-connect`
16
+ * skips it and says so.
17
+ * - Exit 0 = nothing is broken; 1 = something the person must fix before a run can work as configured. A
18
+ * fresh install with no provider is a FINDING (exit 0, status "note"), not a failure — nothing is broken,
19
+ * something is not done yet. `--json` is one document, on every exit. */
20
+
21
+ import { existsSync, readdirSync, readFileSync, statSync } from "node:fs";
22
+ import { homedir } from "node:os";
23
+ import { join } from "node:path";
24
+ import { rovecodeHome } from "../providers/auth.ts";
25
+ import { ProviderRegistry } from "../providers/registry.ts";
26
+ import { isConfigured } from "../providers/provider-config.ts";
27
+ import { resolvePermission, settingsPath } from "../core/settings.ts";
28
+ import type { PermissionLevel } from "../core/types.ts";
29
+ import { checkPrereq, type PrereqEnv } from "../market/prereq.ts";
30
+ import { lspAvailabilityNote } from "../coding/lsp.ts";
31
+ import { WorkspaceRoots, resolveRoots } from "../core/workspace.ts";
32
+ import { parseAddDirs } from "./run-flags.ts";
33
+ import { configuredServers } from "../mcp/market-install.ts";
34
+ import { loadMcpConfig, placeholderHoles, type McpServerConfig } from "../mcp/config.ts";
35
+ import { mcpTrustStatus, trustedPredicate } from "../mcp/trust.ts";
36
+ import { projectTrustRows, trustShowLines, untrustedRows } from "../core/project-trust.ts";
37
+ import { loadState as loadPluginState } from "../plugins/state.ts";
38
+ import { launchesViaNpx, npxOfferLine } from "../mcp/local-package.ts";
39
+ import { resolveVerify, VERIFY_BLIND_SPOT, verifyLabelWithCost } from "../core/verify.ts";
40
+
41
+ export type DoctorStatus = "ok" | "note" | "warn" | "fail";
42
+
43
+ export interface DoctorCheck {
44
+ id: "home" | "provider" | "permission" | "trust" | "tools" | "verify" | "mcp" | "workspace" | "checkpoints";
45
+ status: DoctorStatus;
46
+ summary: string;
47
+ detail?: string[];
48
+ }
49
+
50
+ export interface DoctorReport {
51
+ ok: boolean;
52
+ exitCode: 0 | 1;
53
+ cwd: string;
54
+ home: string;
55
+ checks: DoctorCheck[];
56
+ /** what this command did NOT look at, by name — so a clean report is never read as "everything is fine" */
57
+ notChecked: string[];
58
+ }
59
+
60
+ export interface DoctorDeps {
61
+ cwd?: string;
62
+ /** the rovecode home; default rovecodeHome() (ROVECODE_HOME or ~/.rovecode) */
63
+ home?: string;
64
+ env?: Record<string, string | undefined>;
65
+ /** PATH lookup for the tools row — tests inject a fixed environment */
66
+ prereqEnv?: PrereqEnv;
67
+ /** the LSP probe — tests inject; default Bun.which */
68
+ which?: (name: string) => string | null;
69
+ /** try to connect every loadable MCP server (default true; `--no-connect` turns it off) */
70
+ connect?: boolean;
71
+ connectTimeoutMs?: number;
72
+ out?: (line: string) => void;
73
+ err?: (line: string) => void;
74
+ /** `--add-dir <dir>` values (absolute; cli/run-flags.ts parseAddDirs) — doctor is its own process, so it can only
75
+ * describe roots it is told about; the row then names what a session with those roots would and would not cover */
76
+ addDirs?: readonly string[];
77
+ }
78
+
79
+ const DOCTOR_USAGE = [
80
+ "usage: rovecode doctor [--json] [--no-connect] [--add-dir <dir>]…",
81
+ " one pass over the setup: home · provider · permission level · tools on PATH · the verify check · MCP servers · workspace roots (with --add-dir) · checkpoints",
82
+ " --no-connect do not start the MCP servers to see whether they answer (they are otherwise connected and closed)",
83
+ " --json one document on stdout; exit 0 = nothing broken, 1 = something to fix (a missing provider is a note, not a failure)",
84
+ ];
85
+
86
+ const PERMISSIONS: readonly string[] = ["ask", "accept-edits", "auto"];
87
+ /** the size at which a shadow repository becomes worth mentioning: 14e9118 measured 232 MB as the bad case */
88
+ const CHECKPOINTS_WARN_BYTES = 200 * 1024 * 1024;
89
+
90
+ function userHome(env: Record<string, string | undefined>): string {
91
+ return (process.platform === "win32" ? env.USERPROFILE : env.HOME) || homedir();
92
+ }
93
+
94
+ function dirSize(root: string): { bytes: number; files: number } {
95
+ let bytes = 0, files = 0;
96
+ const walk = (d: string): void => {
97
+ let names: string[];
98
+ try { names = readdirSync(d); } catch { return; }
99
+ for (const n of names) {
100
+ const p = join(d, n);
101
+ try {
102
+ const st = statSync(p);
103
+ if (st.isDirectory()) walk(p); else { bytes += st.size; files++; }
104
+ } catch { /* vanished mid-walk: the number is a snapshot, not a ledger */ }
105
+ }
106
+ };
107
+ walk(root);
108
+ return { bytes, files };
109
+ }
110
+
111
+ const mb = (bytes: number): string => `${(bytes / (1024 * 1024)).toFixed(1)} MB`;
112
+
113
+ /** the permission level in effect and WHERE it came from — the same ladder core/settings.ts resolvePermission
114
+ * walks, re-read here only to name the rung; the level itself is resolvePermission's answer */
115
+ function permissionCheck(cwd: string, env: Record<string, string | undefined>): DoctorCheck {
116
+ const level = resolvePermission(cwd, undefined, { ROVECODE_PERMISSION: env.ROVECODE_PERMISSION, ROVECODE_YOLO: env.ROVECODE_YOLO, ROVECODE_ACCEPT_EDITS: env.ROVECODE_ACCEPT_EDITS });
117
+ const fileLevel = (scope: "user" | "project"): PermissionLevel | undefined => {
118
+ try {
119
+ const raw = JSON.parse(readFileSync(settingsPath(scope, cwd), "utf8")) as { permission?: unknown };
120
+ return typeof raw.permission === "string" && PERMISSIONS.includes(raw.permission) ? raw.permission as PermissionLevel : undefined;
121
+ } catch { return undefined; }
122
+ };
123
+ const named = (env.ROVECODE_PERMISSION ?? "").trim().toLowerCase();
124
+ const source = PERMISSIONS.includes(named) ? "ROVECODE_PERMISSION"
125
+ : env.ROVECODE_YOLO === "1" ? "ROVECODE_YOLO=1"
126
+ : env.ROVECODE_ACCEPT_EDITS === "1" ? "ROVECODE_ACCEPT_EDITS=1"
127
+ : fileLevel("project") !== undefined ? settingsPath("project", cwd)
128
+ : fileLevel("user") !== undefined ? settingsPath("user", cwd)
129
+ : "the default";
130
+ const words = level === "auto" ? "auto — never asks (deny rules and plan mode still hold)"
131
+ : level === "accept-edits" ? "accept edits — writes inside this folder do not ask; shell, subagents, network and writes outside it do"
132
+ : "ask first — every write, shell command and subagent asks";
133
+ return { id: "permission", status: level === "auto" ? "note" : "ok", summary: `${words} · from ${source}`,
134
+ ...(level === "auto" ? { detail: ["a one-shot run adds --yolo per run; the TUI's /yolo --save is what made it stick if this surprises you"] } : {}) };
135
+ }
136
+
137
+ export async function runDoctor(deps: DoctorDeps = {}): Promise<DoctorReport> {
138
+ const cwd = deps.cwd ?? process.cwd();
139
+ const env = deps.env ?? process.env;
140
+ const home = deps.home ?? rovecodeHome();
141
+ const which = deps.which ?? ((n: string) => Bun.which(n));
142
+ const checks: DoctorCheck[] = [];
143
+ const notChecked: string[] = [
144
+ "whether the provider answers — a request would be billed; `rovecode provider test <id>` makes one small call on purpose",
145
+ "plugins — `rovecode plugin list` shows each one's state",
146
+ "the bash sandbox rung (wsl/docker) — probed at session start, not here",
147
+ "hooks — loaded at session start; a broken one is reported there",
148
+ ];
149
+
150
+ // ---- home
151
+ {
152
+ const explicit = env.ROVECODE_HOME !== undefined;
153
+ const legacy = join(userHome(env), ".cumulus");
154
+ const legacyThere = existsSync(legacy);
155
+ const detail: string[] = [];
156
+ if (legacyThere) detail.push(explicit
157
+ ? `a legacy ${legacy} is still on this machine; an explicit ROVECODE_HOME is never filled from it (only the default home inherits, once, and says so)`
158
+ : `a legacy ${legacy} is still on this machine; the default home was copied from it once and both are kept — delete the old one when you are sure`);
159
+ checks.push({ id: "home", status: existsSync(home) ? "ok" : "note",
160
+ summary: `${home}${explicit ? " (ROVECODE_HOME)" : ""}${existsSync(home) ? "" : " — does not exist yet; the first thing you store creates it"}`,
161
+ ...(detail.length ? { detail } : {}) });
162
+ }
163
+
164
+ // ---- provider (ids, scopes and key NAMES only — never a value)
165
+ {
166
+ const reg = new ProviderRegistry(cwd, { env });
167
+ const def = reg.defaultRef();
168
+ const configured = reg.list().filter(isConfigured);
169
+ const warnings = reg.warnings();
170
+ const detail = configured.map((p) => `${p.id} (${p.scope}${p.noKey ? ", no key needed" : `, key from ${p.keySource === "env" ? `env ${p.keyEnv}` : p.keySource}`})`);
171
+ for (const w of warnings) detail.push(`providers.json: ${w}`);
172
+ if (def === null) {
173
+ checks.push({ id: "provider", status: warnings.length ? "warn" : "note",
174
+ summary: "no provider configured yet — nothing is broken, nothing is connected: `rovecode connect` (or provider add + auth set)", ...(detail.length ? { detail } : {}) });
175
+ } else {
176
+ checks.push({ id: "provider", status: warnings.length ? "warn" : "ok",
177
+ summary: `default ${def.provider}/${def.model || "(no model — rovecode model use <provider/model>)"} · ${configured.length} provider${configured.length === 1 ? "" : "s"} configured`, ...(detail.length ? { detail } : {}) });
178
+ }
179
+ }
180
+
181
+ // ---- permission
182
+ checks.push(permissionCheck(cwd, env));
183
+
184
+ // ---- trust: the project files that could make rovecode run or import something (core/trust.ts), each with what it
185
+ // carries — an untrusted one contributes nothing until `rovecode trust`. A repo with none is a repo with none.
186
+ {
187
+ const rows = projectTrustRows(cwd, home);
188
+ const off = untrustedRows(rows);
189
+ const detail = trustShowLines(rows);
190
+ const summary = rows.length === 0 ? "no gated project files here"
191
+ : off.length === 0 ? `${rows.length} gated project file${rows.length === 1 ? "" : "s"}, all trusted on this machine`
192
+ : `${off.length} of ${rows.length} gated project file${rows.length === 1 ? "" : "s"} NOT trusted — contributing nothing until \`rovecode trust\` (read \`rovecode trust show\` first)`;
193
+ checks.push({ id: "trust", status: off.length ? "note" : "ok", summary, ...(rows.length ? { detail } : {}) });
194
+ }
195
+
196
+ // ---- MCP: what the files say, what the loader takes, what actually answers
197
+ const parseWarnings: string[] = [];
198
+ const rows = configuredServers(cwd, home, parseWarnings);
199
+ const loadWarnings: string[] = [];
200
+ const loaded = loadMcpConfig(cwd, loadWarnings, { home, env, trusted: trustedPredicate(loadPluginState(home)) });
201
+ const needsNpx = rows.some((r) => r.server.transport === "stdio" && /^npx(\.cmd)?$/i.test(r.server.command ?? ""));
202
+ const needsUvx = rows.some((r) => r.server.transport === "stdio" && /^uvx(\.exe)?$/i.test(r.server.command ?? ""));
203
+ {
204
+ const detail: string[] = [];
205
+ let status: DoctorStatus = "ok";
206
+ const raise = (s: DoctorStatus): void => { const rank = { ok: 0, note: 1, warn: 2, fail: 3 }; if (rank[s] > rank[status]) status = s; };
207
+ for (const w of parseWarnings) { detail.push(`✗ ${w}`); raise("fail"); }
208
+ const loadedNames = new Set(loaded.map((c) => c.name));
209
+ let connected = new Set<string>(); const failed = new Map<string, string>();
210
+ if (deps.connect !== false && loaded.length > 0) {
211
+ const { McpManager } = await import("../mcp/client.ts");
212
+ const mgr = new McpManager(loaded, deps.connectTimeoutMs !== undefined ? { connectTimeoutMs: deps.connectTimeoutMs } : {});
213
+ const r = await mgr.connect();
214
+ connected = new Set(r.connected);
215
+ for (const f of r.failed) failed.set(f.name, f.error);
216
+ await mgr.close().catch(() => {});
217
+ } else if (deps.connect === false && loaded.length > 0) {
218
+ notChecked.push("whether the MCP servers answer (--no-connect)");
219
+ }
220
+ for (const row of rows) {
221
+ const s: McpServerConfig = row.server;
222
+ const where = `${row.scope}${row.scope === "user" ? "" : ` ${row.file}`}`;
223
+ const trust = row.scope === "user" ? "trusted" : mcpTrustStatus(home, row.file);
224
+ const holes = placeholderHoles(s);
225
+ const skipped = loadWarnings.find((w) => w.includes(`server "${s.name}"`));
226
+ if (s.enabled === false) { detail.push(`· ${s.name} — disabled in ${where}`); continue; }
227
+ if (trust !== "trusted") { detail.push(`· ${s.name} — off: its file is not trusted on this machine (${row.file}) — rovecode mcp show, then rovecode mcp trust`); raise("note"); continue; }
228
+ if (holes.length) { detail.push(`! ${s.name} — skipped: still has ${holes.join(", ")} to fill in — edit the args in ${row.file}`); raise("warn"); continue; }
229
+ if (skipped !== undefined && !loadedNames.has(s.name)) { detail.push(`! ${s.name} — skipped: ${skipped.replace(/^.*?server "[^"]+" /, "")}`); raise("warn"); continue; }
230
+ if (!loadedNames.has(s.name)) { detail.push(`! ${s.name} — not loaded (${where})`); raise("warn"); continue; }
231
+ if (failed.has(s.name)) { detail.push(`✗ ${s.name} — did not connect: ${failed.get(s.name)}`); raise("fail"); continue; }
232
+ if (connected.has(s.name)) { detail.push(`✓ ${s.name} — connected (${where})`); continue; }
233
+ detail.push(`· ${s.name} — loads (${where}); not connected in this pass`);
234
+ }
235
+ const npx = rows.filter((r) => launchesViaNpx(r.server) && loadedNames.has(r.server.name)).map((r) => r.server.name);
236
+ const offer = npxOfferLine(npx);
237
+ if (offer !== undefined) detail.push(offer);
238
+ // "load" = would start: a disabled entry is kept by the loader (so `mcp list` can show it) but never launched
239
+ const starting = loaded.filter((c) => c.enabled !== false).length;
240
+ const summary = rows.length === 0 ? "no MCP servers configured — rovecode mcp search <query>"
241
+ : `${rows.length} configured · ${starting} load${deps.connect === false ? "" : ` · ${connected.size} connected · ${failed.size} failed`}`;
242
+ checks.push({ id: "mcp", status, summary, ...(detail.length ? { detail } : {}) });
243
+ }
244
+
245
+ // ---- tools on PATH: what an install plan would say, all at once — and what each absence costs HERE
246
+ {
247
+ const detail: string[] = [];
248
+ let status: DoctorStatus = "ok";
249
+ const raise = (s: DoctorStatus): void => { const rank = { ok: 0, note: 1, warn: 2, fail: 3 }; if (rank[s] > rank[status]) status = s; };
250
+ const want: { program: string; needed: boolean; why?: string }[] = [
251
+ { program: "git", needed: true, why: "checkpoints (undo without touching your repo) and plugin/skill installs need it" },
252
+ { program: "node", needed: needsNpx, why: "an MCP server here starts through npx" },
253
+ { program: "npm", needed: needsNpx, why: "an MCP server here starts through npx (install-once uses npm)" },
254
+ { program: "npx", needed: needsNpx, why: "an MCP server here starts through npx" },
255
+ { program: "uvx", needed: needsUvx, why: "an MCP server here starts through uvx" },
256
+ ];
257
+ for (const w of want) {
258
+ const p = checkPrereq(w.program, deps.prereqEnv ?? {});
259
+ if (p.found) { detail.push(`✓ ${w.program}`); continue; }
260
+ const cost = w.needed ? ` — ${w.why}` : ` — nothing configured here needs it${w.program === "git" ? "" : " yet"}`;
261
+ detail.push(`${w.needed ? "✗" : "·"} ${w.program} not on PATH${cost}${p.hint ? ` (${p.hint})` : ""}`);
262
+ raise(w.needed ? (w.program === "git" ? "warn" : "fail") : "note");
263
+ }
264
+ const lsp = lspAvailabilityNote(cwd, which);
265
+ if (lsp !== null) { detail.push(`! ${lsp.replace(/^lsp: /, "")}`); raise("warn"); }
266
+ else if (existsSync(join(cwd, "tsconfig.json"))) detail.push("✓ typescript-language-server — edits and writes come back with diagnostics");
267
+ else detail.push("· typescript-language-server — not a TypeScript project here (no tsconfig.json), so the gate does not apply");
268
+ checks.push({ id: "tools", status, summary: detail.filter((l) => l.startsWith("✓")).length + " of " + detail.length + " present", detail });
269
+ }
270
+
271
+ // ---- verify: the check the loop runs before "done" (core/verify.ts) — the same kind of fact as `tools` and
272
+ // `permission`: what this project WOULD run, or that nothing is configured and why nothing was inferred. Never a
273
+ // failure: a project with no gate is a project with no gate. The refusals are the row's detail on purpose — that
274
+ // list is how a person decides, once, whether to turn the gate on with the `verify` key.
275
+ {
276
+ const plan = resolveVerify(cwd);
277
+ const summary = plan.source === "settings" ? `${verifyLabelWithCost(cwd, plan)} · from ${plan.reason}`
278
+ : plan.source === "inferred" ? `${verifyLabelWithCost(cwd, plan)} · ${plan.reason} — set \`verify\` in .rovecode/settings.json to pin or replace it`
279
+ : `none · ${plan.reason}`;
280
+ const detail = plan.refused.map((r) => `not inferred: ${r}`);
281
+ if (plan.commands.length > 0) detail.push(VERIFY_BLIND_SPOT);
282
+ checks.push({ id: "verify", status: plan.source === "settings" ? "ok" : "note", summary, ...(detail.length ? { detail } : {}) });
283
+ }
284
+
285
+ // ---- workspace: the roots a session started with `--add-dir` would have, and the limit that comes with them
286
+ if (deps.addDirs !== undefined && deps.addDirs.length > 0) {
287
+ try {
288
+ const roots = new WorkspaceRoots(cwd, resolveRoots(cwd, deps.addDirs));
289
+ const detail = [...roots.notes, ...(roots.dirs.length > 0 ? [roots.checkpointNote(), "the boundary covers the file tools (read, edit, write, glob, grep, ls); bash is judged as a command, not a path"] : [])];
290
+ checks.push({ id: "workspace", status: roots.dirs.length > 0 ? "note" : "ok",
291
+ summary: roots.dirs.length > 0 ? `${cwd} ${roots.describe()} — ${roots.dirs.length} extra root${roots.dirs.length === 1 ? "" : "s"}` : `${cwd} — every --add-dir value was already inside it`,
292
+ ...(detail.length ? { detail } : {}) });
293
+ } catch (e) {
294
+ checks.push({ id: "workspace", status: "fail", summary: e instanceof Error ? e.message : String(e) });
295
+ }
296
+ }
297
+
298
+ // ---- checkpoints: the shadow repositories under this workspace
299
+ {
300
+ const root = join(cwd, ".rovecode", "checkpoints");
301
+ if (!existsSync(root)) checks.push({ id: "checkpoints", status: "ok", summary: "no shadow repository here yet (the first change of a session creates one)" });
302
+ else {
303
+ let sessions = 0; try { sessions = readdirSync(root).length; } catch { /* unreadable: size says 0 */ }
304
+ const { bytes, files } = dirSize(root);
305
+ const big = bytes >= CHECKPOINTS_WARN_BYTES;
306
+ checks.push({ id: "checkpoints", status: big ? "warn" : "ok",
307
+ summary: `${sessions} session${sessions === 1 ? "" : "s"} · ${mb(bytes)} in ${files} files under .rovecode/checkpoints`,
308
+ ...(big ? { detail: [
309
+ "that is large: something big under this folder is being snapshotted before every change (untracked files are included; media, archives and binaries are excluded by pattern, other large files are not)",
310
+ "delete .rovecode/checkpoints to reclaim it — nothing of yours lives there — or ROVECODE_NO_CHECKPOINTS=1 turns snapshots off",
311
+ ] } : {}) });
312
+ notChecked.push("which files the NEXT snapshot would hash — there is no dry run for that");
313
+ }
314
+ }
315
+
316
+ const exitCode = checks.some((c) => c.status === "fail") ? 1 : 0;
317
+ return { ok: exitCode === 0, exitCode, cwd, home, checks, notChecked };
318
+ }
319
+
320
+ const MARK: Record<DoctorStatus, string> = { ok: "✓", note: "·", warn: "!", fail: "✗" };
321
+
322
+ export function renderDoctor(r: DoctorReport): string[] {
323
+ const lines: string[] = [];
324
+ for (const c of r.checks) {
325
+ lines.push(`${MARK[c.status]} ${c.id.padEnd(12)} ${c.summary}`);
326
+ for (const d of c.detail ?? []) lines.push(` ${d}`);
327
+ }
328
+ lines.push("");
329
+ lines.push("not checked:");
330
+ for (const n of r.notChecked) lines.push(` - ${n}`);
331
+ lines.push("");
332
+ lines.push(r.exitCode === 0
333
+ ? (r.checks.some((c) => c.status === "warn" || c.status === "note") ? "nothing is broken; the lines marked ! and · are things to know or finish" : "everything checked is in order")
334
+ : "something is broken — the lines marked ✗ say what");
335
+ return lines;
336
+ }
337
+
338
+ /** `rovecode doctor [--json] [--no-connect]` — exit 0 nothing broken · 1 something to fix · 2 usage */
339
+ export async function cmdDoctor(args: string[], deps: DoctorDeps = {}): Promise<number> {
340
+ const out = deps.out ?? ((l: string) => console.log(l));
341
+ const err = deps.err ?? ((l: string) => console.error(l));
342
+ const json = args.includes("--json");
343
+ // --add-dir: validated exactly as a session would (a bad value is the same one-line usage error, exit 2)
344
+ let addDirs: string[] | undefined;
345
+ try { addDirs = parseAddDirs(["", "", ...args], (msg) => { throw new Error(msg); }); }
346
+ catch (e) { const msg = e instanceof Error ? e.message : String(e); err(msg); if (json) out(JSON.stringify({ ok: false, error: msg, usage: DOCTOR_USAGE }, null, 2)); return 2; }
347
+ for (let i = 0; i < args.length; i++) {
348
+ const a = args[i]!;
349
+ if (a === "--add-dir") { i++; continue; }
350
+ if (a.startsWith("--add-dir=")) continue;
351
+ if (!a.startsWith("-")) continue;
352
+ if (a === "--json" || a === "--no-connect") continue;
353
+ const msg = `unknown flag ${a}`;
354
+ err(msg); err(DOCTOR_USAGE.join("\n"));
355
+ if (json) out(JSON.stringify({ ok: false, error: msg, usage: DOCTOR_USAGE }, null, 2));
356
+ return 2;
357
+ }
358
+ const report = await runDoctor({ ...deps, ...(args.includes("--no-connect") ? { connect: false } : {}), ...(addDirs.length > 0 ? { addDirs } : {}) });
359
+ if (json) out(JSON.stringify(report, null, 2));
360
+ else for (const l of renderDoctor(report)) out(l);
361
+ return report.exitCode;
362
+ }
@@ -0,0 +1,276 @@
1
+ /** Port #38: session export — markdown transcript or raw JSONL copy, LOCAL only.
2
+ * Pattern: opencode cli/cmd/export.ts @ ebece6e (MIT) — session resolution → serialize;
3
+ * their export emits the raw session data verbatim to stdout, which maps to --json here
4
+ * (verbatim byte copy of entries.jsonl, the whole tree incl. abandoned branches). The
5
+ * cloud-share half of opencode's feature (share/session.ts) is explicitly deferred
6
+ * (PORTS.md wave-3 ledger: "export stays local"), and the markdown layout is rovecode-native:
7
+ * the snapshot has no session→markdown renderer at ebece6e.
8
+ *
9
+ * Markdown walks the ACTIVE path only (store.path()), mirroring TUI replayHistory:
10
+ * user/assistant text, tool cards (args one-liner, bounded output, ok/ERROR badge),
11
+ * mode switches as "mode → plan" lines (wave-2 replay convention, never raw
12
+ * <mode_notice> XML), compaction markers, and a costs section over per-origin usage
13
+ * totals + buildCostNote. Output is deterministic: every timestamp comes from the
14
+ * entries themselves (ISO UTC), there is no "generated at" wall-clock line, and the
15
+ * catalog is the offline snapshot (lookup() never fetches). */
16
+
17
+ import { existsSync, readFileSync, writeFileSync } from "node:fs";
18
+ import { join, isAbsolute } from "node:path";
19
+ import { SessionStore, type Entry } from "../core/session.ts";
20
+ import { describeBadSessionId } from "../core/session-id.ts";
21
+ import { resolveSession } from "../core/session-ops.ts";
22
+ import { modeSwitchOf } from "../core/modes.ts";
23
+ import { ModelCatalog } from "../providers/catalog.ts";
24
+ import { buildCostNote } from "../tui/cost.ts";
25
+ import { describeImage } from "../core/images.ts";
26
+ import type { ImagePart, Message, ToolCallPart, ToolResultPart } from "../core/types.ts";
27
+
28
+ /** Tool output cap (chars) per card. Clipped output gets an explicit marker line. */
29
+ export const TOOL_OUTPUT_CAP = 2000;
30
+ /** One-line args summary cap — same 120-char clip the TUI uses for tool cards. */
31
+ const ARGS_CAP = 120;
32
+ /** CLI usage line — thrown on a missing id or a dangling --out; cmdExport turns it into exit 2, the
33
+ * usage/startup class README documents, while a real export failure stays exit 1. */
34
+ const USAGE = "usage: rovecode export <session-id|prefix> [--json] [--out <path>] [--force]";
35
+
36
+ export interface ExportOptions {
37
+ /** raw JSONL copy (verbatim bytes) instead of markdown */
38
+ json?: boolean;
39
+ /** target path; default ./<sessionId-short>.(md|jsonl) under cwd */
40
+ out?: string;
41
+ /** overwrite an existing target file */
42
+ force?: boolean;
43
+ /** base dir for relative/default output paths; default process.cwd() */
44
+ cwd?: string;
45
+ }
46
+
47
+ export interface ExportResult { path: string; format: "markdown" | "jsonl" }
48
+
49
+ // ---------- session-prefix resolution: the ONE rule (core/session-ops.ts resolveSession — shared with /resume,
50
+ // `--resume`, `trace` and the `sessions` verbs; this file used to carry its own copy) ----------
51
+
52
+ /** Exact id wins outright; a prefix must match exactly ONE session; an ambiguous prefix lists candidates instead
53
+ * of silently picking one. An id that is not a plain directory name is refused on export's own usage path
54
+ * before any listing (`../x` never reaches a path join). */
55
+ export function resolveSessionId(sessionsRoot: string, idOrPrefix: string): string {
56
+ const bad = describeBadSessionId(idOrPrefix);
57
+ if (bad !== undefined) throw new Error(`${bad} — ${USAGE}`);
58
+ const r = resolveSession(sessionsRoot, idOrPrefix);
59
+ if (!r.ok) throw new Error(r.error);
60
+ return r.id;
61
+ }
62
+
63
+ // ---------- markdown rendering ----------
64
+
65
+ function isMessage(e: Entry): e is Message { return "role" in e; }
66
+
67
+ /** Longest backtick run in s (0 when none) — a CommonMark span/fence must be longer. */
68
+ function tickRun(s: string): number {
69
+ let run = 0;
70
+ for (const m of s.matchAll(/`+/g)) run = Math.max(run, m[0].length);
71
+ return run;
72
+ }
73
+
74
+ /** Inline-code span that survives backticks in the content (args may contain them):
75
+ * delimiter = longest run + 1 (a fixed `` closes at the first inner double tick),
76
+ * space-padded so a leading/trailing tick stays inside the span. */
77
+ function inlineCode(s: string): string {
78
+ const run = tickRun(s);
79
+ if (run === 0) return `\`${s}\``;
80
+ const tick = "`".repeat(run + 1);
81
+ return `${tick} ${s} ${tick}`;
82
+ }
83
+
84
+ /** Fenced block whose fence is longer than any backtick run in the content. */
85
+ function fenced(content: string): string {
86
+ const fence = "`".repeat(Math.max(3, tickRun(content) + 1));
87
+ return `${fence}\n${content}\n${fence}`;
88
+ }
89
+
90
+ /** One tool card: name + badge header, one-line args, bounded output block. */
91
+ function toolCard(tool: string, args: unknown, res: ToolResultPart | undefined): string {
92
+ const badge = res === undefined ? "no result recorded" : res.ok ? "ok" : "ERROR";
93
+ const argsLine = JSON.stringify(args) ?? "undefined";
94
+ const argsShown = argsLine.length > ARGS_CAP ? argsLine.slice(0, ARGS_CAP) + "…" : argsLine;
95
+ const parts = [`### tool: ${tool} — ${badge}`, `args: ${inlineCode(argsShown)}`];
96
+ if (res !== undefined) {
97
+ if (res.output.length === 0) parts.push("*(no output)*");
98
+ else {
99
+ const clipped = res.output.length > TOOL_OUTPUT_CAP;
100
+ parts.push(fenced(clipped ? res.output.slice(0, TOOL_OUTPUT_CAP) : res.output));
101
+ if (clipped) parts.push(`*+${res.output.length - TOOL_OUTPUT_CAP} chars clipped (cap ${TOOL_OUTPUT_CAP})*`);
102
+ }
103
+ }
104
+ return parts.join("\n\n");
105
+ }
106
+
107
+ function textOf(m: Message): string {
108
+ return m.parts.filter((p) => p.kind === "text").map((p) => (p as { text: string }).text).join("");
109
+ }
110
+
111
+ /** Render the active path as markdown. Exported for tests; pure over the entries. */
112
+ export function renderSessionMarkdown(entries: readonly Entry[], sessionId: string, catalog: ModelCatalog): string {
113
+ const messages = entries.filter(isMessage);
114
+ // pair tool_call parts with their results up front so a card renders where the
115
+ // assistant issued the call; results without a visible call render as orphan cards
116
+ const results = new Map<string, ToolResultPart>();
117
+ for (const m of messages) {
118
+ if (m.role !== "tool") continue;
119
+ for (const p of m.parts) if (p.kind === "tool_result" && !results.has(p.callId)) results.set(p.callId, p);
120
+ }
121
+ const consumed = new Set<string>();
122
+
123
+ // title block: id, date range, model origins (first-appearance order)
124
+ const stamps = entries.map((e) => e.createdAt).filter((t) => typeof t === "number");
125
+ const range = stamps.length > 0
126
+ ? `${new Date(Math.min(...stamps)).toISOString()} → ${new Date(Math.max(...stamps)).toISOString()}`
127
+ : "(empty)";
128
+ const origins: string[] = [];
129
+ for (const m of messages) {
130
+ if (!m.origin) continue;
131
+ const key = `${m.origin.provider}/${m.origin.model}`;
132
+ if (!origins.includes(key)) origins.push(key);
133
+ }
134
+ const blocks: string[] = [
135
+ `# rovecode session ${sessionId.slice(0, 8)}`,
136
+ [`- id: ${inlineCode(sessionId)}`, `- range: ${range}`, `- models: ${origins.length > 0 ? origins.join(", ") : "(none)"}`].join("\n"),
137
+ ];
138
+
139
+ for (const e of entries) {
140
+ if (!isMessage(e)) {
141
+ // event entries: compaction becomes a marker (TUI wording, app.ts); others skipped
142
+ if (e.event.type === "compaction") {
143
+ blocks.push(`> compacted (${e.event.strategy}): ${e.event.tokensBefore} → ${e.event.tokensAfter} tokens`);
144
+ }
145
+ continue;
146
+ }
147
+ const sw = modeSwitchOf(e);
148
+ if (sw) { blocks.push(`> mode → ${sw.to}`); continue; } // replay convention, never the raw XML
149
+ const text = textOf(e);
150
+ if (e.role === "user") {
151
+ // port #34: image parts render as one chip line each under the text (name, WxH, size), the
152
+ // same describeImage text the TUI notes use; the bytes stay in the session's attachments
153
+ // dir (header) so no image link that would dangle next to the export is emitted
154
+ const chips = e.parts.filter((p): p is ImagePart => p.kind === "image").map((p) => `[image: ${describeImage(p)}]`);
155
+ if (text || chips.length > 0) blocks.push("## User", ...(text ? [text] : []), ...chips);
156
+ } else if (e.role === "assistant") {
157
+ blocks.push("## Assistant");
158
+ if (text) blocks.push(text);
159
+ for (const p of e.parts) {
160
+ if (p.kind !== "tool_call") continue;
161
+ const call = p as ToolCallPart;
162
+ blocks.push(toolCard(call.tool, call.args, results.get(call.id)));
163
+ consumed.add(call.id);
164
+ }
165
+ } else if (e.role === "tool") {
166
+ for (const p of e.parts) {
167
+ if (p.kind === "tool_result" && !consumed.has(p.callId)) {
168
+ blocks.push(toolCard("(unknown)", undefined, p));
169
+ consumed.add(p.callId);
170
+ }
171
+ }
172
+ } else if (text) {
173
+ // plain system note (e.g. a compaction summary message)
174
+ blocks.push(text.split("\n").map((l) => `> ${l}`).join("\n"));
175
+ }
176
+ }
177
+ if (messages.length === 0) blocks.push("*(no entries)*");
178
+
179
+ // costs: per-origin usage totals, then the /cost note (existing helpers, deterministic
180
+ // against the offline catalog; "current" = the last message origin on the path)
181
+ const byOrigin = new Map<string, { input: number; output: number; cacheRead: number; cacheWrite: number; msgs: number }>();
182
+ for (const m of messages) {
183
+ if (!m.usage) continue;
184
+ const key = m.origin ? `${m.origin.provider}/${m.origin.model}` : "(no origin)";
185
+ const row = byOrigin.get(key) ?? { input: 0, output: 0, cacheRead: 0, cacheWrite: 0, msgs: 0 };
186
+ row.input += m.usage.input; row.output += m.usage.output;
187
+ row.cacheRead += m.usage.cacheRead ?? 0; row.cacheWrite += m.usage.cacheWrite ?? 0;
188
+ row.msgs += 1;
189
+ byOrigin.set(key, row);
190
+ }
191
+ blocks.push("## Costs");
192
+ if (byOrigin.size > 0) {
193
+ blocks.push([
194
+ "| model | input | output | cache read | cache write | messages |",
195
+ "| --- | ---: | ---: | ---: | ---: | ---: |",
196
+ ...[...byOrigin.entries()].map(([k, r]) => `| ${k} | ${r.input} | ${r.output} | ${r.cacheRead} | ${r.cacheWrite} | ${r.msgs} |`),
197
+ ].join("\n"));
198
+ }
199
+ const current = [...messages].reverse().find((m) => m.origin)?.origin ?? { provider: "unknown", model: "unknown" };
200
+ blocks.push(buildCostNote(messages, catalog, current).split("\n").map((l) => `- ${l}`).join("\n"));
201
+
202
+ return blocks.join("\n\n") + "\n";
203
+ }
204
+
205
+ // ---------- export entrypoint ----------
206
+
207
+ function targetPath(out: string | undefined, id: string, format: "markdown" | "jsonl", cwd: string): string {
208
+ const fallback = `${id.slice(0, 8)}.${format === "jsonl" ? "jsonl" : "md"}`;
209
+ const p = out ?? fallback;
210
+ return isAbsolute(p) ? p : join(cwd, p);
211
+ }
212
+
213
+ /** Export a session (full id or unique prefix) to markdown or a raw JSONL copy.
214
+ * --json copies entries.jsonl BYTE-VERBATIM (whole tree, every branch); markdown
215
+ * renders the active path only. Never overwrites an existing file without force. */
216
+ export function exportSession(sessionsRoot: string, idOrPrefix: string, opts: ExportOptions = {}): ExportResult {
217
+ if (!idOrPrefix) throw new Error(USAGE);
218
+ const id = resolveSessionId(sessionsRoot, idOrPrefix);
219
+ const format: ExportResult["format"] = opts.json ? "jsonl" : "markdown";
220
+ const target = targetPath(opts.out, id, format, opts.cwd ?? process.cwd());
221
+ if (existsSync(target) && !opts.force) throw new Error(`refusing to overwrite ${target} — pass --force`);
222
+ if (opts.json) {
223
+ const src = join(sessionsRoot, id, "entries.jsonl");
224
+ if (!existsSync(src)) throw new Error(`session ${id.slice(0, 8)} has no entries.jsonl to copy`);
225
+ writeFileSync(target, readFileSync(src)); // Buffer in → Buffer out: verbatim bytes
226
+ } else {
227
+ const store = new SessionStore(sessionsRoot, id);
228
+ writeFileSync(target, renderSessionMarkdown(store.path(), id, new ModelCatalog()));
229
+ }
230
+ return { path: target, format };
231
+ }
232
+
233
+ // ---------- CLI glue (rovecode export …) ----------
234
+
235
+ export interface ExportCliArgs { idOrPrefix?: string; json: boolean; out?: string; force: boolean }
236
+
237
+ /** Parse `rovecode export` argv. Flags may sit anywhere — parseCli accepts `rovecode --json
238
+ * export <id>` for every subcommand — so the whole argv after the script path is
239
+ * scanned and the single `export` command token skipped. parseCli strips flags but
240
+ * leaves flag VALUES in rest, so --out is consumed here (same reason main.ts hand-
241
+ * parses --resume: dispatch flags are boolean-only); a missing or flag-shaped --out
242
+ * value is a usage error, never a silent default. First remaining non-flag = the id. */
243
+ export function parseExportArgs(argv: readonly string[]): ExportCliArgs {
244
+ const args = argv.slice(2);
245
+ const parsed: ExportCliArgs = { json: false, force: false };
246
+ let cmdSeen = false;
247
+ for (let i = 0; i < args.length; i++) {
248
+ const a = args[i]!;
249
+ if (a === "--json") parsed.json = true;
250
+ else if (a === "--force") parsed.force = true;
251
+ else if (a === "--out") {
252
+ const v = args[++i];
253
+ if (v === undefined || v.startsWith("-")) throw new Error(`--out needs a path — ${USAGE}`);
254
+ parsed.out = v;
255
+ } else if (!a.startsWith("-")) { // other flags (--yolo, --plain, …) belong to dispatch
256
+ if (!cmdSeen && a === "export") cmdSeen = true; // the command token itself
257
+ else if (parsed.idOrPrefix === undefined) parsed.idOrPrefix = a;
258
+ }
259
+ }
260
+ return parsed;
261
+ }
262
+
263
+ /** `rovecode export <session> [--json] [--out <path>] [--force]` — errors exit 1. */
264
+ export function cmdExport(argv: readonly string[]): void {
265
+ try {
266
+ const a = parseExportArgs(argv); // inside: a dangling --out is a usage error too
267
+ const res = exportSession(join(process.cwd(), ".rovecode", "sessions"), a.idOrPrefix ?? "", a);
268
+ console.log(`exported ${res.format} → ${res.path}`);
269
+ } catch (e) {
270
+ const msg = e instanceof Error ? e.message : String(e);
271
+ console.error(`error: ${msg}`);
272
+ // "you typed it wrong" and "it did not work" are different answers to a script: 2 is the usage class
273
+ // (README: 0 done · 1 error/budget · 2 usage/startup), and every other command already answers that way
274
+ process.exit(msg.startsWith("usage:") ? 2 : 1);
275
+ }
276
+ }