@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,225 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* PostToolUse hook for context-mode session continuity.
|
|
4
|
+
*
|
|
5
|
+
* Captures session events from tool calls (13 categories) and stores
|
|
6
|
+
* them in the per-project SessionDB for later resume snapshot building.
|
|
7
|
+
*
|
|
8
|
+
* Must be fast (<20ms). No network, no LLM, just SQLite writes.
|
|
9
|
+
*
|
|
10
|
+
* Crash-resilience: wrapped via runHook (#414).
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
import { runHook } from "./run-hook.mjs";
|
|
14
|
+
|
|
15
|
+
await runHook(async () => {
|
|
16
|
+
const {
|
|
17
|
+
readStdin,
|
|
18
|
+
parseStdin,
|
|
19
|
+
getSessionId,
|
|
20
|
+
getSessionDBPath,
|
|
21
|
+
getInputProjectDir,
|
|
22
|
+
} = await import("./session-helpers.mjs");
|
|
23
|
+
const { createSessionLoaders, attributeAndInsertEvents } = await import("./session-loaders.mjs");
|
|
24
|
+
const { dirname, resolve, basename } = await import("node:path");
|
|
25
|
+
const { fileURLToPath } = await import("node:url");
|
|
26
|
+
const { readFileSync, unlinkSync } = await import("node:fs");
|
|
27
|
+
const { tmpdir } = await import("node:os");
|
|
28
|
+
|
|
29
|
+
// Resolve absolute path for imports — relative dynamic imports can fail
|
|
30
|
+
// when Claude Code invokes hooks from a different working directory.
|
|
31
|
+
const HOOK_DIR = dirname(fileURLToPath(import.meta.url));
|
|
32
|
+
const { loadSessionDB, loadExtract, loadProjectAttribution } = createSessionLoaders(HOOK_DIR);
|
|
33
|
+
|
|
34
|
+
try {
|
|
35
|
+
const raw = await readStdin();
|
|
36
|
+
const input = parseStdin(raw);
|
|
37
|
+
const projectDir = getInputProjectDir(input);
|
|
38
|
+
|
|
39
|
+
const { extractEvents } = await loadExtract();
|
|
40
|
+
const { resolveProjectAttributions } = await loadProjectAttribution();
|
|
41
|
+
const { SessionDB } = await loadSessionDB();
|
|
42
|
+
|
|
43
|
+
const dbPath = getSessionDBPath();
|
|
44
|
+
const db = new SessionDB({ dbPath });
|
|
45
|
+
const sessionId = getSessionId(input);
|
|
46
|
+
|
|
47
|
+
// Ensure session meta exists
|
|
48
|
+
db.ensureSession(sessionId, projectDir);
|
|
49
|
+
|
|
50
|
+
// Extract and store events
|
|
51
|
+
const events = extractEvents({
|
|
52
|
+
tool_name: input.tool_name,
|
|
53
|
+
tool_input: input.tool_input ?? {},
|
|
54
|
+
tool_response: typeof input.tool_response === "string"
|
|
55
|
+
? input.tool_response
|
|
56
|
+
: JSON.stringify(input.tool_response ?? ""),
|
|
57
|
+
tool_output: input.tool_output,
|
|
58
|
+
});
|
|
59
|
+
|
|
60
|
+
attributeAndInsertEvents(db, sessionId, events, input, projectDir, "PostToolUse", resolveProjectAttributions);
|
|
61
|
+
|
|
62
|
+
// ─── Category 18: Rejected-approach — read PreToolUse marker ───
|
|
63
|
+
try {
|
|
64
|
+
const rejectedPath = resolve(tmpdir(), `context-mode-rejected-${sessionId}.txt`);
|
|
65
|
+
let rejectedData;
|
|
66
|
+
try {
|
|
67
|
+
rejectedData = readFileSync(rejectedPath, "utf-8").trim();
|
|
68
|
+
unlinkSync(rejectedPath);
|
|
69
|
+
} catch { /* no marker */ }
|
|
70
|
+
if (rejectedData) {
|
|
71
|
+
const colonIdx = rejectedData.indexOf(":");
|
|
72
|
+
const rejTool = colonIdx > 0 ? rejectedData.slice(0, colonIdx) : rejectedData;
|
|
73
|
+
const rejReason = colonIdx > 0 ? rejectedData.slice(colonIdx + 1) : "denied";
|
|
74
|
+
// v1.0.160: route through attributeAndInsertEvents so the bridge wire
|
|
75
|
+
// receives this event too. db.insertEvent only writes locally — the
|
|
76
|
+
// dashboard's rejection-rate widget needs the platform row.
|
|
77
|
+
attributeAndInsertEvents(
|
|
78
|
+
db,
|
|
79
|
+
sessionId,
|
|
80
|
+
[{
|
|
81
|
+
type: "rejected",
|
|
82
|
+
category: "rejected-approach",
|
|
83
|
+
data: `${rejTool}: ${rejReason}`,
|
|
84
|
+
priority: 2,
|
|
85
|
+
}],
|
|
86
|
+
input,
|
|
87
|
+
projectDir,
|
|
88
|
+
"PreToolUse",
|
|
89
|
+
resolveProjectAttributions,
|
|
90
|
+
);
|
|
91
|
+
}
|
|
92
|
+
} catch { /* best-effort */ }
|
|
93
|
+
|
|
94
|
+
// ─── D2 PRD Phase 3/4: redirect marker — emit byte-accounting event ───
|
|
95
|
+
// PreToolUse wrote `context-mode-redirect-${sessionId}.txt` for tools whose
|
|
96
|
+
// output we kept out of the model's context window (curl/wget, WebFetch,
|
|
97
|
+
// large Read). Format: `tool:type:bytesAvoided:commandSummary` (Override C).
|
|
98
|
+
try {
|
|
99
|
+
const redirectPath = resolve(tmpdir(), `context-mode-redirect-${sessionId}.txt`);
|
|
100
|
+
let redirectData;
|
|
101
|
+
try {
|
|
102
|
+
redirectData = readFileSync(redirectPath, "utf-8").trim();
|
|
103
|
+
// Slice 3.3: unlink so the next PostToolUse for an unrelated tool call
|
|
104
|
+
// does NOT re-emit the same event (no double-accounting).
|
|
105
|
+
unlinkSync(redirectPath);
|
|
106
|
+
} catch { /* no marker — Slice 3.4: phantom-event guard */ }
|
|
107
|
+
|
|
108
|
+
if (redirectData) {
|
|
109
|
+
// Parse first 3 colons; the rest (commandSummary) may itself contain
|
|
110
|
+
// colons (URLs do — `https://`). Avoid `split(":", 4)` which would
|
|
111
|
+
// truncate the summary at any embedded colon.
|
|
112
|
+
const i1 = redirectData.indexOf(":");
|
|
113
|
+
const i2 = i1 >= 0 ? redirectData.indexOf(":", i1 + 1) : -1;
|
|
114
|
+
const i3 = i2 >= 0 ? redirectData.indexOf(":", i2 + 1) : -1;
|
|
115
|
+
if (i1 > 0 && i2 > i1 && i3 > i2) {
|
|
116
|
+
const tool = redirectData.slice(0, i1);
|
|
117
|
+
const type = redirectData.slice(i1 + 1, i2);
|
|
118
|
+
const bytesRaw = redirectData.slice(i2 + 1, i3);
|
|
119
|
+
const summary = redirectData.slice(i3 + 1);
|
|
120
|
+
const bytesAvoided = Number.parseInt(bytesRaw, 10);
|
|
121
|
+
if (Number.isFinite(bytesAvoided) && bytesAvoided > 0) {
|
|
122
|
+
// v1.0.160: route through wire — context-saving (byte-accounting)
|
|
123
|
+
// widget on the platform reads category='redirect' rows. event
|
|
124
|
+
// carries bytes_avoided so the bytesList branch in
|
|
125
|
+
// attributeAndInsertEvents stamps the column.
|
|
126
|
+
attributeAndInsertEvents(
|
|
127
|
+
db,
|
|
128
|
+
sessionId,
|
|
129
|
+
[{
|
|
130
|
+
type,
|
|
131
|
+
category: "redirect",
|
|
132
|
+
data: `${tool}: ${summary}`,
|
|
133
|
+
priority: 2,
|
|
134
|
+
bytes_avoided: bytesAvoided,
|
|
135
|
+
}],
|
|
136
|
+
input,
|
|
137
|
+
projectDir,
|
|
138
|
+
"PreToolUse",
|
|
139
|
+
resolveProjectAttributions,
|
|
140
|
+
);
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
} catch { /* best-effort — never block hook */ }
|
|
145
|
+
|
|
146
|
+
// ─── Category 27: Latency — read cross-hook marker and emit event if slow ───
|
|
147
|
+
try {
|
|
148
|
+
const toolName = input.tool_name ?? "";
|
|
149
|
+
if (toolName) {
|
|
150
|
+
const markerPath = resolve(tmpdir(), `context-mode-latency-${sessionId}-${toolName}.txt`);
|
|
151
|
+
let startTime;
|
|
152
|
+
try {
|
|
153
|
+
startTime = parseInt(readFileSync(markerPath, "utf-8").trim(), 10);
|
|
154
|
+
unlinkSync(markerPath);
|
|
155
|
+
} catch {
|
|
156
|
+
// No marker — pretooluse didn't write one or already consumed
|
|
157
|
+
}
|
|
158
|
+
if (startTime && !isNaN(startTime)) {
|
|
159
|
+
const duration = Date.now() - startTime;
|
|
160
|
+
if (duration > 5000) {
|
|
161
|
+
// v1.0.160: route through wire — slow-tool insights need this row.
|
|
162
|
+
attributeAndInsertEvents(
|
|
163
|
+
db,
|
|
164
|
+
sessionId,
|
|
165
|
+
[{
|
|
166
|
+
type: "tool_latency",
|
|
167
|
+
category: "latency",
|
|
168
|
+
data: `${toolName}: ${duration}ms`,
|
|
169
|
+
priority: 3,
|
|
170
|
+
}],
|
|
171
|
+
input,
|
|
172
|
+
projectDir,
|
|
173
|
+
"PostToolUse",
|
|
174
|
+
resolveProjectAttributions,
|
|
175
|
+
);
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
} catch { /* latency tracking is best-effort */ }
|
|
180
|
+
|
|
181
|
+
// ─── Retrieval bridge: emit the "With context-mode" (bytes_retrieved) row ───
|
|
182
|
+
// The MCP server appended ctx_search / ctx_fetch_and_index response bytes to
|
|
183
|
+
// a marker keyed by the session DB basename (the hook NEVER fires for the
|
|
184
|
+
// plugin's own MCP tools, so this is the only place that signal can enter
|
|
185
|
+
// the forward stream). Consume + emit one forwardable event so the platform
|
|
186
|
+
// kept_out_pct goes "measured". Mirrors the redirect-marker handshake above.
|
|
187
|
+
try {
|
|
188
|
+
const marker = resolve(tmpdir(), `context-mode-retrieval-${basename(dbPath)}.txt`);
|
|
189
|
+
let retrievedBytes = 0;
|
|
190
|
+
try {
|
|
191
|
+
const raw = readFileSync(marker, "utf-8");
|
|
192
|
+
for (const line of raw.split("\n")) {
|
|
193
|
+
const n = parseInt(line, 10);
|
|
194
|
+
if (Number.isFinite(n) && n > 0) retrievedBytes += n;
|
|
195
|
+
}
|
|
196
|
+
unlinkSync(marker); // consume-once — next fire cannot re-forward
|
|
197
|
+
} catch { /* no marker — phantom-event guard */ }
|
|
198
|
+
if (retrievedBytes > 0) {
|
|
199
|
+
// session-loaders stamps bytes_retrieved onto the platform payload from
|
|
200
|
+
// this in-memory field (session_events has no such column — forward-only).
|
|
201
|
+
attributeAndInsertEvents(
|
|
202
|
+
db,
|
|
203
|
+
sessionId,
|
|
204
|
+
[{
|
|
205
|
+
type: "mcp_tool_call",
|
|
206
|
+
category: "retrieval",
|
|
207
|
+
data: `retrieval: ${retrievedBytes} bytes accessed`,
|
|
208
|
+
priority: 2,
|
|
209
|
+
bytes_retrieved: retrievedBytes,
|
|
210
|
+
}],
|
|
211
|
+
input,
|
|
212
|
+
projectDir,
|
|
213
|
+
"PostToolUse",
|
|
214
|
+
resolveProjectAttributions,
|
|
215
|
+
);
|
|
216
|
+
}
|
|
217
|
+
} catch { /* best-effort — never block the hook */ }
|
|
218
|
+
|
|
219
|
+
db.close();
|
|
220
|
+
} catch {
|
|
221
|
+
// PostToolUse must never block the session — silent fallback
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
// PostToolUse hooks don't need hookSpecificOutput
|
|
225
|
+
});
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* PreCompact hook for context-mode session continuity.
|
|
4
|
+
*
|
|
5
|
+
* Triggered when Claude Code is about to compact the conversation.
|
|
6
|
+
* Reads all captured session events, builds a priority-sorted resume
|
|
7
|
+
* snapshot (<2KB XML), and stores it for injection after compact.
|
|
8
|
+
*
|
|
9
|
+
* Crash-resilience: wrapped via runHook (#414).
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
import { runHook } from "./run-hook.mjs";
|
|
13
|
+
|
|
14
|
+
await runHook(async () => {
|
|
15
|
+
const {
|
|
16
|
+
readStdin,
|
|
17
|
+
parseStdin,
|
|
18
|
+
getSessionId,
|
|
19
|
+
getSessionDBPath,
|
|
20
|
+
getInputProjectDir,
|
|
21
|
+
resolveConfigDir,
|
|
22
|
+
} = await import("./session-helpers.mjs");
|
|
23
|
+
const { createSessionLoaders, attributeAndInsertEvents } = await import("./session-loaders.mjs");
|
|
24
|
+
const { appendFileSync } = await import("node:fs");
|
|
25
|
+
const { join, dirname } = await import("node:path");
|
|
26
|
+
const { fileURLToPath } = await import("node:url");
|
|
27
|
+
|
|
28
|
+
// Resolve absolute path for imports
|
|
29
|
+
const HOOK_DIR = dirname(fileURLToPath(import.meta.url));
|
|
30
|
+
const { loadSessionDB, loadSnapshot, loadProjectAttribution } = createSessionLoaders(HOOK_DIR);
|
|
31
|
+
const DEBUG_LOG = join(resolveConfigDir(), "context-mode", "precompact-debug.log");
|
|
32
|
+
|
|
33
|
+
try {
|
|
34
|
+
const raw = await readStdin();
|
|
35
|
+
const input = parseStdin(raw);
|
|
36
|
+
|
|
37
|
+
const { buildResumeSnapshot } = await loadSnapshot();
|
|
38
|
+
const { SessionDB } = await loadSessionDB();
|
|
39
|
+
|
|
40
|
+
const dbPath = getSessionDBPath();
|
|
41
|
+
const db = new SessionDB({ dbPath });
|
|
42
|
+
const sessionId = getSessionId(input);
|
|
43
|
+
|
|
44
|
+
// Get all events for this session
|
|
45
|
+
const events = db.getEvents(sessionId);
|
|
46
|
+
|
|
47
|
+
if (events.length > 0) {
|
|
48
|
+
const stats = db.getSessionStats(sessionId);
|
|
49
|
+
const snapshot = buildResumeSnapshot(events, {
|
|
50
|
+
compactCount: (stats?.compact_count ?? 0) + 1,
|
|
51
|
+
});
|
|
52
|
+
|
|
53
|
+
db.upsertResume(sessionId, snapshot, events.length);
|
|
54
|
+
db.incrementCompactCount(sessionId);
|
|
55
|
+
|
|
56
|
+
// v1.0.160: route compaction lifecycle events through wire so
|
|
57
|
+
// dashboard's compact widget gets per-compaction rows (the engine
|
|
58
|
+
// joins on category='compaction' to compute snapshot insights).
|
|
59
|
+
try {
|
|
60
|
+
const fileEvents = events.filter(e => e.category === "file");
|
|
61
|
+
const projectDirCompact = getInputProjectDir(input);
|
|
62
|
+
const { resolveProjectAttributions } = await loadProjectAttribution();
|
|
63
|
+
attributeAndInsertEvents(
|
|
64
|
+
db,
|
|
65
|
+
sessionId,
|
|
66
|
+
[
|
|
67
|
+
{
|
|
68
|
+
type: "compaction_summary",
|
|
69
|
+
category: "compaction",
|
|
70
|
+
data: `Session compacted. ${events.length} events, ${fileEvents.length} files touched.`,
|
|
71
|
+
priority: 1,
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
type: "snapshot-built",
|
|
75
|
+
category: "compaction",
|
|
76
|
+
data: `Snapshot built. ${snapshot.length} bytes for ${events.length} events.`,
|
|
77
|
+
priority: 1,
|
|
78
|
+
bytes_avoided: snapshot.length,
|
|
79
|
+
},
|
|
80
|
+
],
|
|
81
|
+
input,
|
|
82
|
+
projectDirCompact,
|
|
83
|
+
"PreCompact",
|
|
84
|
+
resolveProjectAttributions,
|
|
85
|
+
);
|
|
86
|
+
} catch { /* best-effort — never block PreCompact */ }
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
db.close();
|
|
90
|
+
} catch (err) {
|
|
91
|
+
try {
|
|
92
|
+
appendFileSync(DEBUG_LOG, `[${new Date().toISOString()}] ${err.message}\n`);
|
|
93
|
+
} catch {
|
|
94
|
+
// Silent fallback
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
// PreCompact doesn't need hookSpecificOutput
|
|
99
|
+
console.log(JSON.stringify({}));
|
|
100
|
+
});
|
|
@@ -0,0 +1,227 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* Unified PreToolUse hook for context-mode (Claude Code)
|
|
4
|
+
* Redirects data-fetching tools to context-mode MCP tools
|
|
5
|
+
*
|
|
6
|
+
* Cross-platform (Windows/macOS/Linux) — no bash/jq dependency.
|
|
7
|
+
*
|
|
8
|
+
* Routing is delegated to core/routing.mjs (shared across platforms).
|
|
9
|
+
* This file retains the Claude Code-specific self-heal block and
|
|
10
|
+
* uses core/formatters.mjs for Claude Code output format.
|
|
11
|
+
*
|
|
12
|
+
* Crash-resilience: wrapped via runHook (#414) — module loads happen
|
|
13
|
+
* dynamically inside the wrapper.
|
|
14
|
+
*
|
|
15
|
+
* #415: the destructive settings.json mutation block (which removed
|
|
16
|
+
* context-mode hook entries when hooks.json was present) was deleted.
|
|
17
|
+
* It deleted user-written hook configs without consent and was the
|
|
18
|
+
* documented cause of the regression.
|
|
19
|
+
*/
|
|
20
|
+
|
|
21
|
+
import { runHook } from "./run-hook.mjs";
|
|
22
|
+
|
|
23
|
+
await runHook(async () => {
|
|
24
|
+
const { readFileSync, writeFileSync, existsSync, mkdirSync, copyFileSync, readdirSync } = await import("node:fs");
|
|
25
|
+
const { resolve, dirname, basename } = await import("node:path");
|
|
26
|
+
const { fileURLToPath } = await import("node:url");
|
|
27
|
+
const { tmpdir } = await import("node:os");
|
|
28
|
+
const { readStdin } = await import("./core/stdin.mjs");
|
|
29
|
+
const { routePreToolUse, initSecurity } = await import("./core/routing.mjs");
|
|
30
|
+
const { formatDecision } = await import("./core/formatters.mjs");
|
|
31
|
+
const { parseStdin, getInputProjectDir, getSessionId, resolveConfigDir } = await import("./session-helpers.mjs");
|
|
32
|
+
|
|
33
|
+
// ─── Manual recursive copy (avoids cpSync libuv crash on non-ASCII paths, Windows + Node 24) ───
|
|
34
|
+
function copyDirSync(src, dest) {
|
|
35
|
+
mkdirSync(dest, { recursive: true });
|
|
36
|
+
for (const entry of readdirSync(src, { withFileTypes: true })) {
|
|
37
|
+
const srcPath = resolve(src, entry.name);
|
|
38
|
+
const destPath = resolve(dest, entry.name);
|
|
39
|
+
if (entry.isDirectory()) copyDirSync(srcPath, destPath);
|
|
40
|
+
else copyFileSync(srcPath, destPath);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
// ─── Self-heal: rename dir to correct version, fix registry + hooks ───
|
|
45
|
+
try {
|
|
46
|
+
const hookDir = dirname(fileURLToPath(import.meta.url));
|
|
47
|
+
const myRoot = resolve(hookDir, "..");
|
|
48
|
+
const myPkg = JSON.parse(readFileSync(resolve(myRoot, "package.json"), "utf-8"));
|
|
49
|
+
const myVersion = myPkg.version ?? "unknown";
|
|
50
|
+
const myDirName = basename(myRoot);
|
|
51
|
+
const cacheParent = dirname(myRoot);
|
|
52
|
+
const marker = resolve(tmpdir(), `context-mode-healed-${myVersion}`);
|
|
53
|
+
|
|
54
|
+
// Only self-heal inside plugin cache dirs — skip in dev/CI environments
|
|
55
|
+
const isInPluginCache = myRoot.includes("/plugins/cache/") || myRoot.includes("\\plugins\\cache\\");
|
|
56
|
+
if (myVersion !== "unknown" && isInPluginCache && !existsSync(marker)) {
|
|
57
|
+
// 1. If dir name doesn't match version (e.g. "0.7.0" but code is "0.9.12"),
|
|
58
|
+
// create correct dir, copy files, update registry + hooks
|
|
59
|
+
const correctDir = resolve(cacheParent, myVersion);
|
|
60
|
+
if (myDirName !== myVersion && !existsSync(correctDir)) {
|
|
61
|
+
copyDirSync(myRoot, correctDir);
|
|
62
|
+
|
|
63
|
+
// Create start.mjs in new dir if missing
|
|
64
|
+
const startMjs = resolve(correctDir, "start.mjs");
|
|
65
|
+
if (!existsSync(startMjs)) {
|
|
66
|
+
writeFileSync(startMjs, [
|
|
67
|
+
'#!/usr/bin/env node',
|
|
68
|
+
'import { existsSync } from "node:fs";',
|
|
69
|
+
'import { dirname, resolve } from "node:path";',
|
|
70
|
+
'import { fileURLToPath } from "node:url";',
|
|
71
|
+
'const __dirname = dirname(fileURLToPath(import.meta.url));',
|
|
72
|
+
'process.chdir(__dirname);',
|
|
73
|
+
'if (!process.env.CLAUDE_PROJECT_DIR) process.env.CLAUDE_PROJECT_DIR = process.cwd();',
|
|
74
|
+
'if (existsSync(resolve(__dirname, "server.bundle.mjs"))) {',
|
|
75
|
+
' await import("./server.bundle.mjs");',
|
|
76
|
+
'} else if (existsSync(resolve(__dirname, "build", "server.js"))) {',
|
|
77
|
+
' await import("./build/server.js");',
|
|
78
|
+
'}',
|
|
79
|
+
].join("\n"), "utf-8");
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
const targetDir = existsSync(correctDir) ? correctDir : myRoot;
|
|
84
|
+
|
|
85
|
+
// 2. Update installed_plugins.json → point to correct version dir
|
|
86
|
+
// Skip if not present (e.g. CI / non-Claude-Code environments)
|
|
87
|
+
const ipPath = resolve(resolveConfigDir(), "plugins", "installed_plugins.json");
|
|
88
|
+
if (existsSync(ipPath)) {
|
|
89
|
+
const ip = JSON.parse(readFileSync(ipPath, "utf-8"));
|
|
90
|
+
for (const [key, entries] of Object.entries(ip.plugins || {})) {
|
|
91
|
+
if (!key.toLowerCase().includes("context-mode")) continue;
|
|
92
|
+
for (const entry of entries) {
|
|
93
|
+
entry.installPath = targetDir;
|
|
94
|
+
entry.version = myVersion;
|
|
95
|
+
entry.lastUpdated = new Date().toISOString();
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
writeFileSync(ipPath, JSON.stringify(ip, null, 2) + "\n", "utf-8");
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
// 3. Legacy: hooks.json absent — rewrite stale paths in settings.json to current version dir.
|
|
102
|
+
// The previous "if hooks.json present, delete settings.json entries" block was REMOVED (#415):
|
|
103
|
+
// it destroyed user-written hook configs without consent. Plugin-system + settings.json
|
|
104
|
+
// coexistence is now Claude Code's responsibility, not ours.
|
|
105
|
+
const settingsPath = resolve(resolveConfigDir(), "settings.json");
|
|
106
|
+
try {
|
|
107
|
+
const settings = JSON.parse(readFileSync(settingsPath, "utf-8"));
|
|
108
|
+
const allHooks = settings.hooks || {};
|
|
109
|
+
let changed = false;
|
|
110
|
+
|
|
111
|
+
const hooksJsonPath = resolve(myRoot, "hooks", "hooks.json");
|
|
112
|
+
if (!existsSync(hooksJsonPath)) {
|
|
113
|
+
// Legacy: hooks.json absent — rewrite stale paths to current version dir.
|
|
114
|
+
for (const hookType of Object.keys(allHooks)) {
|
|
115
|
+
const entries = allHooks[hookType];
|
|
116
|
+
if (!Array.isArray(entries)) continue;
|
|
117
|
+
|
|
118
|
+
for (const entry of entries) {
|
|
119
|
+
// Fix deprecated Task-only matcher (PreToolUse only)
|
|
120
|
+
if (hookType === "PreToolUse" && entry.matcher?.includes("Task") && !entry.matcher.includes("Agent")) {
|
|
121
|
+
entry.matcher = entry.matcher.replace("Task", "Agent|Task");
|
|
122
|
+
changed = true;
|
|
123
|
+
}
|
|
124
|
+
// Rewrite stale context-mode hook paths to point to current version
|
|
125
|
+
for (const h of (entry.hooks || [])) {
|
|
126
|
+
if (h.command && h.command.includes(".mjs") && h.command.includes("context-mode") && !h.command.includes(targetDir)) {
|
|
127
|
+
// Extract the script filename (e.g., sessionstart.mjs, pretooluse.mjs)
|
|
128
|
+
const scriptMatch = h.command.match(/([a-z]+\.mjs)\s*"?\s*$/);
|
|
129
|
+
if (scriptMatch) {
|
|
130
|
+
// Issue #636: quote the script path so spaces in targetDir
|
|
131
|
+
// (e.g. Dropbox/iCloud display names like "Lucas Werneck",
|
|
132
|
+
// or CLAUDE_CONFIG_DIR pointed at a synced spaced folder)
|
|
133
|
+
// don't break /bin/sh's word-splitting at hook-spawn time.
|
|
134
|
+
// JSON.stringify is sufficient on Unix and safe on Windows
|
|
135
|
+
// (backslashes get escaped — Claude Code's hook layer
|
|
136
|
+
// normalizes to POSIX on Windows anyway via toHookPath).
|
|
137
|
+
const scriptPath = resolve(targetDir, "hooks", scriptMatch[1]);
|
|
138
|
+
h.command = `node ${JSON.stringify(scriptPath)}`;
|
|
139
|
+
changed = true;
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
if (changed) writeFileSync(settingsPath, JSON.stringify(settings, null, 2) + "\n", "utf-8");
|
|
148
|
+
} catch { /* skip settings update */ }
|
|
149
|
+
|
|
150
|
+
// Old version dirs are cleaned lazily by sessionstart.mjs (age-gated >1h)
|
|
151
|
+
// to avoid breaking active sessions that still reference them (#181).
|
|
152
|
+
|
|
153
|
+
writeFileSync(marker, Date.now().toString(), "utf-8");
|
|
154
|
+
}
|
|
155
|
+
} catch { /* best effort — don't block hook */ }
|
|
156
|
+
|
|
157
|
+
// ─── Init security from compiled build ───
|
|
158
|
+
const __hookDir = dirname(fileURLToPath(import.meta.url));
|
|
159
|
+
await initSecurity(resolve(__hookDir, "..", "build"));
|
|
160
|
+
|
|
161
|
+
// ─── Read stdin ───
|
|
162
|
+
const raw = await readStdin();
|
|
163
|
+
const input = parseStdin(raw);
|
|
164
|
+
const tool = input.tool_name ?? "";
|
|
165
|
+
const toolInput = input.tool_input ?? {};
|
|
166
|
+
const projectDir = getInputProjectDir(input);
|
|
167
|
+
const isSubagentContext = input.agent_id != null || input.agent_type != null;
|
|
168
|
+
|
|
169
|
+
// ─── Route and format response ───
|
|
170
|
+
const decision = routePreToolUse(tool, toolInput, projectDir, "claude-code", getSessionId(input), {
|
|
171
|
+
mcpToolsAvailable: !isSubagentContext,
|
|
172
|
+
});
|
|
173
|
+
const response = formatDecision("claude-code", decision);
|
|
174
|
+
|
|
175
|
+
// ─── Write latency marker for cross-hook timing (Category 27) ───
|
|
176
|
+
// Marker writes MUST happen before stdout write — stdout is the last action
|
|
177
|
+
// so the process can exit immediately after, avoiding CI test timeouts.
|
|
178
|
+
try {
|
|
179
|
+
const sessionId = getSessionId(input);
|
|
180
|
+
if (tool) {
|
|
181
|
+
const markerPath = resolve(tmpdir(), `context-mode-latency-${sessionId}-${tool}.txt`);
|
|
182
|
+
writeFileSync(markerPath, String(Date.now()), "utf-8");
|
|
183
|
+
}
|
|
184
|
+
} catch { /* latency tracking is best-effort — never block hook */ }
|
|
185
|
+
|
|
186
|
+
// ─── Write rejected-approach marker for PostToolUse to pick up ───
|
|
187
|
+
// PreToolUse cannot safely load SessionDB (native module loading breaks hook stdout).
|
|
188
|
+
// Write a marker file instead; PostToolUse reads it and writes the event.
|
|
189
|
+
if (decision && (decision.action === "deny" || decision.action === "modify")) {
|
|
190
|
+
try {
|
|
191
|
+
const sessionId = getSessionId(input);
|
|
192
|
+
const reason = decision.action === "deny"
|
|
193
|
+
? (decision.reason || "denied")
|
|
194
|
+
: "Redirected to context-mode sandbox";
|
|
195
|
+
const markerPath = resolve(tmpdir(), `context-mode-rejected-${sessionId}.txt`);
|
|
196
|
+
writeFileSync(markerPath, `${tool}:${reason}`, "utf-8");
|
|
197
|
+
} catch { /* best-effort — never block hook */ }
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
// ─── D2 PRD Phase 3/4: redirect marker for byte-accounting events ───
|
|
201
|
+
// routing.mjs attaches `redirectMeta` to decisions for tools whose output we
|
|
202
|
+
// kept out of the model's context window (curl/wget, WebFetch, large Read).
|
|
203
|
+
// PostToolUse reads this marker to emit a `category=redirect` event with the
|
|
204
|
+
// estimated `bytes_avoided`. PreToolUse cannot load SessionDB safely (native
|
|
205
|
+
// module load breaks hook stdout), hence the marker indirection.
|
|
206
|
+
if (decision && decision.redirectMeta) {
|
|
207
|
+
try {
|
|
208
|
+
const sessionId = getSessionId(input);
|
|
209
|
+
const meta = decision.redirectMeta;
|
|
210
|
+
const summary = String(meta.commandSummary ?? "").slice(0, 200);
|
|
211
|
+
const markerPath = resolve(tmpdir(), `context-mode-redirect-${sessionId}.txt`);
|
|
212
|
+
// Format: tool:type:bytesAvoided:commandSummary (matches Override C).
|
|
213
|
+
// commandSummary may legitimately contain `:` (URLs) — don't quote it,
|
|
214
|
+
// PostToolUse parses only the first 3 colons and treats the rest as data.
|
|
215
|
+
writeFileSync(
|
|
216
|
+
markerPath,
|
|
217
|
+
`${meta.tool}:${meta.type}:${meta.bytesAvoided}:${summary}`,
|
|
218
|
+
"utf-8",
|
|
219
|
+
);
|
|
220
|
+
} catch { /* best-effort — never block hook */ }
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
// ─── stdout write is the LAST action — process exits immediately after ───
|
|
224
|
+
if (response !== null) {
|
|
225
|
+
process.stdout.write(JSON.stringify(response) + "\n");
|
|
226
|
+
}
|
|
227
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
process.env.CONTEXT_MODE_PLATFORM = "qwen-code";
|