@mxalbert/context-mode 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (365) hide show
  1. package/.claude-plugin/marketplace.json +33 -0
  2. package/.claude-plugin/plugin.json +31 -0
  3. package/.codex-plugin/hooks.json +65 -0
  4. package/.codex-plugin/mcp.json +13 -0
  5. package/.codex-plugin/plugin.json +31 -0
  6. package/.openclaw-plugin/index.ts +12 -0
  7. package/.openclaw-plugin/openclaw.plugin.json +38 -0
  8. package/.openclaw-plugin/package.json +28 -0
  9. package/LICENSE +94 -0
  10. package/README.md +1619 -0
  11. package/bin/statusline.mjs +378 -0
  12. package/build/adapters/antigravity/index.d.ts +51 -0
  13. package/build/adapters/antigravity/index.js +169 -0
  14. package/build/adapters/antigravity-cli/index.d.ts +51 -0
  15. package/build/adapters/antigravity-cli/index.js +342 -0
  16. package/build/adapters/base.d.ts +92 -0
  17. package/build/adapters/base.js +135 -0
  18. package/build/adapters/claude-code/config.d.ts +8 -0
  19. package/build/adapters/claude-code/config.js +8 -0
  20. package/build/adapters/claude-code/hooks.d.ts +106 -0
  21. package/build/adapters/claude-code/hooks.js +183 -0
  22. package/build/adapters/claude-code/index.d.ts +80 -0
  23. package/build/adapters/claude-code/index.js +569 -0
  24. package/build/adapters/claude-code-base.d.ts +49 -0
  25. package/build/adapters/claude-code-base.js +113 -0
  26. package/build/adapters/client-map.d.ts +10 -0
  27. package/build/adapters/client-map.js +42 -0
  28. package/build/adapters/codex/config.d.ts +8 -0
  29. package/build/adapters/codex/config.js +8 -0
  30. package/build/adapters/codex/hooks.d.ts +55 -0
  31. package/build/adapters/codex/hooks.js +64 -0
  32. package/build/adapters/codex/index.d.ts +87 -0
  33. package/build/adapters/codex/index.js +995 -0
  34. package/build/adapters/codex/paths.d.ts +1 -0
  35. package/build/adapters/codex/paths.js +12 -0
  36. package/build/adapters/codex/usage.d.ts +107 -0
  37. package/build/adapters/codex/usage.js +227 -0
  38. package/build/adapters/copilot-base.d.ts +94 -0
  39. package/build/adapters/copilot-base.js +297 -0
  40. package/build/adapters/copilot-cli/hooks.d.ts +33 -0
  41. package/build/adapters/copilot-cli/hooks.js +64 -0
  42. package/build/adapters/copilot-cli/index.d.ts +48 -0
  43. package/build/adapters/copilot-cli/index.js +341 -0
  44. package/build/adapters/cursor/config.d.ts +4 -0
  45. package/build/adapters/cursor/config.js +4 -0
  46. package/build/adapters/cursor/hooks.d.ts +55 -0
  47. package/build/adapters/cursor/hooks.js +82 -0
  48. package/build/adapters/cursor/index.d.ts +64 -0
  49. package/build/adapters/cursor/index.js +517 -0
  50. package/build/adapters/detect.d.ts +136 -0
  51. package/build/adapters/detect.js +623 -0
  52. package/build/adapters/gemini-cli/config.d.ts +8 -0
  53. package/build/adapters/gemini-cli/config.js +8 -0
  54. package/build/adapters/gemini-cli/hooks.d.ts +83 -0
  55. package/build/adapters/gemini-cli/hooks.js +115 -0
  56. package/build/adapters/gemini-cli/index.d.ts +80 -0
  57. package/build/adapters/gemini-cli/index.js +483 -0
  58. package/build/adapters/jetbrains-copilot/config.d.ts +8 -0
  59. package/build/adapters/jetbrains-copilot/config.js +8 -0
  60. package/build/adapters/jetbrains-copilot/hooks.d.ts +59 -0
  61. package/build/adapters/jetbrains-copilot/hooks.js +87 -0
  62. package/build/adapters/jetbrains-copilot/index.d.ts +31 -0
  63. package/build/adapters/jetbrains-copilot/index.js +131 -0
  64. package/build/adapters/kimi/config.d.ts +8 -0
  65. package/build/adapters/kimi/config.js +8 -0
  66. package/build/adapters/kimi/hooks.d.ts +28 -0
  67. package/build/adapters/kimi/hooks.js +34 -0
  68. package/build/adapters/kimi/index.d.ts +66 -0
  69. package/build/adapters/kimi/index.js +537 -0
  70. package/build/adapters/kimi/paths.d.ts +21 -0
  71. package/build/adapters/kimi/paths.js +52 -0
  72. package/build/adapters/kimi/usage.d.ts +82 -0
  73. package/build/adapters/kimi/usage.js +217 -0
  74. package/build/adapters/kiro/hooks.d.ts +61 -0
  75. package/build/adapters/kiro/hooks.js +94 -0
  76. package/build/adapters/kiro/index.d.ts +61 -0
  77. package/build/adapters/kiro/index.js +301 -0
  78. package/build/adapters/omp/index.d.ts +65 -0
  79. package/build/adapters/omp/index.js +182 -0
  80. package/build/adapters/omp/plugin.d.ts +81 -0
  81. package/build/adapters/omp/plugin.js +331 -0
  82. package/build/adapters/omp/usage.d.ts +49 -0
  83. package/build/adapters/omp/usage.js +110 -0
  84. package/build/adapters/openclaw/config.d.ts +8 -0
  85. package/build/adapters/openclaw/config.js +8 -0
  86. package/build/adapters/openclaw/hooks.d.ts +50 -0
  87. package/build/adapters/openclaw/hooks.js +61 -0
  88. package/build/adapters/openclaw/index.d.ts +74 -0
  89. package/build/adapters/openclaw/index.js +439 -0
  90. package/build/adapters/openclaw/mcp-tools.d.ts +54 -0
  91. package/build/adapters/openclaw/mcp-tools.js +207 -0
  92. package/build/adapters/openclaw/plugin.d.ts +141 -0
  93. package/build/adapters/openclaw/plugin.js +818 -0
  94. package/build/adapters/openclaw/session-db.d.ts +55 -0
  95. package/build/adapters/openclaw/session-db.js +88 -0
  96. package/build/adapters/openclaw/usage.d.ts +34 -0
  97. package/build/adapters/openclaw/usage.js +52 -0
  98. package/build/adapters/openclaw/workspace-router.d.ts +29 -0
  99. package/build/adapters/openclaw/workspace-router.js +64 -0
  100. package/build/adapters/opencode/config.d.ts +8 -0
  101. package/build/adapters/opencode/config.js +8 -0
  102. package/build/adapters/opencode/hooks.d.ts +38 -0
  103. package/build/adapters/opencode/hooks.js +50 -0
  104. package/build/adapters/opencode/index.d.ts +144 -0
  105. package/build/adapters/opencode/index.js +638 -0
  106. package/build/adapters/opencode/plugin.d.ts +249 -0
  107. package/build/adapters/opencode/plugin.js +1536 -0
  108. package/build/adapters/opencode/v2.d.ts +117 -0
  109. package/build/adapters/opencode/v2.js +224 -0
  110. package/build/adapters/opencode/zod3tov4.d.ts +1 -0
  111. package/build/adapters/opencode/zod3tov4.js +132 -0
  112. package/build/adapters/pi/extension.d.ts +81 -0
  113. package/build/adapters/pi/extension.js +861 -0
  114. package/build/adapters/pi/index.d.ts +57 -0
  115. package/build/adapters/pi/index.js +173 -0
  116. package/build/adapters/pi/mcp-bridge.d.ts +268 -0
  117. package/build/adapters/pi/mcp-bridge.js +894 -0
  118. package/build/adapters/qwen-code/hooks.d.ts +26 -0
  119. package/build/adapters/qwen-code/hooks.js +29 -0
  120. package/build/adapters/qwen-code/index.d.ts +40 -0
  121. package/build/adapters/qwen-code/index.js +361 -0
  122. package/build/adapters/qwen-code/usage.d.ts +90 -0
  123. package/build/adapters/qwen-code/usage.js +222 -0
  124. package/build/adapters/types.d.ts +360 -0
  125. package/build/adapters/types.js +118 -0
  126. package/build/adapters/vscode-copilot/config.d.ts +8 -0
  127. package/build/adapters/vscode-copilot/config.js +8 -0
  128. package/build/adapters/vscode-copilot/hooks.d.ts +71 -0
  129. package/build/adapters/vscode-copilot/hooks.js +98 -0
  130. package/build/adapters/vscode-copilot/index.d.ts +32 -0
  131. package/build/adapters/vscode-copilot/index.js +222 -0
  132. package/build/adapters/zed/index.d.ts +40 -0
  133. package/build/adapters/zed/index.js +163 -0
  134. package/build/cli.d.ts +34 -0
  135. package/build/cli.js +1828 -0
  136. package/build/db-base.d.ts +250 -0
  137. package/build/db-base.js +756 -0
  138. package/build/executor.d.ts +72 -0
  139. package/build/executor.js +678 -0
  140. package/build/exit-classify.d.ts +19 -0
  141. package/build/exit-classify.js +12 -0
  142. package/build/fetch/blocks.d.ts +145 -0
  143. package/build/fetch/blocks.js +244 -0
  144. package/build/fetch/extract.d.ts +68 -0
  145. package/build/fetch/extract.js +123 -0
  146. package/build/fetch/page-store.d.ts +66 -0
  147. package/build/fetch/page-store.js +174 -0
  148. package/build/fetch-cache.d.ts +13 -0
  149. package/build/fetch-cache.js +15 -0
  150. package/build/lifecycle.d.ts +124 -0
  151. package/build/lifecycle.js +278 -0
  152. package/build/package-identity.d.ts +26 -0
  153. package/build/package-identity.js +28 -0
  154. package/build/runPool.d.ts +36 -0
  155. package/build/runPool.js +51 -0
  156. package/build/runtime.d.ts +71 -0
  157. package/build/runtime.js +659 -0
  158. package/build/search/auto-memory.d.ts +47 -0
  159. package/build/search/auto-memory.js +170 -0
  160. package/build/search/ctx-search-schema.d.ts +90 -0
  161. package/build/search/ctx-search-schema.js +135 -0
  162. package/build/search/flood-guard.d.ts +57 -0
  163. package/build/search/flood-guard.js +80 -0
  164. package/build/search/unified.d.ts +56 -0
  165. package/build/search/unified.js +104 -0
  166. package/build/security.d.ts +206 -0
  167. package/build/security.js +780 -0
  168. package/build/server.d.ts +240 -0
  169. package/build/server.js +5034 -0
  170. package/build/session/analytics.d.ts +773 -0
  171. package/build/session/analytics.js +2420 -0
  172. package/build/session/db.d.ts +468 -0
  173. package/build/session/db.js +1330 -0
  174. package/build/session/error-classifier.d.ts +87 -0
  175. package/build/session/error-classifier.js +303 -0
  176. package/build/session/event-emit.d.ts +48 -0
  177. package/build/session/event-emit.js +101 -0
  178. package/build/session/extract.d.ts +333 -0
  179. package/build/session/extract.js +2688 -0
  180. package/build/session/model-prices.json +429 -0
  181. package/build/session/persist-tool-calls.d.ts +54 -0
  182. package/build/session/persist-tool-calls.js +105 -0
  183. package/build/session/pricing.d.ts +64 -0
  184. package/build/session/pricing.js +151 -0
  185. package/build/session/project-attribution.d.ts +73 -0
  186. package/build/session/project-attribution.js +245 -0
  187. package/build/session/purge.d.ts +138 -0
  188. package/build/session/purge.js +240 -0
  189. package/build/session/retrieval-marker.d.ts +39 -0
  190. package/build/session/retrieval-marker.js +65 -0
  191. package/build/session/snapshot.d.ts +46 -0
  192. package/build/session/snapshot.js +532 -0
  193. package/build/store-directory.d.ts +56 -0
  194. package/build/store-directory.js +254 -0
  195. package/build/store.d.ts +147 -0
  196. package/build/store.js +1714 -0
  197. package/build/truncate.d.ts +57 -0
  198. package/build/truncate.js +142 -0
  199. package/build/types.d.ts +117 -0
  200. package/build/types.js +20 -0
  201. package/build/util/claude-config.d.ts +32 -0
  202. package/build/util/claude-config.js +84 -0
  203. package/build/util/hook-config.d.ts +27 -0
  204. package/build/util/hook-config.js +76 -0
  205. package/build/util/jsonc.d.ts +14 -0
  206. package/build/util/jsonc.js +104 -0
  207. package/build/util/plugin-cache-integrity.d.ts +51 -0
  208. package/build/util/plugin-cache-integrity.js +146 -0
  209. package/build/util/project-dir.d.ts +149 -0
  210. package/build/util/project-dir.js +340 -0
  211. package/build/util/sibling-mcp.d.ts +79 -0
  212. package/build/util/sibling-mcp.js +181 -0
  213. package/cli.bundle.mjs +1495 -0
  214. package/configs/antigravity/GEMINI.md +68 -0
  215. package/configs/antigravity/mcp_config.json +7 -0
  216. package/configs/antigravity-cli/hooks/hooks.json +37 -0
  217. package/configs/antigravity-cli/hooks.json +37 -0
  218. package/configs/antigravity-cli/mcp_config.json +10 -0
  219. package/configs/antigravity-cli/plugin.json +14 -0
  220. package/configs/antigravity-cli/rules/context-mode.md +77 -0
  221. package/configs/antigravity-cli/skills/context-mode/SKILL.md +77 -0
  222. package/configs/claude-code/CLAUDE.md +91 -0
  223. package/configs/codex/AGENTS.md +99 -0
  224. package/configs/codex/config.toml +8 -0
  225. package/configs/codex/hooks.json +47 -0
  226. package/configs/copilot-cli/.github/plugin/plugin.json +23 -0
  227. package/configs/copilot-cli/.mcp.json +12 -0
  228. package/configs/copilot-cli/README.md +47 -0
  229. package/configs/copilot-cli/hooks.json +41 -0
  230. package/configs/copilot-cli/skills/context-mode/SKILL.md +38 -0
  231. package/configs/cursor/context-mode.mdc +76 -0
  232. package/configs/cursor/hooks.json +21 -0
  233. package/configs/cursor/mcp.json +7 -0
  234. package/configs/gemini-cli/GEMINI.md +88 -0
  235. package/configs/gemini-cli/mcp.json +7 -0
  236. package/configs/gemini-cli/settings.json +60 -0
  237. package/configs/jetbrains-copilot/copilot-instructions.md +80 -0
  238. package/configs/jetbrains-copilot/hooks.json +16 -0
  239. package/configs/jetbrains-copilot/mcp.json +7 -0
  240. package/configs/kilo/AGENTS.md +84 -0
  241. package/configs/kilo/kilo.json +6 -0
  242. package/configs/kimi/hooks.json +54 -0
  243. package/configs/kiro/KIRO.md +84 -0
  244. package/configs/kiro/agent.json +18 -0
  245. package/configs/kiro/mcp.json +7 -0
  246. package/configs/omp/SYSTEM.md +85 -0
  247. package/configs/omp/mcp.json +7 -0
  248. package/configs/openclaw/AGENTS.md +87 -0
  249. package/configs/openclaw/openclaw.json +13 -0
  250. package/configs/opencode/AGENTS.md +84 -0
  251. package/configs/opencode/opencode.json +6 -0
  252. package/configs/pi/AGENTS.md +3 -0
  253. package/configs/qwen-code/QWEN.md +91 -0
  254. package/configs/vscode-copilot/copilot-instructions.md +80 -0
  255. package/configs/vscode-copilot/hooks.json +16 -0
  256. package/configs/vscode-copilot/mcp.json +7 -0
  257. package/configs/zed/AGENTS.md +68 -0
  258. package/hooks/antigravity-cli/payload.mjs +98 -0
  259. package/hooks/antigravity-cli/posttooluse.mjs +138 -0
  260. package/hooks/antigravity-cli/pretooluse.mjs +78 -0
  261. package/hooks/antigravity-cli/stop.mjs +58 -0
  262. package/hooks/auto-injection.mjs +102 -0
  263. package/hooks/cache-heal-utils.mjs +379 -0
  264. package/hooks/codex/platform.mjs +1 -0
  265. package/hooks/codex/posttooluse.mjs +66 -0
  266. package/hooks/codex/precompact.mjs +70 -0
  267. package/hooks/codex/pretooluse.mjs +42 -0
  268. package/hooks/codex/sessionstart.mjs +121 -0
  269. package/hooks/codex/stop.mjs +138 -0
  270. package/hooks/codex/userpromptsubmit.mjs +75 -0
  271. package/hooks/copilot-cli/posttooluse.mjs +79 -0
  272. package/hooks/copilot-cli/precompact.mjs +66 -0
  273. package/hooks/copilot-cli/pretooluse.mjs +41 -0
  274. package/hooks/copilot-cli/sessionstart.mjs +121 -0
  275. package/hooks/copilot-cli/stop.mjs +59 -0
  276. package/hooks/copilot-cli/userpromptsubmit.mjs +77 -0
  277. package/hooks/core/codex-caps.mjs +112 -0
  278. package/hooks/core/formatters.mjs +356 -0
  279. package/hooks/core/mcp-ready.mjs +109 -0
  280. package/hooks/core/platform-detect.mjs +49 -0
  281. package/hooks/core/routing.mjs +1050 -0
  282. package/hooks/core/stdin.mjs +90 -0
  283. package/hooks/core/tool-naming.mjs +57 -0
  284. package/hooks/cursor/afteragentresponse.mjs +74 -0
  285. package/hooks/cursor/hooks.json +31 -0
  286. package/hooks/cursor/posttooluse.mjs +72 -0
  287. package/hooks/cursor/pretooluse.mjs +26 -0
  288. package/hooks/cursor/sessionstart.mjs +97 -0
  289. package/hooks/cursor/stop.mjs +48 -0
  290. package/hooks/ensure-deps.mjs +254 -0
  291. package/hooks/formatters/claude-code.mjs +113 -0
  292. package/hooks/formatters/cursor.mjs +37 -0
  293. package/hooks/formatters/gemini-cli.mjs +55 -0
  294. package/hooks/formatters/vscode-copilot.mjs +55 -0
  295. package/hooks/gemini-cli/aftermodel.mjs +70 -0
  296. package/hooks/gemini-cli/aftertool.mjs +61 -0
  297. package/hooks/gemini-cli/beforeagent.mjs +99 -0
  298. package/hooks/gemini-cli/beforetool.mjs +27 -0
  299. package/hooks/gemini-cli/precompress.mjs +55 -0
  300. package/hooks/gemini-cli/sessionstart.mjs +137 -0
  301. package/hooks/heal-partial-install.mjs +712 -0
  302. package/hooks/hooks.json +143 -0
  303. package/hooks/jetbrains-copilot/posttooluse.mjs +61 -0
  304. package/hooks/jetbrains-copilot/precompact.mjs +55 -0
  305. package/hooks/jetbrains-copilot/pretooluse.mjs +27 -0
  306. package/hooks/jetbrains-copilot/sessionstart.mjs +124 -0
  307. package/hooks/kimi/platform.mjs +1 -0
  308. package/hooks/kimi/posttooluse.mjs +72 -0
  309. package/hooks/kimi/precompact.mjs +80 -0
  310. package/hooks/kimi/pretooluse.mjs +42 -0
  311. package/hooks/kimi/sessionend.mjs +61 -0
  312. package/hooks/kimi/sessionstart.mjs +113 -0
  313. package/hooks/kimi/stop.mjs +132 -0
  314. package/hooks/kimi/userpromptsubmit.mjs +90 -0
  315. package/hooks/kiro/agentspawn.mjs +97 -0
  316. package/hooks/kiro/posttooluse.mjs +51 -0
  317. package/hooks/kiro/pretooluse.mjs +64 -0
  318. package/hooks/kiro/userpromptsubmit.mjs +88 -0
  319. package/hooks/normalize-hooks.mjs +323 -0
  320. package/hooks/platform-bridge.mjs +340 -0
  321. package/hooks/posttooluse.mjs +225 -0
  322. package/hooks/precompact.mjs +100 -0
  323. package/hooks/pretooluse.mjs +227 -0
  324. package/hooks/qwen-code/platform.mjs +1 -0
  325. package/hooks/qwen-code/stop.mjs +168 -0
  326. package/hooks/routing-block.mjs +105 -0
  327. package/hooks/run-hook.mjs +95 -0
  328. package/hooks/security.bundle.mjs +2 -0
  329. package/hooks/session-attribution.bundle.mjs +1 -0
  330. package/hooks/session-db.bundle.mjs +145 -0
  331. package/hooks/session-directive.mjs +520 -0
  332. package/hooks/session-extract.bundle.mjs +3 -0
  333. package/hooks/session-helpers.mjs +428 -0
  334. package/hooks/session-loaders.mjs +448 -0
  335. package/hooks/session-snapshot.bundle.mjs +32 -0
  336. package/hooks/sessionstart.mjs +464 -0
  337. package/hooks/stop.mjs +82 -0
  338. package/hooks/suppress-stderr.mjs +25 -0
  339. package/hooks/userpromptsubmit.mjs +108 -0
  340. package/hooks/vscode-copilot/posttooluse.mjs +61 -0
  341. package/hooks/vscode-copilot/precompact.mjs +55 -0
  342. package/hooks/vscode-copilot/pretooluse.mjs +27 -0
  343. package/hooks/vscode-copilot/sessionstart.mjs +129 -0
  344. package/openclaw.plugin.json +38 -0
  345. package/package.json +132 -0
  346. package/scripts/heal-better-sqlite3.mjs +430 -0
  347. package/scripts/heal-installed-plugins.mjs +635 -0
  348. package/scripts/plugin-cache-integrity.mjs +248 -0
  349. package/scripts/postinstall.mjs +397 -0
  350. package/server.bundle.mjs +1421 -0
  351. package/server.js +5 -0
  352. package/skills/.ignore +7 -0
  353. package/skills/context-mode/SKILL.md +300 -0
  354. package/skills/context-mode/references/anti-patterns.md +283 -0
  355. package/skills/context-mode/references/patterns-javascript.md +298 -0
  356. package/skills/context-mode/references/patterns-python.md +304 -0
  357. package/skills/context-mode/references/patterns-shell.md +277 -0
  358. package/skills/ctx-doctor/SKILL.md +22 -0
  359. package/skills/ctx-index/SKILL.md +46 -0
  360. package/skills/ctx-insight/SKILL.md +24 -0
  361. package/skills/ctx-purge/SKILL.md +49 -0
  362. package/skills/ctx-search/SKILL.md +35 -0
  363. package/skills/ctx-stats/SKILL.md +26 -0
  364. package/skills/ctx-upgrade/SKILL.md +31 -0
  365. package/start.mjs +616 -0
