@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.
- package/.claude-plugin/marketplace.json +33 -0
- package/.claude-plugin/plugin.json +31 -0
- package/.codex-plugin/hooks.json +65 -0
- package/.codex-plugin/mcp.json +13 -0
- package/.codex-plugin/plugin.json +31 -0
- package/.openclaw-plugin/index.ts +12 -0
- package/.openclaw-plugin/openclaw.plugin.json +38 -0
- package/.openclaw-plugin/package.json +28 -0
- package/LICENSE +94 -0
- package/README.md +1619 -0
- package/bin/statusline.mjs +378 -0
- package/build/adapters/antigravity/index.d.ts +51 -0
- package/build/adapters/antigravity/index.js +169 -0
- package/build/adapters/antigravity-cli/index.d.ts +51 -0
- package/build/adapters/antigravity-cli/index.js +342 -0
- package/build/adapters/base.d.ts +92 -0
- package/build/adapters/base.js +135 -0
- package/build/adapters/claude-code/config.d.ts +8 -0
- package/build/adapters/claude-code/config.js +8 -0
- package/build/adapters/claude-code/hooks.d.ts +106 -0
- package/build/adapters/claude-code/hooks.js +183 -0
- package/build/adapters/claude-code/index.d.ts +80 -0
- package/build/adapters/claude-code/index.js +569 -0
- package/build/adapters/claude-code-base.d.ts +49 -0
- package/build/adapters/claude-code-base.js +113 -0
- package/build/adapters/client-map.d.ts +10 -0
- package/build/adapters/client-map.js +42 -0
- package/build/adapters/codex/config.d.ts +8 -0
- package/build/adapters/codex/config.js +8 -0
- package/build/adapters/codex/hooks.d.ts +55 -0
- package/build/adapters/codex/hooks.js +64 -0
- package/build/adapters/codex/index.d.ts +87 -0
- package/build/adapters/codex/index.js +995 -0
- package/build/adapters/codex/paths.d.ts +1 -0
- package/build/adapters/codex/paths.js +12 -0
- package/build/adapters/codex/usage.d.ts +107 -0
- package/build/adapters/codex/usage.js +227 -0
- package/build/adapters/copilot-base.d.ts +94 -0
- package/build/adapters/copilot-base.js +297 -0
- package/build/adapters/copilot-cli/hooks.d.ts +33 -0
- package/build/adapters/copilot-cli/hooks.js +64 -0
- package/build/adapters/copilot-cli/index.d.ts +48 -0
- package/build/adapters/copilot-cli/index.js +341 -0
- package/build/adapters/cursor/config.d.ts +4 -0
- package/build/adapters/cursor/config.js +4 -0
- package/build/adapters/cursor/hooks.d.ts +55 -0
- package/build/adapters/cursor/hooks.js +82 -0
- package/build/adapters/cursor/index.d.ts +64 -0
- package/build/adapters/cursor/index.js +517 -0
- package/build/adapters/detect.d.ts +136 -0
- package/build/adapters/detect.js +623 -0
- package/build/adapters/gemini-cli/config.d.ts +8 -0
- package/build/adapters/gemini-cli/config.js +8 -0
- package/build/adapters/gemini-cli/hooks.d.ts +83 -0
- package/build/adapters/gemini-cli/hooks.js +115 -0
- package/build/adapters/gemini-cli/index.d.ts +80 -0
- package/build/adapters/gemini-cli/index.js +483 -0
- package/build/adapters/jetbrains-copilot/config.d.ts +8 -0
- package/build/adapters/jetbrains-copilot/config.js +8 -0
- package/build/adapters/jetbrains-copilot/hooks.d.ts +59 -0
- package/build/adapters/jetbrains-copilot/hooks.js +87 -0
- package/build/adapters/jetbrains-copilot/index.d.ts +31 -0
- package/build/adapters/jetbrains-copilot/index.js +131 -0
- package/build/adapters/kimi/config.d.ts +8 -0
- package/build/adapters/kimi/config.js +8 -0
- package/build/adapters/kimi/hooks.d.ts +28 -0
- package/build/adapters/kimi/hooks.js +34 -0
- package/build/adapters/kimi/index.d.ts +66 -0
- package/build/adapters/kimi/index.js +537 -0
- package/build/adapters/kimi/paths.d.ts +21 -0
- package/build/adapters/kimi/paths.js +52 -0
- package/build/adapters/kimi/usage.d.ts +82 -0
- package/build/adapters/kimi/usage.js +217 -0
- package/build/adapters/kiro/hooks.d.ts +61 -0
- package/build/adapters/kiro/hooks.js +94 -0
- package/build/adapters/kiro/index.d.ts +61 -0
- package/build/adapters/kiro/index.js +301 -0
- package/build/adapters/omp/index.d.ts +65 -0
- package/build/adapters/omp/index.js +182 -0
- package/build/adapters/omp/plugin.d.ts +81 -0
- package/build/adapters/omp/plugin.js +331 -0
- package/build/adapters/omp/usage.d.ts +49 -0
- package/build/adapters/omp/usage.js +110 -0
- package/build/adapters/openclaw/config.d.ts +8 -0
- package/build/adapters/openclaw/config.js +8 -0
- package/build/adapters/openclaw/hooks.d.ts +50 -0
- package/build/adapters/openclaw/hooks.js +61 -0
- package/build/adapters/openclaw/index.d.ts +74 -0
- package/build/adapters/openclaw/index.js +439 -0
- package/build/adapters/openclaw/mcp-tools.d.ts +54 -0
- package/build/adapters/openclaw/mcp-tools.js +207 -0
- package/build/adapters/openclaw/plugin.d.ts +141 -0
- package/build/adapters/openclaw/plugin.js +818 -0
- package/build/adapters/openclaw/session-db.d.ts +55 -0
- package/build/adapters/openclaw/session-db.js +88 -0
- package/build/adapters/openclaw/usage.d.ts +34 -0
- package/build/adapters/openclaw/usage.js +52 -0
- package/build/adapters/openclaw/workspace-router.d.ts +29 -0
- package/build/adapters/openclaw/workspace-router.js +64 -0
- package/build/adapters/opencode/config.d.ts +8 -0
- package/build/adapters/opencode/config.js +8 -0
- package/build/adapters/opencode/hooks.d.ts +38 -0
- package/build/adapters/opencode/hooks.js +50 -0
- package/build/adapters/opencode/index.d.ts +144 -0
- package/build/adapters/opencode/index.js +638 -0
- package/build/adapters/opencode/plugin.d.ts +249 -0
- package/build/adapters/opencode/plugin.js +1536 -0
- package/build/adapters/opencode/v2.d.ts +117 -0
- package/build/adapters/opencode/v2.js +224 -0
- package/build/adapters/opencode/zod3tov4.d.ts +1 -0
- package/build/adapters/opencode/zod3tov4.js +132 -0
- package/build/adapters/pi/extension.d.ts +81 -0
- package/build/adapters/pi/extension.js +861 -0
- package/build/adapters/pi/index.d.ts +57 -0
- package/build/adapters/pi/index.js +173 -0
- package/build/adapters/pi/mcp-bridge.d.ts +268 -0
- package/build/adapters/pi/mcp-bridge.js +894 -0
- package/build/adapters/qwen-code/hooks.d.ts +26 -0
- package/build/adapters/qwen-code/hooks.js +29 -0
- package/build/adapters/qwen-code/index.d.ts +40 -0
- package/build/adapters/qwen-code/index.js +361 -0
- package/build/adapters/qwen-code/usage.d.ts +90 -0
- package/build/adapters/qwen-code/usage.js +222 -0
- package/build/adapters/types.d.ts +360 -0
- package/build/adapters/types.js +118 -0
- package/build/adapters/vscode-copilot/config.d.ts +8 -0
- package/build/adapters/vscode-copilot/config.js +8 -0
- package/build/adapters/vscode-copilot/hooks.d.ts +71 -0
- package/build/adapters/vscode-copilot/hooks.js +98 -0
- package/build/adapters/vscode-copilot/index.d.ts +32 -0
- package/build/adapters/vscode-copilot/index.js +222 -0
- package/build/adapters/zed/index.d.ts +40 -0
- package/build/adapters/zed/index.js +163 -0
- package/build/cli.d.ts +34 -0
- package/build/cli.js +1828 -0
- package/build/db-base.d.ts +250 -0
- package/build/db-base.js +756 -0
- package/build/executor.d.ts +72 -0
- package/build/executor.js +678 -0
- package/build/exit-classify.d.ts +19 -0
- package/build/exit-classify.js +12 -0
- package/build/fetch/blocks.d.ts +145 -0
- package/build/fetch/blocks.js +244 -0
- package/build/fetch/extract.d.ts +68 -0
- package/build/fetch/extract.js +123 -0
- package/build/fetch/page-store.d.ts +66 -0
- package/build/fetch/page-store.js +174 -0
- package/build/fetch-cache.d.ts +13 -0
- package/build/fetch-cache.js +15 -0
- package/build/lifecycle.d.ts +124 -0
- package/build/lifecycle.js +278 -0
- package/build/package-identity.d.ts +26 -0
- package/build/package-identity.js +28 -0
- package/build/runPool.d.ts +36 -0
- package/build/runPool.js +51 -0
- package/build/runtime.d.ts +71 -0
- package/build/runtime.js +659 -0
- package/build/search/auto-memory.d.ts +47 -0
- package/build/search/auto-memory.js +170 -0
- package/build/search/ctx-search-schema.d.ts +90 -0
- package/build/search/ctx-search-schema.js +135 -0
- package/build/search/flood-guard.d.ts +57 -0
- package/build/search/flood-guard.js +80 -0
- package/build/search/unified.d.ts +56 -0
- package/build/search/unified.js +104 -0
- package/build/security.d.ts +206 -0
- package/build/security.js +780 -0
- package/build/server.d.ts +240 -0
- package/build/server.js +5034 -0
- package/build/session/analytics.d.ts +773 -0
- package/build/session/analytics.js +2420 -0
- package/build/session/db.d.ts +468 -0
- package/build/session/db.js +1330 -0
- package/build/session/error-classifier.d.ts +87 -0
- package/build/session/error-classifier.js +303 -0
- package/build/session/event-emit.d.ts +48 -0
- package/build/session/event-emit.js +101 -0
- package/build/session/extract.d.ts +333 -0
- package/build/session/extract.js +2688 -0
- package/build/session/model-prices.json +429 -0
- package/build/session/persist-tool-calls.d.ts +54 -0
- package/build/session/persist-tool-calls.js +105 -0
- package/build/session/pricing.d.ts +64 -0
- package/build/session/pricing.js +151 -0
- package/build/session/project-attribution.d.ts +73 -0
- package/build/session/project-attribution.js +245 -0
- package/build/session/purge.d.ts +138 -0
- package/build/session/purge.js +240 -0
- package/build/session/retrieval-marker.d.ts +39 -0
- package/build/session/retrieval-marker.js +65 -0
- package/build/session/snapshot.d.ts +46 -0
- package/build/session/snapshot.js +532 -0
- package/build/store-directory.d.ts +56 -0
- package/build/store-directory.js +254 -0
- package/build/store.d.ts +147 -0
- package/build/store.js +1714 -0
- package/build/truncate.d.ts +57 -0
- package/build/truncate.js +142 -0
- package/build/types.d.ts +117 -0
- package/build/types.js +20 -0
- package/build/util/claude-config.d.ts +32 -0
- package/build/util/claude-config.js +84 -0
- package/build/util/hook-config.d.ts +27 -0
- package/build/util/hook-config.js +76 -0
- package/build/util/jsonc.d.ts +14 -0
- package/build/util/jsonc.js +104 -0
- package/build/util/plugin-cache-integrity.d.ts +51 -0
- package/build/util/plugin-cache-integrity.js +146 -0
- package/build/util/project-dir.d.ts +149 -0
- package/build/util/project-dir.js +340 -0
- package/build/util/sibling-mcp.d.ts +79 -0
- package/build/util/sibling-mcp.js +181 -0
- package/cli.bundle.mjs +1495 -0
- package/configs/antigravity/GEMINI.md +68 -0
- package/configs/antigravity/mcp_config.json +7 -0
- package/configs/antigravity-cli/hooks/hooks.json +37 -0
- package/configs/antigravity-cli/hooks.json +37 -0
- package/configs/antigravity-cli/mcp_config.json +10 -0
- package/configs/antigravity-cli/plugin.json +14 -0
- package/configs/antigravity-cli/rules/context-mode.md +77 -0
- package/configs/antigravity-cli/skills/context-mode/SKILL.md +77 -0
- package/configs/claude-code/CLAUDE.md +91 -0
- package/configs/codex/AGENTS.md +99 -0
- package/configs/codex/config.toml +8 -0
- package/configs/codex/hooks.json +47 -0
- package/configs/copilot-cli/.github/plugin/plugin.json +23 -0
- package/configs/copilot-cli/.mcp.json +12 -0
- package/configs/copilot-cli/README.md +47 -0
- package/configs/copilot-cli/hooks.json +41 -0
- package/configs/copilot-cli/skills/context-mode/SKILL.md +38 -0
- package/configs/cursor/context-mode.mdc +76 -0
- package/configs/cursor/hooks.json +21 -0
- package/configs/cursor/mcp.json +7 -0
- package/configs/gemini-cli/GEMINI.md +88 -0
- package/configs/gemini-cli/mcp.json +7 -0
- package/configs/gemini-cli/settings.json +60 -0
- package/configs/jetbrains-copilot/copilot-instructions.md +80 -0
- package/configs/jetbrains-copilot/hooks.json +16 -0
- package/configs/jetbrains-copilot/mcp.json +7 -0
- package/configs/kilo/AGENTS.md +84 -0
- package/configs/kilo/kilo.json +6 -0
- package/configs/kimi/hooks.json +54 -0
- package/configs/kiro/KIRO.md +84 -0
- package/configs/kiro/agent.json +18 -0
- package/configs/kiro/mcp.json +7 -0
- package/configs/omp/SYSTEM.md +85 -0
- package/configs/omp/mcp.json +7 -0
- package/configs/openclaw/AGENTS.md +87 -0
- package/configs/openclaw/openclaw.json +13 -0
- package/configs/opencode/AGENTS.md +84 -0
- package/configs/opencode/opencode.json +6 -0
- package/configs/pi/AGENTS.md +3 -0
- package/configs/qwen-code/QWEN.md +91 -0
- package/configs/vscode-copilot/copilot-instructions.md +80 -0
- package/configs/vscode-copilot/hooks.json +16 -0
- package/configs/vscode-copilot/mcp.json +7 -0
- package/configs/zed/AGENTS.md +68 -0
- package/hooks/antigravity-cli/payload.mjs +98 -0
- package/hooks/antigravity-cli/posttooluse.mjs +138 -0
- package/hooks/antigravity-cli/pretooluse.mjs +78 -0
- package/hooks/antigravity-cli/stop.mjs +58 -0
- package/hooks/auto-injection.mjs +102 -0
- package/hooks/cache-heal-utils.mjs +379 -0
- package/hooks/codex/platform.mjs +1 -0
- package/hooks/codex/posttooluse.mjs +66 -0
- package/hooks/codex/precompact.mjs +70 -0
- package/hooks/codex/pretooluse.mjs +42 -0
- package/hooks/codex/sessionstart.mjs +121 -0
- package/hooks/codex/stop.mjs +138 -0
- package/hooks/codex/userpromptsubmit.mjs +75 -0
- package/hooks/copilot-cli/posttooluse.mjs +79 -0
- package/hooks/copilot-cli/precompact.mjs +66 -0
- package/hooks/copilot-cli/pretooluse.mjs +41 -0
- package/hooks/copilot-cli/sessionstart.mjs +121 -0
- package/hooks/copilot-cli/stop.mjs +59 -0
- package/hooks/copilot-cli/userpromptsubmit.mjs +77 -0
- package/hooks/core/codex-caps.mjs +112 -0
- package/hooks/core/formatters.mjs +356 -0
- package/hooks/core/mcp-ready.mjs +109 -0
- package/hooks/core/platform-detect.mjs +49 -0
- package/hooks/core/routing.mjs +1050 -0
- package/hooks/core/stdin.mjs +90 -0
- package/hooks/core/tool-naming.mjs +57 -0
- package/hooks/cursor/afteragentresponse.mjs +74 -0
- package/hooks/cursor/hooks.json +31 -0
- package/hooks/cursor/posttooluse.mjs +72 -0
- package/hooks/cursor/pretooluse.mjs +26 -0
- package/hooks/cursor/sessionstart.mjs +97 -0
- package/hooks/cursor/stop.mjs +48 -0
- package/hooks/ensure-deps.mjs +254 -0
- package/hooks/formatters/claude-code.mjs +113 -0
- package/hooks/formatters/cursor.mjs +37 -0
- package/hooks/formatters/gemini-cli.mjs +55 -0
- package/hooks/formatters/vscode-copilot.mjs +55 -0
- package/hooks/gemini-cli/aftermodel.mjs +70 -0
- package/hooks/gemini-cli/aftertool.mjs +61 -0
- package/hooks/gemini-cli/beforeagent.mjs +99 -0
- package/hooks/gemini-cli/beforetool.mjs +27 -0
- package/hooks/gemini-cli/precompress.mjs +55 -0
- package/hooks/gemini-cli/sessionstart.mjs +137 -0
- package/hooks/heal-partial-install.mjs +712 -0
- package/hooks/hooks.json +143 -0
- package/hooks/jetbrains-copilot/posttooluse.mjs +61 -0
- package/hooks/jetbrains-copilot/precompact.mjs +55 -0
- package/hooks/jetbrains-copilot/pretooluse.mjs +27 -0
- package/hooks/jetbrains-copilot/sessionstart.mjs +124 -0
- package/hooks/kimi/platform.mjs +1 -0
- package/hooks/kimi/posttooluse.mjs +72 -0
- package/hooks/kimi/precompact.mjs +80 -0
- package/hooks/kimi/pretooluse.mjs +42 -0
- package/hooks/kimi/sessionend.mjs +61 -0
- package/hooks/kimi/sessionstart.mjs +113 -0
- package/hooks/kimi/stop.mjs +132 -0
- package/hooks/kimi/userpromptsubmit.mjs +90 -0
- package/hooks/kiro/agentspawn.mjs +97 -0
- package/hooks/kiro/posttooluse.mjs +51 -0
- package/hooks/kiro/pretooluse.mjs +64 -0
- package/hooks/kiro/userpromptsubmit.mjs +88 -0
- package/hooks/normalize-hooks.mjs +323 -0
- package/hooks/platform-bridge.mjs +340 -0
- package/hooks/posttooluse.mjs +225 -0
- package/hooks/precompact.mjs +100 -0
- package/hooks/pretooluse.mjs +227 -0
- package/hooks/qwen-code/platform.mjs +1 -0
- package/hooks/qwen-code/stop.mjs +168 -0
- package/hooks/routing-block.mjs +105 -0
- package/hooks/run-hook.mjs +95 -0
- package/hooks/security.bundle.mjs +2 -0
- package/hooks/session-attribution.bundle.mjs +1 -0
- package/hooks/session-db.bundle.mjs +145 -0
- package/hooks/session-directive.mjs +520 -0
- package/hooks/session-extract.bundle.mjs +3 -0
- package/hooks/session-helpers.mjs +428 -0
- package/hooks/session-loaders.mjs +448 -0
- package/hooks/session-snapshot.bundle.mjs +32 -0
- package/hooks/sessionstart.mjs +464 -0
- package/hooks/stop.mjs +82 -0
- package/hooks/suppress-stderr.mjs +25 -0
- package/hooks/userpromptsubmit.mjs +108 -0
- package/hooks/vscode-copilot/posttooluse.mjs +61 -0
- package/hooks/vscode-copilot/precompact.mjs +55 -0
- package/hooks/vscode-copilot/pretooluse.mjs +27 -0
- package/hooks/vscode-copilot/sessionstart.mjs +129 -0
- package/openclaw.plugin.json +38 -0
- package/package.json +132 -0
- package/scripts/heal-better-sqlite3.mjs +430 -0
- package/scripts/heal-installed-plugins.mjs +635 -0
- package/scripts/plugin-cache-integrity.mjs +248 -0
- package/scripts/postinstall.mjs +397 -0
- package/server.bundle.mjs +1421 -0
- package/server.js +5 -0
- package/skills/.ignore +7 -0
- package/skills/context-mode/SKILL.md +300 -0
- package/skills/context-mode/references/anti-patterns.md +283 -0
- package/skills/context-mode/references/patterns-javascript.md +298 -0
- package/skills/context-mode/references/patterns-python.md +304 -0
- package/skills/context-mode/references/patterns-shell.md +277 -0
- package/skills/ctx-doctor/SKILL.md +22 -0
- package/skills/ctx-index/SKILL.md +46 -0
- package/skills/ctx-insight/SKILL.md +24 -0
- package/skills/ctx-purge/SKILL.md +49 -0
- package/skills/ctx-search/SKILL.md +35 -0
- package/skills/ctx-stats/SKILL.md +26 -0
- package/skills/ctx-upgrade/SKILL.md +31 -0
- package/start.mjs +616 -0
|
@@ -0,0 +1,428 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Shared session helpers for context-mode hooks.
|
|
3
|
+
* Used by posttooluse.mjs, precompact.mjs, sessionstart.mjs,
|
|
4
|
+
* and platform-specific hooks (Gemini CLI, VS Code Copilot).
|
|
5
|
+
*
|
|
6
|
+
* All functions accept an optional `opts` parameter for platform-specific
|
|
7
|
+
* configuration. Defaults to Claude Code settings for backward compatibility.
|
|
8
|
+
*
|
|
9
|
+
* ─── PATH / HASH HELPERS ARE BOUND, NOT REIMPLEMENTED ──────────────────
|
|
10
|
+
* Hash + worktree-suffix + legacy migration logic lives in TypeScript at
|
|
11
|
+
* `src/session/db.ts` and is bundled to `hooks/session-db.bundle.mjs` by
|
|
12
|
+
* the existing esbuild step in `npm run bundle`. This file imports those
|
|
13
|
+
* exports via the bundle so the JS hooks and the TS server cannot drift
|
|
14
|
+
* again — the same drift that produced rounds 5 and 6 of case-fold fixes.
|
|
15
|
+
*
|
|
16
|
+
* Bundle-first / build-fallback resolution mirrors the pattern in
|
|
17
|
+
* `session-loaders.mjs` for marketplace installs that ship `build/`
|
|
18
|
+
* artifacts instead of pre-built bundles.
|
|
19
|
+
*/
|
|
20
|
+
|
|
21
|
+
import { join, dirname } from "node:path";
|
|
22
|
+
import { existsSync, mkdirSync, readFileSync, writeFileSync } from "node:fs";
|
|
23
|
+
import { homedir, tmpdir } from "node:os";
|
|
24
|
+
import { fileURLToPath, pathToFileURL } from "node:url";
|
|
25
|
+
|
|
26
|
+
// ─────────────────────────────────────────────────────────
|
|
27
|
+
// Bundle binding — single source of truth for path/hash logic.
|
|
28
|
+
// ─────────────────────────────────────────────────────────
|
|
29
|
+
|
|
30
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
31
|
+
const __dirname = dirname(__filename);
|
|
32
|
+
|
|
33
|
+
async function loadSessionDbModule() {
|
|
34
|
+
// Bundle is co-located with this file in published installs.
|
|
35
|
+
const bundlePath = join(__dirname, "session-db.bundle.mjs");
|
|
36
|
+
if (existsSync(bundlePath)) {
|
|
37
|
+
return await import(pathToFileURL(bundlePath).href);
|
|
38
|
+
}
|
|
39
|
+
// Marketplace fallback: build/session/db.js when bundles are absent.
|
|
40
|
+
const buildPath = join(__dirname, "..", "build", "session", "db.js");
|
|
41
|
+
return await import(pathToFileURL(buildPath).href);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
const _sessionDb = await loadSessionDbModule();
|
|
45
|
+
const {
|
|
46
|
+
ensureWritableStorageDir,
|
|
47
|
+
hashProjectDirCanonical,
|
|
48
|
+
hashProjectDirLegacy,
|
|
49
|
+
normalizeWorktreePath,
|
|
50
|
+
resolveDefaultSessionDir,
|
|
51
|
+
resolveSessionStorageDir,
|
|
52
|
+
resolveSessionPath: _resolveSessionPath,
|
|
53
|
+
getWorktreeSuffix: _getWorktreeSuffixBundle,
|
|
54
|
+
} = _sessionDb;
|
|
55
|
+
|
|
56
|
+
// ─────────────────────────────────────────────────────────
|
|
57
|
+
// Cross-process worktree-suffix cache — hook-fork-only optimisation.
|
|
58
|
+
// ─────────────────────────────────────────────────────────
|
|
59
|
+
//
|
|
60
|
+
// The TS bundle's getWorktreeSuffix has an in-process cache, but every
|
|
61
|
+
// Pre/PostToolUse hook is a fresh `node` fork — that cache is dead on
|
|
62
|
+
// arrival. The marker file in tmpdir keyed by sha256(projectDir) lets
|
|
63
|
+
// subsequent forks short-circuit the 12-50ms `git worktree list` cost.
|
|
64
|
+
// The marker filename uses the canonical hash (case-folded on Mac/Win)
|
|
65
|
+
// so two terminals with different casing of the same physical worktree
|
|
66
|
+
// share one marker (and one cached suffix) — same correctness guarantee
|
|
67
|
+
// as the canonical DB filename.
|
|
68
|
+
|
|
69
|
+
let _wtCacheInProcess;
|
|
70
|
+
|
|
71
|
+
function workTreeMarkerPath(projectDir) {
|
|
72
|
+
return join(
|
|
73
|
+
tmpdir(),
|
|
74
|
+
`cm-wt-${hashProjectDirCanonical(normalizeWorktreePath(projectDir))}.txt`,
|
|
75
|
+
);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
function getWorktreeSuffix(projectDir = process.cwd()) {
|
|
79
|
+
const envSuffix = process.env.CONTEXT_MODE_SESSION_SUFFIX;
|
|
80
|
+
const normalizedProjectDir = normalizeWorktreePath(projectDir);
|
|
81
|
+
|
|
82
|
+
if (
|
|
83
|
+
_wtCacheInProcess &&
|
|
84
|
+
_wtCacheInProcess.projectDir === normalizedProjectDir &&
|
|
85
|
+
_wtCacheInProcess.envSuffix === envSuffix
|
|
86
|
+
) {
|
|
87
|
+
return _wtCacheInProcess.suffix;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
let suffix;
|
|
91
|
+
if (envSuffix !== undefined) {
|
|
92
|
+
suffix = envSuffix ? `__${envSuffix}` : "";
|
|
93
|
+
} else {
|
|
94
|
+
// Try cross-process marker first.
|
|
95
|
+
const markerPath = workTreeMarkerPath(projectDir);
|
|
96
|
+
try {
|
|
97
|
+
suffix = readFileSync(markerPath, "utf-8");
|
|
98
|
+
_wtCacheInProcess = { projectDir: normalizedProjectDir, envSuffix, suffix };
|
|
99
|
+
return suffix;
|
|
100
|
+
} catch {
|
|
101
|
+
// marker missing → delegate to bundle for the canonical computation.
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
// Single source of truth: the bundle's getWorktreeSuffix runs the
|
|
105
|
+
// git subprocess, the case-fold comparison, and the suffix hashing.
|
|
106
|
+
// We just persist the result so other forks can skip the git call.
|
|
107
|
+
try {
|
|
108
|
+
suffix = _getWorktreeSuffixBundle(projectDir);
|
|
109
|
+
} catch {
|
|
110
|
+
// git not available or not a git repo — no suffix
|
|
111
|
+
suffix = "";
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
// Best-effort write so subsequent hook forks short-circuit.
|
|
115
|
+
try {
|
|
116
|
+
writeFileSync(markerPath, suffix, "utf-8");
|
|
117
|
+
} catch {
|
|
118
|
+
// tmpdir not writable — degrade gracefully
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
_wtCacheInProcess = { projectDir: normalizedProjectDir, envSuffix, suffix };
|
|
123
|
+
return suffix;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
// ─────────────────────────────────────────────────────────
|
|
127
|
+
// Platform options (hook-only — the server doesn't fork hooks).
|
|
128
|
+
// ─────────────────────────────────────────────────────────
|
|
129
|
+
|
|
130
|
+
/** Claude Code platform options (default). */
|
|
131
|
+
const CLAUDE_OPTS = {
|
|
132
|
+
configDir: ".claude",
|
|
133
|
+
configDirEnv: "CLAUDE_CONFIG_DIR",
|
|
134
|
+
projectDirEnv: "CLAUDE_PROJECT_DIR",
|
|
135
|
+
sessionIdEnv: "CLAUDE_SESSION_ID",
|
|
136
|
+
};
|
|
137
|
+
|
|
138
|
+
/** Gemini CLI platform options. */
|
|
139
|
+
export const GEMINI_OPTS = {
|
|
140
|
+
configDir: ".gemini",
|
|
141
|
+
configDirEnv: "GEMINI_CLI_HOME",
|
|
142
|
+
projectDirEnv: "GEMINI_PROJECT_DIR",
|
|
143
|
+
sessionIdEnv: undefined,
|
|
144
|
+
};
|
|
145
|
+
|
|
146
|
+
/**
|
|
147
|
+
* Antigravity CLI (`agy`) platform options. Shares the Gemini-family session
|
|
148
|
+
* root (~/.gemini/context-mode/sessions). agy supplies the conversation id and
|
|
149
|
+
* workspace path inside the hook payload (mapped to session_id/cwd before these
|
|
150
|
+
* opts are consulted), so no env-var fallbacks are needed.
|
|
151
|
+
*/
|
|
152
|
+
export const ANTIGRAVITY_CLI_OPTS = {
|
|
153
|
+
configDir: ".gemini",
|
|
154
|
+
configDirEnv: undefined,
|
|
155
|
+
projectDirEnv: undefined,
|
|
156
|
+
sessionIdEnv: undefined,
|
|
157
|
+
};
|
|
158
|
+
|
|
159
|
+
/** VS Code Copilot platform options. */
|
|
160
|
+
export const VSCODE_OPTS = {
|
|
161
|
+
configDir: ".vscode",
|
|
162
|
+
configDirEnv: undefined,
|
|
163
|
+
projectDirEnv: "VSCODE_CWD",
|
|
164
|
+
sessionIdEnv: undefined,
|
|
165
|
+
};
|
|
166
|
+
|
|
167
|
+
/** GitHub Copilot CLI platform options. */
|
|
168
|
+
export const COPILOT_OPTS = {
|
|
169
|
+
configDir: ".copilot",
|
|
170
|
+
configDirEnv: "COPILOT_HOME",
|
|
171
|
+
projectDirEnv: undefined,
|
|
172
|
+
sessionIdEnv: undefined,
|
|
173
|
+
};
|
|
174
|
+
|
|
175
|
+
/** Cursor platform options. */
|
|
176
|
+
export const CURSOR_OPTS = {
|
|
177
|
+
configDir: ".cursor",
|
|
178
|
+
configDirEnv: undefined,
|
|
179
|
+
projectDirEnv: "CURSOR_CWD",
|
|
180
|
+
sessionIdEnv: "CURSOR_SESSION_ID",
|
|
181
|
+
};
|
|
182
|
+
|
|
183
|
+
/** Codex CLI platform options. */
|
|
184
|
+
export const CODEX_OPTS = {
|
|
185
|
+
configDir: ".codex",
|
|
186
|
+
configDirEnv: "CODEX_HOME",
|
|
187
|
+
projectDirEnv: undefined, // Codex passes cwd in hook stdin, no env var
|
|
188
|
+
sessionIdEnv: undefined, // Uses session_id from hook stdin or ppid fallback
|
|
189
|
+
};
|
|
190
|
+
|
|
191
|
+
/** Kiro CLI platform options. */
|
|
192
|
+
export const KIRO_OPTS = {
|
|
193
|
+
configDir: ".kiro",
|
|
194
|
+
configDirEnv: undefined,
|
|
195
|
+
projectDirEnv: undefined, // Kiro CLI provides cwd in hook stdin, no env var
|
|
196
|
+
sessionIdEnv: undefined, // No session ID env var — uses ppid fallback
|
|
197
|
+
};
|
|
198
|
+
|
|
199
|
+
/** Kimi Code CLI platform options.
|
|
200
|
+
*
|
|
201
|
+
* `KIMI_CODE_HOME` is documented at
|
|
202
|
+
* refs/platforms/kimi-code/docs/zh/configuration/env-vars.md:11-21
|
|
203
|
+
* refs/platforms/kimi-code/docs/en/configuration/env-vars.md:9-21
|
|
204
|
+
* and is read by MoonshotAI's own first-party plugins
|
|
205
|
+
* refs/platforms/kimi-code/plugins/official/kimi-datasource/bin/
|
|
206
|
+
* kimi-datasource.mjs:207-210
|
|
207
|
+
* so context-mode must honour it too — otherwise relocated Kimi installs
|
|
208
|
+
* keep the user's data root at `$KIMI_CODE_HOME` while context-mode keeps
|
|
209
|
+
* its session DB stranded at `~/.kimi-code/context-mode/sessions/`.
|
|
210
|
+
*/
|
|
211
|
+
export const KIMI_OPTS = {
|
|
212
|
+
configDir: ".kimi-code",
|
|
213
|
+
configDirEnv: "KIMI_CODE_HOME",
|
|
214
|
+
projectDirEnv: undefined, // Kimi Code passes cwd in hook stdin, no env var
|
|
215
|
+
sessionIdEnv: undefined, // Uses session_id from hook stdin or ppid fallback
|
|
216
|
+
};
|
|
217
|
+
|
|
218
|
+
/** JetBrains Copilot platform options. */
|
|
219
|
+
export const JETBRAINS_OPTS = {
|
|
220
|
+
configDir: ".config/JetBrains",
|
|
221
|
+
configDirEnv: undefined,
|
|
222
|
+
projectDirEnv: "IDEA_INITIAL_DIRECTORY",
|
|
223
|
+
sessionIdEnv: undefined,
|
|
224
|
+
};
|
|
225
|
+
|
|
226
|
+
/**
|
|
227
|
+
* Resolve the platform config directory, respecting env var overrides.
|
|
228
|
+
* Platforms like Claude Code (CLAUDE_CONFIG_DIR), Gemini CLI (GEMINI_CLI_HOME),
|
|
229
|
+
* and Codex CLI (CODEX_HOME) allow users to customize the config location.
|
|
230
|
+
* Falls back to ~/<configDir> when no env var is set.
|
|
231
|
+
*/
|
|
232
|
+
export function resolveConfigDir(opts = CLAUDE_OPTS) {
|
|
233
|
+
if (opts.configDirEnv) {
|
|
234
|
+
const envVal = process.env[opts.configDirEnv];
|
|
235
|
+
if (envVal) {
|
|
236
|
+
if (envVal.startsWith("~")) return join(homedir(), envVal.replace(/^~[/\\]?/, ""));
|
|
237
|
+
return envVal;
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
return join(homedir(), opts.configDir);
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
/**
|
|
244
|
+
* Safely parse raw stdin string as JSON.
|
|
245
|
+
* Returns empty object for empty/whitespace/BOM-only input instead of throwing.
|
|
246
|
+
* Strips BOM prefix before parsing. Throws on genuinely malformed JSON.
|
|
247
|
+
*/
|
|
248
|
+
export function parseStdin(raw) {
|
|
249
|
+
const cleaned = raw.replace(/^\uFEFF/, "").trim();
|
|
250
|
+
return cleaned ? JSON.parse(cleaned) : {};
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
/**
|
|
254
|
+
* Read all of stdin as a string (event-based, cross-platform safe).
|
|
255
|
+
*
|
|
256
|
+
* Idle-timeout semantics (override via env `CONTEXT_MODE_HOOK_STDIN_IDLE_MS`,
|
|
257
|
+
* default 1500 ms):
|
|
258
|
+
* - EOF before any data \u2192 resolve("") \u2014 the original well-behaved path.
|
|
259
|
+
* - EOF after data \u2192 resolve(buffer) with BOM strip (#139 \u2014 Cursor on
|
|
260
|
+
* Windows can emit a leading U+FEFF that crashes
|
|
261
|
+
* downstream JSON.parse).
|
|
262
|
+
* - Idle with 0 bytes \u2192 resolve("") \u2014 covers hosts that hold the pipe open
|
|
263
|
+
* without ever closing it (issue #639 \u2014 Bun re-exec
|
|
264
|
+
* EOF path) so the hook still terminates.
|
|
265
|
+
* - Idle with > 0 bytes \u2192 reject(Error) \u2014 partial data after a stall MUST NOT
|
|
266
|
+
* be silently truncated, otherwise downstream
|
|
267
|
+
* JSON.parse corrupts on large `tool_response`
|
|
268
|
+
* payloads (issue #242 \u2014 Gemini AfterTool >1MB).
|
|
269
|
+
* Visible non-zero exit is correct here; the host
|
|
270
|
+
* surfaces the failure in its hook diagnostics.
|
|
271
|
+
*/
|
|
272
|
+
export function readStdin() {
|
|
273
|
+
return new Promise((resolve, reject) => {
|
|
274
|
+
let data = "";
|
|
275
|
+
const idleMs = Number(process.env.CONTEXT_MODE_HOOK_STDIN_IDLE_MS || 1500);
|
|
276
|
+
let done = false;
|
|
277
|
+
let timer;
|
|
278
|
+
|
|
279
|
+
const cleanup = () => {
|
|
280
|
+
clearTimeout(timer);
|
|
281
|
+
process.stdin.removeListener("data", onData);
|
|
282
|
+
process.stdin.removeListener("end", onEnd);
|
|
283
|
+
process.stdin.removeListener("error", onError);
|
|
284
|
+
try { process.stdin.pause(); } catch {}
|
|
285
|
+
try { process.stdin.destroy?.(); } catch {}
|
|
286
|
+
};
|
|
287
|
+
const resolveBuffer = () => {
|
|
288
|
+
if (done) return;
|
|
289
|
+
done = true;
|
|
290
|
+
cleanup();
|
|
291
|
+
// Preserves #139 BOM strip \u2014 applies on both EOF and idle-empty paths.
|
|
292
|
+
resolve(data.replace(/^\uFEFF/, ""));
|
|
293
|
+
};
|
|
294
|
+
const rejectIdle = () => {
|
|
295
|
+
if (done) return;
|
|
296
|
+
done = true;
|
|
297
|
+
cleanup();
|
|
298
|
+
reject(new Error(
|
|
299
|
+
`stdin idle for ${idleMs}ms with ${data.length} bytes buffered`,
|
|
300
|
+
));
|
|
301
|
+
};
|
|
302
|
+
const onIdle = () => {
|
|
303
|
+
// Zero-buffer idle = host never wrote anything (issue #639). Resolve
|
|
304
|
+
// empty so the hook can no-op. Non-zero buffer = partial data, which
|
|
305
|
+
// must reject to avoid silent JSON.parse corruption (issue #242).
|
|
306
|
+
if (data.length === 0) {
|
|
307
|
+
resolveBuffer();
|
|
308
|
+
} else {
|
|
309
|
+
rejectIdle();
|
|
310
|
+
}
|
|
311
|
+
};
|
|
312
|
+
const arm = () => {
|
|
313
|
+
clearTimeout(timer);
|
|
314
|
+
timer = setTimeout(onIdle, idleMs);
|
|
315
|
+
timer.unref?.();
|
|
316
|
+
};
|
|
317
|
+
const onData = (chunk) => {
|
|
318
|
+
data += chunk;
|
|
319
|
+
arm();
|
|
320
|
+
};
|
|
321
|
+
const onEnd = () => resolveBuffer();
|
|
322
|
+
const onError = (error) => {
|
|
323
|
+
if (done) return;
|
|
324
|
+
done = true;
|
|
325
|
+
cleanup();
|
|
326
|
+
reject(error);
|
|
327
|
+
};
|
|
328
|
+
|
|
329
|
+
process.stdin.setEncoding("utf-8");
|
|
330
|
+
process.stdin.on("data", onData);
|
|
331
|
+
process.stdin.on("end", onEnd);
|
|
332
|
+
process.stdin.on("error", onError);
|
|
333
|
+
process.stdin.resume();
|
|
334
|
+
arm();
|
|
335
|
+
});
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
/**
|
|
339
|
+
* Get the project directory for the current platform.
|
|
340
|
+
* Uses the platform-specific env var, falls back to cwd.
|
|
341
|
+
*/
|
|
342
|
+
export function getProjectDir(opts = CLAUDE_OPTS) {
|
|
343
|
+
return process.env[opts.projectDirEnv] || process.cwd();
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
/**
|
|
347
|
+
* Get the project directory from hook input when available.
|
|
348
|
+
* Falls back to the platform env var and finally process.cwd().
|
|
349
|
+
*/
|
|
350
|
+
export function getInputProjectDir(input, opts = CLAUDE_OPTS) {
|
|
351
|
+
if (typeof input?.cwd === "string" && input.cwd.length > 0) {
|
|
352
|
+
return input.cwd;
|
|
353
|
+
}
|
|
354
|
+
if (Array.isArray(input?.workspace_roots) && input.workspace_roots.length > 0) {
|
|
355
|
+
return String(input.workspace_roots[0]);
|
|
356
|
+
}
|
|
357
|
+
return getProjectDir(opts);
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
/**
|
|
361
|
+
* Derive session ID from hook input.
|
|
362
|
+
* Priority: transcript_path UUID > sessionId (camelCase) > session_id > env var > ppid fallback.
|
|
363
|
+
*/
|
|
364
|
+
export function getSessionId(input, opts = CLAUDE_OPTS) {
|
|
365
|
+
if (input.transcript_path) {
|
|
366
|
+
const match = input.transcript_path.match(/([a-f0-9-]{36})\.jsonl$/);
|
|
367
|
+
if (match) return match[1];
|
|
368
|
+
}
|
|
369
|
+
if (input.conversation_id) return input.conversation_id;
|
|
370
|
+
if (input.sessionId) return input.sessionId;
|
|
371
|
+
if (input.session_id) return input.session_id;
|
|
372
|
+
if (opts.sessionIdEnv && process.env[opts.sessionIdEnv]) {
|
|
373
|
+
return process.env[opts.sessionIdEnv];
|
|
374
|
+
}
|
|
375
|
+
return `pid-${process.ppid}`;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
// ─────────────────────────────────────────────────────────
|
|
379
|
+
// Per-project file paths — thin wrappers around resolveSessionPath.
|
|
380
|
+
// ─────────────────────────────────────────────────────────
|
|
381
|
+
|
|
382
|
+
function resolveSessionDir(opts) {
|
|
383
|
+
return ensureWritableStorageDir(
|
|
384
|
+
resolveSessionStorageDir(() => resolveDefaultSessionDir({
|
|
385
|
+
configDir: opts.configDir,
|
|
386
|
+
configDirEnv: opts.configDirEnv,
|
|
387
|
+
})),
|
|
388
|
+
);
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
function _resolveProjectFile(opts, projectDirOverride, ext) {
|
|
392
|
+
const projectDir = normalizeWorktreePath(projectDirOverride ?? getProjectDir(opts));
|
|
393
|
+
const sessionsDir = resolveSessionDir(opts);
|
|
394
|
+
mkdirSync(sessionsDir, { recursive: true });
|
|
395
|
+
return _resolveSessionPath({
|
|
396
|
+
projectDir,
|
|
397
|
+
sessionsDir,
|
|
398
|
+
suffix: getWorktreeSuffix(projectDir),
|
|
399
|
+
ext,
|
|
400
|
+
});
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
/**
|
|
404
|
+
* Return the per-project session DB path.
|
|
405
|
+
* Creates the directory if it doesn't exist.
|
|
406
|
+
* Path: ~/<configDir>/context-mode/sessions/<canonicalHash><suffix>.db
|
|
407
|
+
*/
|
|
408
|
+
export function getSessionDBPath(opts = CLAUDE_OPTS, projectDirOverride) {
|
|
409
|
+
return _resolveProjectFile(opts, projectDirOverride, ".db");
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
/**
|
|
413
|
+
* Return the per-project session events file path.
|
|
414
|
+
* Used by sessionstart hook (write) and MCP server (read + auto-index).
|
|
415
|
+
* Path: ~/<configDir>/context-mode/sessions/<canonicalHash><suffix>-events.md
|
|
416
|
+
*/
|
|
417
|
+
export function getSessionEventsPath(opts = CLAUDE_OPTS, projectDirOverride) {
|
|
418
|
+
return _resolveProjectFile(opts, projectDirOverride, "-events.md");
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
/**
|
|
422
|
+
* Return the per-project cleanup flag path.
|
|
423
|
+
* Used to detect true fresh starts vs --continue (which fires startup+resume).
|
|
424
|
+
* Path: ~/<configDir>/context-mode/sessions/<canonicalHash><suffix>.cleanup
|
|
425
|
+
*/
|
|
426
|
+
export function getCleanupFlagPath(opts = CLAUDE_OPTS, projectDirOverride) {
|
|
427
|
+
return _resolveProjectFile(opts, projectDirOverride, ".cleanup");
|
|
428
|
+
}
|