@@ -0,0 +1,51 @@
1
+ /**
2
+ * TypeScript surface for the start.mjs plugin-cache integrity helper.
3
+ *
4
+ * The actual logic lives in `scripts/plugin-cache-integrity.mjs` (raw
5
+ * `.mjs` so start.mjs can import it without a TS toolchain at boot —
6
+ * #550 fail-fast happens BEFORE any bundle is loaded). This module is
7
+ * the bridge that lets TS consumers (claude-code adapter's
8
+ * getHealthChecks for Algo-D5, the cli doctor surface) call the same
9
+ * function without duplicating the implementation.
10
+ *
11
+ * Single source of truth: scripts/plugin-cache-integrity.mjs. Boot
12
+ * fail-fast (Algo-D4) and doctor diagnostic (Algo-D5) agree
13
+ * byte-for-byte because they call the same exported function.
14
+ *
15
+ * Top-level dynamic import is used (not a static `import` from `.mjs`)
16
+ * because the project is ESM and `import` of a sibling `.mjs` from a
17
+ * `.ts` file relies on the bundler / loader resolving `.mjs`
18
+ * extensions, which esbuild can do but tsc-only typecheck cannot. The
19
+ * dynamic import is resolved by the runtime (Node ESM) regardless of
20
+ * how the consumer was bundled. Errors are caught and surfaced as a
21
+ * FAIL detail — the helper is required to ship in the npm tarball
22
+ * (package.json files[]); a missing helper means the install is
23
+ * fundamentally broken.
24
+ */
25
+ /**
26
+ * Files `start.mjs` needs to launch the MCP server, checked dependency-free
27
+ * (fs only) so this works even when the integrity helper
28
+ * (`scripts/plugin-cache-integrity.mjs`) is itself missing — a missing helper
29
+ * is itself a partial-install symptom, and the operator most needs to know
30
+ * whether the launch entrypoint survived.
31
+ *
32
+ * - `start.mjs` is the plugin `command` target (`.claude-plugin/plugin.json`)
33
+ * and has NO fallback: if absent, `node ${CLAUDE_PLUGIN_ROOT}/start.mjs`
34
+ * fails immediately and the MCP server never starts.
35
+ * - The server is loaded by start.mjs from `server.bundle.mjs`, falling back
36
+ * to `build/server.js`; it is only "missing" when BOTH are absent.
37
+ */
38
+ export declare function findMissingLaunchFiles(pluginRoot: string): string[];
39
+ /**
40
+ * Run the integrity check synchronously. If the helper module is
41
+ * still loading (not yet cached) returns a FAIL with detail
42
+ * "integrity helper not yet loaded" — caller should retry once the
43
+ * doctor command's IO is complete. In practice the doctor is invoked
44
+ * many MS after module load so this fallback is defensive only.
45
+ */
46
+ export declare function checkPluginCacheIntegritySync(pluginRoot: string): {
47
+ status: "OK" | "FAIL";
48
+ detail: string;
49
+ };
50
+ /** Force-await the helper load. Tests use this to deflake the eager fire-and-forget. */
51
+ export declare function ensurePluginCacheIntegrityLoaded(): Promise<void>;
@@ -0,0 +1,146 @@
1
+ /**
2
+ * TypeScript surface for the start.mjs plugin-cache integrity helper.
3
+ *
4
+ * The actual logic lives in `scripts/plugin-cache-integrity.mjs` (raw
5
+ * `.mjs` so start.mjs can import it without a TS toolchain at boot —
6
+ * #550 fail-fast happens BEFORE any bundle is loaded). This module is
7
+ * the bridge that lets TS consumers (claude-code adapter's
8
+ * getHealthChecks for Algo-D5, the cli doctor surface) call the same
9
+ * function without duplicating the implementation.
10
+ *
11
+ * Single source of truth: scripts/plugin-cache-integrity.mjs. Boot
12
+ * fail-fast (Algo-D4) and doctor diagnostic (Algo-D5) agree
13
+ * byte-for-byte because they call the same exported function.
14
+ *
15
+ * Top-level dynamic import is used (not a static `import` from `.mjs`)
16
+ * because the project is ESM and `import` of a sibling `.mjs` from a
17
+ * `.ts` file relies on the bundler / loader resolving `.mjs`
18
+ * extensions, which esbuild can do but tsc-only typecheck cannot. The
19
+ * dynamic import is resolved by the runtime (Node ESM) regardless of
20
+ * how the consumer was bundled. Errors are caught and surfaced as a
21
+ * FAIL detail — the helper is required to ship in the npm tarball
22
+ * (package.json files[]); a missing helper means the install is
23
+ * fundamentally broken.
24
+ */
25
+ import { existsSync } from "node:fs";
26
+ import { join } from "node:path";
27
+ let cached = null;
28
+ let cachedError = null;
29
+ async function loadHelper() {
30
+ if (cached)
31
+ return cached;
32
+ if (cachedError)
33
+ return null;
34
+ try {
35
+ // Resolve relative to this compiled file. After tsc emits to
36
+ // build/util/plugin-cache-integrity.js, the helper sits at
37
+ // ../../scripts/plugin-cache-integrity.mjs. After esbuild bundles
38
+ // src/cli.ts to cli.bundle.mjs at the repo root, the same relative
39
+ // path resolves to ./scripts/plugin-cache-integrity.mjs. Both
40
+ // shapes are walked here.
41
+ const candidates = [
42
+ new URL("../../scripts/plugin-cache-integrity.mjs", import.meta.url),
43
+ new URL("./scripts/plugin-cache-integrity.mjs", import.meta.url),
44
+ ];
45
+ let lastErr = null;
46
+ for (const url of candidates) {
47
+ try {
48
+ const mod = (await import(url.href));
49
+ if (typeof mod?.assertPluginCacheIntegrity === "function") {
50
+ cached = mod;
51
+ return cached;
52
+ }
53
+ }
54
+ catch (err) {
55
+ lastErr = err;
56
+ }
57
+ }
58
+ cachedError =
59
+ lastErr instanceof Error ? lastErr.message : String(lastErr ?? "not found");
60
+ return null;
61
+ }
62
+ catch (err) {
63
+ cachedError = err instanceof Error ? err.message : String(err);
64
+ return null;
65
+ }
66
+ }
67
+ // Eagerly start the load on module init so the first synchronous
68
+ // check() call can hit the cache. The promise is unawaited
69
+ // intentionally — by the time any HealthCheck.check() runs (doctor
70
+ // command, well after MCP server boot), the import has resolved.
71
+ void loadHelper();
72
+ /**
73
+ * Files `start.mjs` needs to launch the MCP server, checked dependency-free
74
+ * (fs only) so this works even when the integrity helper
75
+ * (`scripts/plugin-cache-integrity.mjs`) is itself missing — a missing helper
76
+ * is itself a partial-install symptom, and the operator most needs to know
77
+ * whether the launch entrypoint survived.
78
+ *
79
+ * - `start.mjs` is the plugin `command` target (`.claude-plugin/plugin.json`)
80
+ * and has NO fallback: if absent, `node ${CLAUDE_PLUGIN_ROOT}/start.mjs`
81
+ * fails immediately and the MCP server never starts.
82
+ * - The server is loaded by start.mjs from `server.bundle.mjs`, falling back
83
+ * to `build/server.js`; it is only "missing" when BOTH are absent.
84
+ */
85
+ export function findMissingLaunchFiles(pluginRoot) {
86
+ const missing = [];
87
+ if (!existsSync(join(pluginRoot, "start.mjs"))) {
88
+ missing.push("start.mjs");
89
+ }
90
+ if (!existsSync(join(pluginRoot, "server.bundle.mjs")) &&
91
+ !existsSync(join(pluginRoot, "build", "server.js"))) {
92
+ missing.push("server.bundle.mjs (or build/server.js)");
93
+ }
94
+ return missing;
95
+ }
96
+ /**
97
+ * Run the integrity check synchronously. If the helper module is
98
+ * still loading (not yet cached) returns a FAIL with detail
99
+ * "integrity helper not yet loaded" — caller should retry once the
100
+ * doctor command's IO is complete. In practice the doctor is invoked
101
+ * many MS after module load so this fallback is defensive only.
102
+ */
103
+ export function checkPluginCacheIntegritySync(pluginRoot) {
104
+ if (cached) {
105
+ const result = cached.assertPluginCacheIntegrity({ pluginRoot });
106
+ if (result.ok) {
107
+ return {
108
+ status: "OK",
109
+ detail: `${pluginRoot} (all required runtime siblings present)`,
110
+ };
111
+ }
112
+ return {
113
+ status: "FAIL",
114
+ detail: `missing: ${result.missing.join(", ")}`,
115
+ };
116
+ }
117
+ if (cachedError) {
118
+ // The integrity helper (scripts/plugin-cache-integrity.mjs) ships in
119
+ // package.json files[]; if it failed to load, the install is already
120
+ // partial. Don't stop at "helper unavailable" — directly surface whether
121
+ // the launch entrypoint survived, because a missing start.mjs / server
122
+ // bundle is exactly what stops the MCP server from starting (and is what
123
+ // an interrupted /ctx-upgrade swap leaves behind).
124
+ const launchMissing = findMissingLaunchFiles(pluginRoot);
125
+ if (launchMissing.length > 0) {
126
+ return {
127
+ status: "FAIL",
128
+ detail: `partial install — critical launch files missing: ${launchMissing.join(", ")} ` +
129
+ `(integrity helper also missing: ${cachedError}); the MCP server cannot start. ` +
130
+ `Reinstall: npm install -g @mxalbert/context-mode@latest`,
131
+ };
132
+ }
133
+ return {
134
+ status: "FAIL",
135
+ detail: `integrity helper unavailable: ${cachedError}`,
136
+ };
137
+ }
138
+ return {
139
+ status: "FAIL",
140
+ detail: "integrity helper not yet loaded",
141
+ };
142
+ }
143
+ /** Force-await the helper load. Tests use this to deflake the eager fire-and-forget. */
144
+ export async function ensurePluginCacheIntegrityLoaded() {
145
+ await loadHelper();
146
+ }
@@ -0,0 +1,149 @@
1
+ import type { PlatformId } from "../adapters/types.js";
2
+ /**
3
+ * Project-dir resolution helpers — shared between `start.mjs` (the MCP entry
4
+ * point) and `src/server.ts getProjectDir()` (the consumer).
5
+ *
6
+ * Background: when Claude Code runs `/ctx-upgrade`, it kills + respawns the
7
+ * MCP server. The respawn happens with `cwd` set to the plugin install
8
+ * directory (`~/.claude/plugins/cache/context-mode/context-mode/<version>/`).
9
+ * The legacy `start.mjs` then set `CLAUDE_PROJECT_DIR = originalCwd`, which
10
+ * poisoned every downstream `ctx_stats` / SessionDB / hash computation —
11
+ * sessions silently re-rooted under the plugin install path.
12
+ *
13
+ * Defense-in-depth fix (v1.0.113):
14
+ * - `start.mjs` calls `isPluginInstallPath(originalCwd)` and skips the env
15
+ * auto-set when true (no poisoning at the source).
16
+ * - `getProjectDir()` calls `resolveProjectDir(...)` which rejects plugin-
17
+ * pathed env vars and the plugin cwd, preferring `process.env.PWD`
18
+ * (shell-set, survives `process.chdir`) before falling back.
19
+ */
20
+ /**
21
+ * Detect whether a path lives inside an agent plugin install tree —
22
+ * specifically `<home>/.claude/plugins/cache/<plugin>/<plugin>/<version>/`,
23
+ * `<home>/.codex/plugins/cache/<plugin>/<plugin>/<version>/`, or the
24
+ * marketplace mirror under `<home>/.{claude,codex}/plugins/marketplaces/...`.
25
+ *
26
+ * Cross-OS: matches both POSIX (`/`) and Windows (`\`) path separators.
27
+ * Independent of `home` location — we only care about the agent plugin
28
+ * suffix pattern.
29
+ */
30
+ export declare function isPluginInstallPath(p: string): boolean;
31
+ /**
32
+ * Read the per-session project dir from Claude Code's transcript files.
33
+ *
34
+ * Claude Code writes session transcripts under
35
+ * `~/.claude/projects/<encoded-cwd>/<session-id>.jsonl`. Each line is a JSON
36
+ * event; an early line (typically line 2) carries a `cwd` field with the
37
+ * literal project directory the session is running against. The encoded dir
38
+ * name itself is lossy (`/` and `.` both become `-`), so we read the JSONL.
39
+ *
40
+ * This is the strongest available signal when Claude Code does NOT propagate
41
+ * `CLAUDE_PROJECT_DIR` to the spawned MCP env (the common case when Claude
42
+ * Code is launched from the desktop app rather than `cd <project> && claude`).
43
+ *
44
+ * Returns `undefined` when no transcript exists, the projects dir is empty,
45
+ * or no transcript carries a `cwd` field — caller falls through.
46
+ *
47
+ * Multi-window safety: the most-recently-modified jsonl wins. When the user
48
+ * actively talks to one Claude Code window, that window's transcript is the
49
+ * one being written to RIGHT NOW, so its mtime is freshest. Other windows'
50
+ * transcripts have older mtimes and are correctly ignored.
51
+ */
52
+ export declare function resolveProjectDirFromTranscript(opts: {
53
+ projectsRoot: string;
54
+ /**
55
+ * Optional freshness guard. Claude Code updates the active transcript while
56
+ * the session is being used; stale transcripts from previous days must not
57
+ * become a global project-dir signal for other hosts that merely have
58
+ * ~/.claude on disk.
59
+ */
60
+ maxAgeMs?: number;
61
+ /** Test seam for maxAgeMs. Defaults to Date.now(). */
62
+ nowMs?: number;
63
+ }): string | undefined;
64
+ /**
65
+ * Issue #45 / c4529042182 — recover the project-cwd from a Codex CLI
66
+ * session log when the spawned MCP child inherits a non-project cwd
67
+ * (e.g. $HOME when Codex was launched from anywhere outside the project).
68
+ *
69
+ * Codex writes its session transcripts to either
70
+ * `${CODEX_HOME ?? ~/.codex}/sessions/<uuid>.jsonl` (CLI) or a dated desktop
71
+ * layout such as
72
+ * `${CODEX_HOME ?? ~/.codex}/sessions/YYYY/MM/DD/rollout-*.jsonl`.
73
+ * The cwd appears on `meta.cwd` for the CLI shape and on
74
+ * `payload.cwd` in `type: "session_meta"` records for Codex Desktop. Codex
75
+ * publishes NO workspace env var to its child MCP processes — so unlike
76
+ * Claude/Pi/Cursor, we have no env signal at all. The session log is the
77
+ * strongest available signal.
78
+ *
79
+ * Mirror of `resolveProjectDirFromTranscript` for Claude Code; differences:
80
+ * • Sessions may live flat or in a dated hierarchy (no per-project encoded
81
+ * subdir like Claude's `~/.claude/projects/<encoded>/`).
82
+ * • The cwd is nested on `meta.cwd` or `payload.cwd`, not top-level `cwd`.
83
+ *
84
+ * Returns `null` when:
85
+ * • `codexHome` or its `sessions/` subdir does not exist.
86
+ * • No `.jsonl` files exist or none has a parseable cwd string.
87
+ * • The newest log is older than `transcriptMaxAgeMs` (multi-window guard).
88
+ * • The resolved cwd points at a plugin install path (poisoned).
89
+ */
90
+ export declare function resolveCodexSessionCwd(opts?: {
91
+ /** Defaults to `process.env.CODEX_HOME ?? path.join(os.homedir(), ".codex")`. */
92
+ codexHome?: string;
93
+ /**
94
+ * Optional freshness guard — Codex appends to the active log while the
95
+ * session is running, so a stale log from days ago must not become a
96
+ * global project-dir signal.
97
+ */
98
+ transcriptMaxAgeMs?: number;
99
+ /** Test seam for transcriptMaxAgeMs. Defaults to Date.now(). */
100
+ now?: number;
101
+ }): string | null;
102
+ /**
103
+ * Pure project-dir resolver. Mirror of the env-var chain inside
104
+ * `src/server.ts getProjectDir()`, but takes its inputs explicitly so the
105
+ * resolver can be exercised under test without process-level mutation.
106
+ *
107
+ * Resolution order:
108
+ * 1. Adapter-priority env vars (CLAUDE / GEMINI / VSCODE / OPENCODE / PI /
109
+ * IDEA / CONTEXT_MODE) — first non-empty AND non-plugin-path wins.
110
+ * 2. Claude Code transcript heuristic — read `cwd` from the most-recently-
111
+ * modified `~/.claude/projects/<encoded>/<session>.jsonl`. This is the
112
+ * most reliable signal when Claude Code launched MCP from a non-project
113
+ * cwd (desktop-app launch, `/ctx-upgrade` respawn, etc.).
114
+ * 3. `process.env.PWD` — shell-set, NOT updated by `process.chdir()`, so
115
+ * it survives the `start.mjs` chdir into the plugin dir. Skipped if
116
+ * it too points at a plugin install path.
117
+ * 4. `cwd` — last resort. Returned even if it is a plugin path; the
118
+ * caller is responsible for rendering a graceful "no project context"
119
+ * message rather than panicking. Keeping the function total preserves
120
+ * operation of project-independent tools (sandbox execute, fetch).
121
+ */
122
+ export declare function resolveProjectDir(opts: {
123
+ env: Record<string, string | undefined>;
124
+ cwd: string;
125
+ pwd: string | undefined;
126
+ /** Optional override; production code passes `~/.claude/projects`. */
127
+ transcriptsRoot?: string;
128
+ /** Optional freshness guard for Claude Code transcript project recovery. */
129
+ transcriptMaxAgeMs?: number;
130
+ /** Test seam for transcriptMaxAgeMs. Defaults to Date.now(). */
131
+ nowMs?: number;
132
+ /**
133
+ * Issue #545 — opt-in tightening. When set, the candidate list is built
134
+ * algorithmically from `workspaceEnvVarsFor(strictPlatform)` plus the
135
+ * universal escape hatch. Foreign workspace vars (e.g. CLAUDE_PROJECT_DIR
136
+ * leaked into Pi's MCP child env) cannot win, regardless of cascade order.
137
+ *
138
+ * When `undefined`, the legacy literal candidate order is used (semver lock
139
+ * for `start.mjs` and any non-strict consumer).
140
+ */
141
+ strictPlatform?: PlatformId;
142
+ /**
143
+ * Issue #45 — override `${CODEX_HOME ?? ~/.codex}` for tests. When
144
+ * `strictPlatform === "codex"` and the env cascade yields nothing, the
145
+ * resolver reads `meta.cwd` from the newest session.jsonl under
146
+ * `${codexHome}/sessions/`.
147
+ */
148
+ codexHome?: string;
149
+ }): string;
@@ -0,0 +1,340 @@
1
+ import * as fs from "node:fs";
2
+ import * as os from "node:os";
3
+ import * as path from "node:path";
4
+ import { workspaceEnvVarsFor } from "../adapters/detect.js";
5
+ /**
6
+ * Universal escape hatch. NEVER appears in any platform's foreignWorkspaceEnv()
7
+ * (because it isn't registered in PLATFORM_ENV_VARS), so it survives strict
8
+ * mode and bridge env scrubs. Documented as the cross-strict user override
9
+ * for every adapter (set in `~/.<host>/mcp.json` env when nothing else works).
10
+ */
11
+ const UNIVERSAL_WORKSPACE_ENV = ["CONTEXT_MODE_PROJECT_DIR"];
12
+ /**
13
+ * Frozen legacy candidate list — preserves bit-for-bit behavior of every
14
+ * non-strict caller (`start.mjs` and any caller that doesn't pass
15
+ * `strictPlatform`). Order is locked for semver compatibility.
16
+ *
17
+ * If a new adapter is added, DO NOT add its workspace var here — register it
18
+ * in `PLATFORM_ENV_VARS` and let strict callers pick it up via
19
+ * `workspaceEnvVarsFor(platform)`. Strict mode is the default forward path.
20
+ */
21
+ const LEGACY_NON_STRICT_CANDIDATES = [
22
+ "CLAUDE_PROJECT_DIR",
23
+ "GEMINI_PROJECT_DIR",
24
+ "VSCODE_CWD",
25
+ "OPENCODE_PROJECT_DIR",
26
+ "PI_PROJECT_DIR",
27
+ "IDEA_INITIAL_DIRECTORY",
28
+ "CURSOR_CWD",
29
+ "CONTEXT_MODE_PROJECT_DIR",
30
+ ];
31
+ /**
32
+ * Project-dir resolution helpers — shared between `start.mjs` (the MCP entry
33
+ * point) and `src/server.ts getProjectDir()` (the consumer).
34
+ *
35
+ * Background: when Claude Code runs `/ctx-upgrade`, it kills + respawns the
36
+ * MCP server. The respawn happens with `cwd` set to the plugin install
37
+ * directory (`~/.claude/plugins/cache/context-mode/context-mode/<version>/`).
38
+ * The legacy `start.mjs` then set `CLAUDE_PROJECT_DIR = originalCwd`, which
39
+ * poisoned every downstream `ctx_stats` / SessionDB / hash computation —
40
+ * sessions silently re-rooted under the plugin install path.
41
+ *
42
+ * Defense-in-depth fix (v1.0.113):
43
+ * - `start.mjs` calls `isPluginInstallPath(originalCwd)` and skips the env
44
+ * auto-set when true (no poisoning at the source).
45
+ * - `getProjectDir()` calls `resolveProjectDir(...)` which rejects plugin-
46
+ * pathed env vars and the plugin cwd, preferring `process.env.PWD`
47
+ * (shell-set, survives `process.chdir`) before falling back.
48
+ */
49
+ /**
50
+ * Detect whether a path lives inside an agent plugin install tree —
51
+ * specifically `<home>/.claude/plugins/cache/<plugin>/<plugin>/<version>/`,
52
+ * `<home>/.codex/plugins/cache/<plugin>/<plugin>/<version>/`, or the
53
+ * marketplace mirror under `<home>/.{claude,codex}/plugins/marketplaces/...`.
54
+ *
55
+ * Cross-OS: matches both POSIX (`/`) and Windows (`\`) path separators.
56
+ * Independent of `home` location — we only care about the agent plugin
57
+ * suffix pattern.
58
+ */
59
+ export function isPluginInstallPath(p) {
60
+ if (!p)
61
+ return false;
62
+ return /[/\\]\.(claude|codex)[/\\]plugins[/\\](cache|marketplaces)[/\\]/.test(p);
63
+ }
64
+ /**
65
+ * Read the per-session project dir from Claude Code's transcript files.
66
+ *
67
+ * Claude Code writes session transcripts under
68
+ * `~/.claude/projects/<encoded-cwd>/<session-id>.jsonl`. Each line is a JSON
69
+ * event; an early line (typically line 2) carries a `cwd` field with the
70
+ * literal project directory the session is running against. The encoded dir
71
+ * name itself is lossy (`/` and `.` both become `-`), so we read the JSONL.
72
+ *
73
+ * This is the strongest available signal when Claude Code does NOT propagate
74
+ * `CLAUDE_PROJECT_DIR` to the spawned MCP env (the common case when Claude
75
+ * Code is launched from the desktop app rather than `cd <project> && claude`).
76
+ *
77
+ * Returns `undefined` when no transcript exists, the projects dir is empty,
78
+ * or no transcript carries a `cwd` field — caller falls through.
79
+ *
80
+ * Multi-window safety: the most-recently-modified jsonl wins. When the user
81
+ * actively talks to one Claude Code window, that window's transcript is the
82
+ * one being written to RIGHT NOW, so its mtime is freshest. Other windows'
83
+ * transcripts have older mtimes and are correctly ignored.
84
+ */
85
+ export function resolveProjectDirFromTranscript(opts) {
86
+ if (!fs.existsSync(opts.projectsRoot))
87
+ return undefined;
88
+ let bestPath;
89
+ let bestMtime = 0;
90
+ try {
91
+ for (const dir of fs.readdirSync(opts.projectsRoot)) {
92
+ const dirPath = path.join(opts.projectsRoot, dir);
93
+ let stat;
94
+ try {
95
+ stat = fs.statSync(dirPath);
96
+ }
97
+ catch {
98
+ continue;
99
+ }
100
+ if (!stat.isDirectory())
101
+ continue;
102
+ let files;
103
+ try {
104
+ files = fs.readdirSync(dirPath);
105
+ }
106
+ catch {
107
+ continue;
108
+ }
109
+ for (const f of files) {
110
+ if (!f.endsWith(".jsonl"))
111
+ continue;
112
+ const fp = path.join(dirPath, f);
113
+ try {
114
+ const m = fs.statSync(fp).mtimeMs;
115
+ if (m > bestMtime) {
116
+ bestMtime = m;
117
+ bestPath = fp;
118
+ }
119
+ }
120
+ catch { /* skip */ }
121
+ }
122
+ }
123
+ }
124
+ catch {
125
+ return undefined;
126
+ }
127
+ if (!bestPath)
128
+ return undefined;
129
+ if (typeof opts.maxAgeMs === "number") {
130
+ const nowMs = opts.nowMs ?? Date.now();
131
+ if (nowMs - bestMtime > opts.maxAgeMs)
132
+ return undefined;
133
+ }
134
+ // Read first ~10 lines until we find a cwd field. The jsonl is
135
+ // append-only and can be huge (60+ MB on long sessions) — never load it
136
+ // into memory; stream a small head buffer.
137
+ try {
138
+ const fd = fs.openSync(bestPath, "r");
139
+ try {
140
+ const buf = Buffer.alloc(8192);
141
+ const bytes = fs.readSync(fd, buf, 0, buf.length, 0);
142
+ const text = buf.subarray(0, bytes).toString("utf-8");
143
+ for (const line of text.split("\n").slice(0, 10)) {
144
+ if (!line.trim())
145
+ continue;
146
+ try {
147
+ const obj = JSON.parse(line);
148
+ if (typeof obj.cwd === "string" && obj.cwd.length > 0)
149
+ return obj.cwd;
150
+ }
151
+ catch { /* skip malformed line */ }
152
+ }
153
+ }
154
+ finally {
155
+ fs.closeSync(fd);
156
+ }
157
+ }
158
+ catch { /* file vanished mid-read */ }
159
+ return undefined;
160
+ }
161
+ /**
162
+ * Issue #45 / c4529042182 — recover the project-cwd from a Codex CLI
163
+ * session log when the spawned MCP child inherits a non-project cwd
164
+ * (e.g. $HOME when Codex was launched from anywhere outside the project).
165
+ *
166
+ * Codex writes its session transcripts to either
167
+ * `${CODEX_HOME ?? ~/.codex}/sessions/<uuid>.jsonl` (CLI) or a dated desktop
168
+ * layout such as
169
+ * `${CODEX_HOME ?? ~/.codex}/sessions/YYYY/MM/DD/rollout-*.jsonl`.
170
+ * The cwd appears on `meta.cwd` for the CLI shape and on
171
+ * `payload.cwd` in `type: "session_meta"` records for Codex Desktop. Codex
172
+ * publishes NO workspace env var to its child MCP processes — so unlike
173
+ * Claude/Pi/Cursor, we have no env signal at all. The session log is the
174
+ * strongest available signal.
175
+ *
176
+ * Mirror of `resolveProjectDirFromTranscript` for Claude Code; differences:
177
+ * • Sessions may live flat or in a dated hierarchy (no per-project encoded
178
+ * subdir like Claude's `~/.claude/projects/<encoded>/`).
179
+ * • The cwd is nested on `meta.cwd` or `payload.cwd`, not top-level `cwd`.
180
+ *
181
+ * Returns `null` when:
182
+ * • `codexHome` or its `sessions/` subdir does not exist.
183
+ * • No `.jsonl` files exist or none has a parseable cwd string.
184
+ * • The newest log is older than `transcriptMaxAgeMs` (multi-window guard).
185
+ * • The resolved cwd points at a plugin install path (poisoned).
186
+ */
187
+ export function resolveCodexSessionCwd(opts) {
188
+ const codexHome = opts?.codexHome ?? process.env.CODEX_HOME ?? path.join(os.homedir(), ".codex");
189
+ const sessionsDir = path.join(codexHome, "sessions");
190
+ if (!fs.existsSync(sessionsDir))
191
+ return null;
192
+ const MAX_SCAN_DEPTH = 4; // sessions/YYYY/MM/DD/<file>.jsonl plus one spare.
193
+ const MAX_SCAN_ENTRIES = 10_000;
194
+ let visitedEntries = 0;
195
+ let bestPath;
196
+ let bestMtime = 0;
197
+ const visit = (dir, depth) => {
198
+ if (visitedEntries >= MAX_SCAN_ENTRIES)
199
+ return;
200
+ let entries;
201
+ try {
202
+ entries = fs.readdirSync(dir);
203
+ }
204
+ catch {
205
+ return;
206
+ }
207
+ entries.sort().reverse();
208
+ for (const entry of entries) {
209
+ if (visitedEntries >= MAX_SCAN_ENTRIES)
210
+ return;
211
+ visitedEntries++;
212
+ const fp = path.join(dir, entry);
213
+ let stat;
214
+ try {
215
+ stat = fs.statSync(fp);
216
+ }
217
+ catch {
218
+ continue;
219
+ }
220
+ if (stat.isDirectory()) {
221
+ if (depth < MAX_SCAN_DEPTH)
222
+ visit(fp, depth + 1);
223
+ continue;
224
+ }
225
+ if (!stat.isFile() || !entry.endsWith(".jsonl"))
226
+ continue;
227
+ const m = stat.mtimeMs;
228
+ if (m > bestMtime) {
229
+ bestMtime = m;
230
+ bestPath = fp;
231
+ }
232
+ }
233
+ };
234
+ try {
235
+ visit(sessionsDir, 0);
236
+ }
237
+ catch {
238
+ return null;
239
+ }
240
+ if (!bestPath)
241
+ return null;
242
+ if (typeof opts?.transcriptMaxAgeMs === "number") {
243
+ const nowMs = opts.now ?? Date.now();
244
+ if (nowMs - bestMtime > opts.transcriptMaxAgeMs)
245
+ return null;
246
+ }
247
+ // Read a bounded head chunk. Codex Desktop's first session_meta line can be
248
+ // larger than Claude/Codex CLI metadata because it includes dynamic tool and
249
+ // instruction fields, but the full transcript can still be tens of MB.
250
+ try {
251
+ const fd = fs.openSync(bestPath, "r");
252
+ try {
253
+ const buf = Buffer.alloc(1024 * 1024);
254
+ const bytes = fs.readSync(fd, buf, 0, buf.length, 0);
255
+ const text = buf.subarray(0, bytes).toString("utf-8");
256
+ for (const line of text.split("\n").slice(0, 10)) {
257
+ if (!line.trim())
258
+ continue;
259
+ try {
260
+ const obj = JSON.parse(line);
261
+ const cwd = obj?.meta?.cwd ??
262
+ (obj?.type === "session_meta" ? obj?.payload?.cwd : undefined);
263
+ if (typeof cwd !== "string" || cwd.length === 0)
264
+ continue;
265
+ if (isPluginInstallPath(cwd))
266
+ return null;
267
+ return cwd;
268
+ }
269
+ catch {
270
+ return null; /* malformed session metadata line */
271
+ }
272
+ }
273
+ }
274
+ finally {
275
+ fs.closeSync(fd);
276
+ }
277
+ }
278
+ catch {
279
+ return null; /* file vanished mid-read */
280
+ }
281
+ return null;
282
+ }
283
+ /**
284
+ * Pure project-dir resolver. Mirror of the env-var chain inside
285
+ * `src/server.ts getProjectDir()`, but takes its inputs explicitly so the
286
+ * resolver can be exercised under test without process-level mutation.
287
+ *
288
+ * Resolution order:
289
+ * 1. Adapter-priority env vars (CLAUDE / GEMINI / VSCODE / OPENCODE / PI /
290
+ * IDEA / CONTEXT_MODE) — first non-empty AND non-plugin-path wins.
291
+ * 2. Claude Code transcript heuristic — read `cwd` from the most-recently-
292
+ * modified `~/.claude/projects/<encoded>/<session>.jsonl`. This is the
293
+ * most reliable signal when Claude Code launched MCP from a non-project
294
+ * cwd (desktop-app launch, `/ctx-upgrade` respawn, etc.).
295
+ * 3. `process.env.PWD` — shell-set, NOT updated by `process.chdir()`, so
296
+ * it survives the `start.mjs` chdir into the plugin dir. Skipped if
297
+ * it too points at a plugin install path.
298
+ * 4. `cwd` — last resort. Returned even if it is a plugin path; the
299
+ * caller is responsible for rendering a graceful "no project context"
300
+ * message rather than panicking. Keeping the function total preserves
301
+ * operation of project-independent tools (sandbox execute, fetch).
302
+ */
303
+ export function resolveProjectDir(opts) {
304
+ const { env, cwd, pwd, transcriptsRoot, transcriptMaxAgeMs, nowMs, strictPlatform, codexHome, } = opts;
305
+ // Build candidate list. Strict path: own workspace vars + universal escape
306
+ // hatch — NO foreign workspace vars, in any order, can win. Non-strict
307
+ // path: frozen legacy literal order for backwards compatibility.
308
+ const candidateVars = strictPlatform
309
+ ? [...workspaceEnvVarsFor(strictPlatform), ...UNIVERSAL_WORKSPACE_ENV]
310
+ : LEGACY_NON_STRICT_CANDIDATES;
311
+ for (const name of candidateVars) {
312
+ const v = env[name];
313
+ if (v && !isPluginInstallPath(v))
314
+ return v;
315
+ }
316
+ if (transcriptsRoot) {
317
+ const fromTranscript = resolveProjectDirFromTranscript({
318
+ projectsRoot: transcriptsRoot,
319
+ maxAgeMs: transcriptMaxAgeMs,
320
+ nowMs,
321
+ });
322
+ if (fromTranscript && !isPluginInstallPath(fromTranscript))
323
+ return fromTranscript;
324
+ }
325
+ // Issue #45 — Codex has no workspace env var, so when running under
326
+ // strictPlatform="codex" we fall back to the session-log heuristic
327
+ // between env and PWD. Non-codex platforms skip this branch entirely.
328
+ if (strictPlatform === "codex") {
329
+ const fromCodex = resolveCodexSessionCwd({
330
+ codexHome,
331
+ transcriptMaxAgeMs,
332
+ now: nowMs,
333
+ });
334
+ if (fromCodex)
335
+ return fromCodex;
336
+ }
337
+ if (pwd && !isPluginInstallPath(pwd))
338
+ return pwd;
339
+ return cwd;
340
+ }