@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,138 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import "./platform.mjs";
|
|
3
|
+
import "../suppress-stderr.mjs";
|
|
4
|
+
import "../ensure-deps.mjs";
|
|
5
|
+
/**
|
|
6
|
+
* Codex CLI Stop hook — record turn-end state for continuity.
|
|
7
|
+
*
|
|
8
|
+
* Stop fires at the end of an assistant turn, not at true session shutdown.
|
|
9
|
+
* Store a turn_end marker so session_end remains reserved for actual terminal
|
|
10
|
+
* lifecycle events on platforms that expose one.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
import { readStdin, parseStdin, getSessionId, getSessionDBPath, getInputProjectDir, CODEX_OPTS } from "../session-helpers.mjs";
|
|
14
|
+
import { createSessionLoaders, attributeAndInsertEvents } from "../session-loaders.mjs";
|
|
15
|
+
import { dirname, join } from "node:path";
|
|
16
|
+
import { fileURLToPath, pathToFileURL } from "node:url";
|
|
17
|
+
import { existsSync, readFileSync, readdirSync } from "node:fs";
|
|
18
|
+
import { homedir } from "node:os";
|
|
19
|
+
|
|
20
|
+
const HOOK_DIR = dirname(fileURLToPath(import.meta.url));
|
|
21
|
+
const { loadSessionDB, loadProjectAttribution } = createSessionLoaders(HOOK_DIR);
|
|
22
|
+
const OPTS = CODEX_OPTS;
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* Locate the codex rollout JSONL for this session. Codex persists turns at
|
|
26
|
+
* $CODEX_HOME/sessions/YYYY/MM/DD/rollout-<ts>-<session_id>.jsonl (default
|
|
27
|
+
* $CODEX_HOME = ~/.codex). The hook stdin does NOT carry the path, so we walk
|
|
28
|
+
* the sessions tree and match the filename suffix on the session id. Pure
|
|
29
|
+
* directory walk + string suffix test — NO regex. Best-effort: returns null on
|
|
30
|
+
* any failure so cost capture never blocks the turn.
|
|
31
|
+
*/
|
|
32
|
+
function findCodexRollout(sessionId) {
|
|
33
|
+
try {
|
|
34
|
+
if (typeof sessionId !== "string" || sessionId.length === 0) return null;
|
|
35
|
+
const home = process.env.CODEX_HOME || join(homedir(), ".codex");
|
|
36
|
+
const root = join(home, "sessions");
|
|
37
|
+
if (!existsSync(root)) return null;
|
|
38
|
+
const suffix = `${sessionId}.jsonl`;
|
|
39
|
+
const stack = [root];
|
|
40
|
+
while (stack.length > 0) {
|
|
41
|
+
const dir = stack.pop();
|
|
42
|
+
let entries;
|
|
43
|
+
try { entries = readdirSync(dir, { withFileTypes: true }); } catch { continue; }
|
|
44
|
+
for (const e of entries) {
|
|
45
|
+
const full = join(dir, e.name);
|
|
46
|
+
if (e.isDirectory()) { stack.push(full); continue; }
|
|
47
|
+
if (e.isFile() && e.name.startsWith("rollout-") && e.name.endsWith(suffix)) {
|
|
48
|
+
return full;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
} catch {
|
|
53
|
+
// ignore — best-effort
|
|
54
|
+
}
|
|
55
|
+
return null;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* Load the codex usage extractor (build/adapters/codex/usage.js), mirroring the
|
|
60
|
+
* loadModule build-path fallback in session-loaders. Returns null if the module
|
|
61
|
+
* is absent (e.g. pre-build dev tree) so the hook degrades gracefully.
|
|
62
|
+
*/
|
|
63
|
+
async function loadCodexUsage() {
|
|
64
|
+
try {
|
|
65
|
+
const pluginRoot = join(HOOK_DIR, "..", "..");
|
|
66
|
+
const candidates = [
|
|
67
|
+
join(pluginRoot, "build", "adapters", "codex", "usage.js"),
|
|
68
|
+
];
|
|
69
|
+
for (const p of candidates) {
|
|
70
|
+
if (existsSync(p)) return await import(pathToFileURL(p).href);
|
|
71
|
+
}
|
|
72
|
+
} catch {
|
|
73
|
+
// ignore
|
|
74
|
+
}
|
|
75
|
+
return null;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
try {
|
|
79
|
+
const raw = await readStdin();
|
|
80
|
+
const input = parseStdin(raw);
|
|
81
|
+
const projectDir = getInputProjectDir(input, OPTS);
|
|
82
|
+
|
|
83
|
+
const { SessionDB } = await loadSessionDB();
|
|
84
|
+
const dbPath = getSessionDBPath(OPTS, projectDir);
|
|
85
|
+
const db = new SessionDB({ dbPath });
|
|
86
|
+
const sessionId = getSessionId(input, OPTS);
|
|
87
|
+
|
|
88
|
+
db.ensureSession(sessionId, projectDir);
|
|
89
|
+
const payload = {
|
|
90
|
+
stop_hook_active: input.stop_hook_active ?? false,
|
|
91
|
+
last_assistant_message: typeof input.last_assistant_message === "string"
|
|
92
|
+
? input.last_assistant_message.slice(0, 2000)
|
|
93
|
+
: null,
|
|
94
|
+
};
|
|
95
|
+
db.insertEvent(sessionId, {
|
|
96
|
+
type: "turn_end",
|
|
97
|
+
category: "session",
|
|
98
|
+
data: JSON.stringify(payload),
|
|
99
|
+
priority: 1,
|
|
100
|
+
}, "Stop");
|
|
101
|
+
|
|
102
|
+
// ─── codex MAIN-turn cost capture (cursor-aware, no double-count) ─────────
|
|
103
|
+
// Codex carries no tokens on the hook payload (model only); per-turn usage is
|
|
104
|
+
// persisted to the session rollout JSONL as `event_msg`/`token_count`
|
|
105
|
+
// records. We tail that file, cursor-gated by rollout LINE INDEX, summing
|
|
106
|
+
// ONLY the completed turns NEW since the last Stop. Each step is best-effort
|
|
107
|
+
// — a hook must never block the session, so any read/extract failure here is
|
|
108
|
+
// swallowed without aborting the turn_end write above.
|
|
109
|
+
try {
|
|
110
|
+
const rolloutPath = findCodexRollout(sessionId);
|
|
111
|
+
if (rolloutPath) {
|
|
112
|
+
let rollout = null;
|
|
113
|
+
try { rollout = readFileSync(rolloutPath, "utf-8"); } catch { /* unreadable — skip */ }
|
|
114
|
+
if (rollout) {
|
|
115
|
+
const usageMod = await loadCodexUsage();
|
|
116
|
+
if (usageMod && typeof usageMod.extractCodexUsageSince === "function") {
|
|
117
|
+
const { resolveProjectAttributions } = await loadProjectAttribution();
|
|
118
|
+
const cursor = db.getUsageCursor(sessionId);
|
|
119
|
+
const { events, cursor: next } = usageMod.extractCodexUsageSince(rollout, cursor);
|
|
120
|
+
if (events.length > 0) {
|
|
121
|
+
// attributeAndInsertEvents both INSERTS locally and FORWARDS to the
|
|
122
|
+
// platform (gated on ~/.context-mode/platform.json).
|
|
123
|
+
attributeAndInsertEvents(db, sessionId, events, input, projectDir, "Stop", resolveProjectAttributions);
|
|
124
|
+
}
|
|
125
|
+
if (next) db.setUsageCursor(sessionId, next);
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
} catch {
|
|
130
|
+
// Best-effort cost capture — never block the session on failure.
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
db.close();
|
|
134
|
+
} catch {
|
|
135
|
+
// Codex hooks must not block the session.
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
process.stdout.write("{}\n");
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import "./platform.mjs";
|
|
3
|
+
import "../suppress-stderr.mjs";
|
|
4
|
+
import "../ensure-deps.mjs";
|
|
5
|
+
/**
|
|
6
|
+
* Codex CLI UserPromptSubmit hook — capture user prompts for continuity.
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
import { readStdin, parseStdin, getSessionId, getSessionDBPath, getInputProjectDir, CODEX_OPTS } from "../session-helpers.mjs";
|
|
10
|
+
import { createSessionLoaders, attributeAndInsertEvents } from "../session-loaders.mjs";
|
|
11
|
+
import { dirname } from "node:path";
|
|
12
|
+
import { fileURLToPath } from "node:url";
|
|
13
|
+
|
|
14
|
+
const HOOK_DIR = dirname(fileURLToPath(import.meta.url));
|
|
15
|
+
const { loadSessionDB, loadExtract, loadProjectAttribution } = createSessionLoaders(HOOK_DIR);
|
|
16
|
+
const OPTS = CODEX_OPTS;
|
|
17
|
+
|
|
18
|
+
try {
|
|
19
|
+
const raw = await readStdin();
|
|
20
|
+
const input = parseStdin(raw);
|
|
21
|
+
const projectDir = getInputProjectDir(input, OPTS);
|
|
22
|
+
|
|
23
|
+
const prompt = input.prompt ?? input.message ?? "";
|
|
24
|
+
const trimmed = (prompt || "").trim();
|
|
25
|
+
|
|
26
|
+
const isSystemMessage = trimmed.startsWith("<task-notification>")
|
|
27
|
+
|| trimmed.startsWith("<system-reminder>")
|
|
28
|
+
|| trimmed.startsWith("<context_guidance>")
|
|
29
|
+
|| trimmed.startsWith("<tool-result>");
|
|
30
|
+
|
|
31
|
+
if (trimmed.length > 0 && !isSystemMessage) {
|
|
32
|
+
const { SessionDB } = await loadSessionDB();
|
|
33
|
+
const { extractUserEvents } = await loadExtract();
|
|
34
|
+
const { resolveProjectAttributions } = await loadProjectAttribution();
|
|
35
|
+
const dbPath = getSessionDBPath(OPTS, projectDir);
|
|
36
|
+
const db = new SessionDB({ dbPath });
|
|
37
|
+
const sessionId = getSessionId(input, OPTS);
|
|
38
|
+
|
|
39
|
+
db.ensureSession(sessionId, projectDir);
|
|
40
|
+
|
|
41
|
+
const promptEvent = {
|
|
42
|
+
type: "user_prompt",
|
|
43
|
+
category: "user-prompt",
|
|
44
|
+
data: prompt,
|
|
45
|
+
priority: 1,
|
|
46
|
+
};
|
|
47
|
+
const promptAttributions = attributeAndInsertEvents(
|
|
48
|
+
db, sessionId, [promptEvent], input, projectDir, "UserPromptSubmit", resolveProjectAttributions,
|
|
49
|
+
);
|
|
50
|
+
|
|
51
|
+
const userEvents = extractUserEvents(trimmed);
|
|
52
|
+
const savedLastKnown = promptAttributions[0]?.projectDir || null;
|
|
53
|
+
const sessionStats = db.getSessionStats(sessionId);
|
|
54
|
+
const lastKnownProjectDir = typeof db.getLatestAttributedProjectDir === "function"
|
|
55
|
+
? db.getLatestAttributedProjectDir(sessionId)
|
|
56
|
+
: null;
|
|
57
|
+
const userAttributions = resolveProjectAttributions(userEvents, {
|
|
58
|
+
sessionOriginDir: sessionStats?.project_dir || projectDir,
|
|
59
|
+
inputProjectDir: projectDir,
|
|
60
|
+
workspaceRoots: Array.isArray(input.workspace_roots) ? input.workspace_roots : [],
|
|
61
|
+
lastKnownProjectDir: savedLastKnown || lastKnownProjectDir,
|
|
62
|
+
});
|
|
63
|
+
for (let i = 0; i < userEvents.length; i++) {
|
|
64
|
+
db.insertEvent(sessionId, userEvents[i], "UserPromptSubmit", userAttributions[i]);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
db.close();
|
|
68
|
+
}
|
|
69
|
+
} catch {
|
|
70
|
+
// Codex hooks must not block the session.
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
process.stdout.write(JSON.stringify({
|
|
74
|
+
hookSpecificOutput: { hookEventName: "UserPromptSubmit", additionalContext: "" },
|
|
75
|
+
}) + "\n");
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import "../suppress-stderr.mjs";
|
|
3
|
+
import "../ensure-deps.mjs";
|
|
4
|
+
|
|
5
|
+
import { createSessionLoaders, attributeAndInsertEvents } from "../session-loaders.mjs";
|
|
6
|
+
import {
|
|
7
|
+
readStdin,
|
|
8
|
+
parseStdin,
|
|
9
|
+
getSessionId,
|
|
10
|
+
getSessionDBPath,
|
|
11
|
+
getInputProjectDir,
|
|
12
|
+
COPILOT_OPTS,
|
|
13
|
+
resolveConfigDir,
|
|
14
|
+
} from "../session-helpers.mjs";
|
|
15
|
+
import { appendFileSync, mkdirSync } from "node:fs";
|
|
16
|
+
import { join, dirname } from "node:path";
|
|
17
|
+
import { fileURLToPath } from "node:url";
|
|
18
|
+
|
|
19
|
+
const HOOK_DIR = dirname(fileURLToPath(import.meta.url));
|
|
20
|
+
const { loadSessionDB, loadExtract, loadProjectAttribution } = createSessionLoaders(HOOK_DIR);
|
|
21
|
+
const OPTS = COPILOT_OPTS;
|
|
22
|
+
// Diagnostic log is opt-in via CONTEXT_MODE_DEBUG. PostToolUse fires on every
|
|
23
|
+
// tool call, so an unconditional append-only log grows without bound under the
|
|
24
|
+
// user's config dir. Gate it behind the env flag — same pattern as the kimi
|
|
25
|
+
// hooks — so contributors can still capture it on demand. See #787 review.
|
|
26
|
+
const DEBUG_LOG = process.env.CONTEXT_MODE_DEBUG
|
|
27
|
+
? join(resolveConfigDir(OPTS), "context-mode", "posttooluse-debug.log")
|
|
28
|
+
: null;
|
|
29
|
+
|
|
30
|
+
function logDebug(line) {
|
|
31
|
+
if (!DEBUG_LOG) return;
|
|
32
|
+
try {
|
|
33
|
+
mkdirSync(dirname(DEBUG_LOG), { recursive: true });
|
|
34
|
+
appendFileSync(DEBUG_LOG, line);
|
|
35
|
+
} catch {
|
|
36
|
+
/* silent */
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
try {
|
|
41
|
+
const raw = await readStdin();
|
|
42
|
+
const input = parseStdin(raw);
|
|
43
|
+
const projectDir = getInputProjectDir(input, OPTS);
|
|
44
|
+
const toolName = input.tool_name ?? input.toolName ?? "";
|
|
45
|
+
const toolInput = input.tool_input ?? input.toolArgs ?? {};
|
|
46
|
+
const toolResponse =
|
|
47
|
+
input.tool_result?.text_result_for_llm ??
|
|
48
|
+
input.toolResult?.textResultForLlm ??
|
|
49
|
+
input.tool_response ??
|
|
50
|
+
input.toolResult;
|
|
51
|
+
|
|
52
|
+
logDebug(`[${new Date().toISOString()}] CALL: ${toolName}\n`);
|
|
53
|
+
|
|
54
|
+
const { extractEvents } = await loadExtract();
|
|
55
|
+
const { resolveProjectAttributions } = await loadProjectAttribution();
|
|
56
|
+
const { SessionDB } = await loadSessionDB();
|
|
57
|
+
|
|
58
|
+
const dbPath = getSessionDBPath(OPTS, projectDir);
|
|
59
|
+
const db = new SessionDB({ dbPath });
|
|
60
|
+
const sessionId = getSessionId(input, OPTS);
|
|
61
|
+
|
|
62
|
+
db.ensureSession(sessionId, projectDir);
|
|
63
|
+
|
|
64
|
+
const events = extractEvents({
|
|
65
|
+
tool_name: toolName,
|
|
66
|
+
tool_input: toolInput,
|
|
67
|
+
tool_response: typeof toolResponse === "string"
|
|
68
|
+
? toolResponse
|
|
69
|
+
: JSON.stringify(toolResponse ?? ""),
|
|
70
|
+
tool_output: input.tool_output,
|
|
71
|
+
});
|
|
72
|
+
|
|
73
|
+
attributeAndInsertEvents(db, sessionId, events, input, projectDir, "PostToolUse", resolveProjectAttributions);
|
|
74
|
+
|
|
75
|
+
logDebug(`[${new Date().toISOString()}] OK: ${toolName} -> ${events.length} events\n`);
|
|
76
|
+
db.close();
|
|
77
|
+
} catch (err) {
|
|
78
|
+
logDebug(`[${new Date().toISOString()}] ERR: ${err?.message || err}\n`);
|
|
79
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import "../suppress-stderr.mjs";
|
|
3
|
+
import "../ensure-deps.mjs";
|
|
4
|
+
|
|
5
|
+
import { createSessionLoaders } from "../session-loaders.mjs";
|
|
6
|
+
import {
|
|
7
|
+
readStdin,
|
|
8
|
+
parseStdin,
|
|
9
|
+
getSessionId,
|
|
10
|
+
getSessionDBPath,
|
|
11
|
+
getInputProjectDir,
|
|
12
|
+
COPILOT_OPTS,
|
|
13
|
+
resolveConfigDir,
|
|
14
|
+
} from "../session-helpers.mjs";
|
|
15
|
+
import { appendFileSync, mkdirSync } from "node:fs";
|
|
16
|
+
import { join, dirname } from "node:path";
|
|
17
|
+
import { fileURLToPath } from "node:url";
|
|
18
|
+
|
|
19
|
+
const HOOK_DIR = dirname(fileURLToPath(import.meta.url));
|
|
20
|
+
const { loadSessionDB, loadSnapshot } = createSessionLoaders(HOOK_DIR);
|
|
21
|
+
const OPTS = COPILOT_OPTS;
|
|
22
|
+
// Diagnostic log is opt-in via CONTEXT_MODE_DEBUG (same pattern as the kimi
|
|
23
|
+
// hooks): keep the error telemetry available to contributors without writing an
|
|
24
|
+
// append-only file to every user's config dir on compaction. See #787 review.
|
|
25
|
+
const DEBUG_LOG = process.env.CONTEXT_MODE_DEBUG
|
|
26
|
+
? join(resolveConfigDir(OPTS), "context-mode", "precompact-debug.log")
|
|
27
|
+
: null;
|
|
28
|
+
|
|
29
|
+
function logDebug(line) {
|
|
30
|
+
if (!DEBUG_LOG) return;
|
|
31
|
+
try {
|
|
32
|
+
mkdirSync(dirname(DEBUG_LOG), { recursive: true });
|
|
33
|
+
appendFileSync(DEBUG_LOG, line);
|
|
34
|
+
} catch {
|
|
35
|
+
/* silent */
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
try {
|
|
40
|
+
const raw = await readStdin();
|
|
41
|
+
const input = parseStdin(raw);
|
|
42
|
+
const projectDir = getInputProjectDir(input, OPTS);
|
|
43
|
+
|
|
44
|
+
const { buildResumeSnapshot } = await loadSnapshot();
|
|
45
|
+
const { SessionDB } = await loadSessionDB();
|
|
46
|
+
|
|
47
|
+
const dbPath = getSessionDBPath(OPTS, projectDir);
|
|
48
|
+
const db = new SessionDB({ dbPath });
|
|
49
|
+
const sessionId = getSessionId(input, OPTS);
|
|
50
|
+
|
|
51
|
+
const events = db.getEvents(sessionId);
|
|
52
|
+
|
|
53
|
+
if (events.length > 0) {
|
|
54
|
+
const stats = db.getSessionStats(sessionId);
|
|
55
|
+
const snapshot = buildResumeSnapshot(events, {
|
|
56
|
+
compactCount: (stats?.compact_count ?? 0) + 1,
|
|
57
|
+
});
|
|
58
|
+
|
|
59
|
+
db.upsertResume(sessionId, snapshot, events.length);
|
|
60
|
+
db.incrementCompactCount(sessionId);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
db.close();
|
|
64
|
+
} catch (err) {
|
|
65
|
+
logDebug(`[${new Date().toISOString()}] ${err?.message || err}\n`);
|
|
66
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import "../suppress-stderr.mjs";
|
|
3
|
+
|
|
4
|
+
import { dirname, resolve } from "node:path";
|
|
5
|
+
import { fileURLToPath } from "node:url";
|
|
6
|
+
import { readStdin } from "../core/stdin.mjs";
|
|
7
|
+
import { routePreToolUse, initSecurity } from "../core/routing.mjs";
|
|
8
|
+
import { formatDecision } from "../core/formatters.mjs";
|
|
9
|
+
import { parseStdin, getSessionId, getInputProjectDir, COPILOT_OPTS } from "../session-helpers.mjs";
|
|
10
|
+
|
|
11
|
+
const __hookDir = dirname(fileURLToPath(import.meta.url));
|
|
12
|
+
|
|
13
|
+
try {
|
|
14
|
+
await initSecurity(resolve(__hookDir, "..", "..", "build"));
|
|
15
|
+
|
|
16
|
+
const raw = await readStdin();
|
|
17
|
+
const input = parseStdin(raw);
|
|
18
|
+
const tool = input.tool_name ?? input.toolName ?? "";
|
|
19
|
+
const toolInput = input.tool_input ?? input.toolArgs ?? {};
|
|
20
|
+
const projectDir = getInputProjectDir(input, COPILOT_OPTS);
|
|
21
|
+
|
|
22
|
+
const decision = routePreToolUse(
|
|
23
|
+
tool,
|
|
24
|
+
toolInput,
|
|
25
|
+
projectDir,
|
|
26
|
+
"copilot-cli",
|
|
27
|
+
getSessionId(input, COPILOT_OPTS),
|
|
28
|
+
);
|
|
29
|
+
const response = formatDecision("copilot-cli", decision);
|
|
30
|
+
if (response !== null) {
|
|
31
|
+
process.stdout.write(JSON.stringify(response) + "\n");
|
|
32
|
+
}
|
|
33
|
+
} catch {
|
|
34
|
+
// Fail OPEN. A throw here (better-sqlite3 ABI skew, a routing exception, a
|
|
35
|
+
// malformed-stdin parse error) must NOT exit non-zero with empty stdout:
|
|
36
|
+
// GitHub Copilot CLI 1.0.59 treats a failed PreToolUse hook as "Denied by
|
|
37
|
+
// preToolUse hook (hook errored)" and blocks EVERY tool, bricking the agent.
|
|
38
|
+
// A legitimate veto is a normal stdout write + normal return (never a throw),
|
|
39
|
+
// so it is unaffected by this catch. Empty stdout + exit 0 => host ALLOWS the
|
|
40
|
+
// tool; context-mode routing is skipped for this one call, agent keeps working.
|
|
41
|
+
}
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import "../suppress-stderr.mjs";
|
|
3
|
+
import "../ensure-deps.mjs";
|
|
4
|
+
|
|
5
|
+
import { createSessionLoaders } from "../session-loaders.mjs";
|
|
6
|
+
import { createRoutingBlock } from "../routing-block.mjs";
|
|
7
|
+
import { createToolNamer } from "../core/tool-naming.mjs";
|
|
8
|
+
import { writeSessionEventsFile, buildSessionDirective, getSessionEvents } from "../session-directive.mjs";
|
|
9
|
+
import {
|
|
10
|
+
readStdin,
|
|
11
|
+
parseStdin,
|
|
12
|
+
getSessionId,
|
|
13
|
+
getSessionDBPath,
|
|
14
|
+
getSessionEventsPath,
|
|
15
|
+
getCleanupFlagPath,
|
|
16
|
+
getInputProjectDir,
|
|
17
|
+
COPILOT_OPTS,
|
|
18
|
+
resolveConfigDir,
|
|
19
|
+
} from "../session-helpers.mjs";
|
|
20
|
+
import { join } from "node:path";
|
|
21
|
+
import { readFileSync, unlinkSync } from "node:fs";
|
|
22
|
+
import { fileURLToPath } from "node:url";
|
|
23
|
+
|
|
24
|
+
const toolNamer = createToolNamer("copilot-cli");
|
|
25
|
+
const ROUTING_BLOCK = createRoutingBlock(toolNamer);
|
|
26
|
+
const HOOK_DIR = fileURLToPath(new URL(".", import.meta.url));
|
|
27
|
+
const { loadSessionDB } = createSessionLoaders(HOOK_DIR);
|
|
28
|
+
const OPTS = COPILOT_OPTS;
|
|
29
|
+
|
|
30
|
+
let additionalContext = ROUTING_BLOCK;
|
|
31
|
+
|
|
32
|
+
try {
|
|
33
|
+
const raw = await readStdin();
|
|
34
|
+
const input = parseStdin(raw);
|
|
35
|
+
const source = input.source ?? "startup";
|
|
36
|
+
const projectDir = getInputProjectDir(input, OPTS);
|
|
37
|
+
|
|
38
|
+
if (source === "compact") {
|
|
39
|
+
const { SessionDB } = await loadSessionDB();
|
|
40
|
+
const dbPath = getSessionDBPath(OPTS, projectDir);
|
|
41
|
+
const db = new SessionDB({ dbPath });
|
|
42
|
+
const sessionId = getSessionId(input, OPTS);
|
|
43
|
+
const resume = db.getResume(sessionId);
|
|
44
|
+
|
|
45
|
+
if (resume && !resume.consumed) {
|
|
46
|
+
db.markResumeConsumed(sessionId);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
const events = getSessionEvents(db, sessionId);
|
|
50
|
+
if (events.length > 0) {
|
|
51
|
+
const eventMeta = writeSessionEventsFile(events, getSessionEventsPath(OPTS, projectDir));
|
|
52
|
+
additionalContext += buildSessionDirective("compact", eventMeta, toolNamer);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
db.close();
|
|
56
|
+
} else if (source === "resume") {
|
|
57
|
+
try { unlinkSync(getCleanupFlagPath(OPTS, projectDir)); } catch { /* no flag */ }
|
|
58
|
+
|
|
59
|
+
const { SessionDB } = await loadSessionDB();
|
|
60
|
+
const dbPath = getSessionDBPath(OPTS, projectDir);
|
|
61
|
+
const db = new SessionDB({ dbPath });
|
|
62
|
+
|
|
63
|
+
const sessionId = getSessionId(input, OPTS);
|
|
64
|
+
const events = sessionId ? getSessionEvents(db, sessionId) : [];
|
|
65
|
+
if (events.length > 0) {
|
|
66
|
+
const eventMeta = writeSessionEventsFile(events, getSessionEventsPath(OPTS, projectDir));
|
|
67
|
+
additionalContext += buildSessionDirective("resume", eventMeta, toolNamer);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
db.close();
|
|
71
|
+
} else if (source === "startup" || source === "new") {
|
|
72
|
+
const { SessionDB } = await loadSessionDB();
|
|
73
|
+
const dbPath = getSessionDBPath(OPTS, projectDir);
|
|
74
|
+
const db = new SessionDB({ dbPath });
|
|
75
|
+
try { unlinkSync(getSessionEventsPath(OPTS, projectDir)); } catch { /* no stale file */ }
|
|
76
|
+
|
|
77
|
+
db.cleanupOldSessions(7);
|
|
78
|
+
db.db.exec(`DELETE FROM session_events WHERE session_id NOT IN (SELECT session_id FROM session_meta)`);
|
|
79
|
+
|
|
80
|
+
const sessionId = getSessionId(input, OPTS);
|
|
81
|
+
db.ensureSession(sessionId, projectDir);
|
|
82
|
+
|
|
83
|
+
const ruleFilePaths = [
|
|
84
|
+
join(projectDir, ".github", "copilot-instructions.md"),
|
|
85
|
+
join(projectDir, "AGENTS.md"),
|
|
86
|
+
];
|
|
87
|
+
for (const p of ruleFilePaths) {
|
|
88
|
+
try {
|
|
89
|
+
const content = readFileSync(p, "utf-8");
|
|
90
|
+
if (content.trim()) {
|
|
91
|
+
db.insertEvent(sessionId, { type: "rule", category: "rule", data: p, priority: 1 });
|
|
92
|
+
db.insertEvent(sessionId, { type: "rule_content", category: "rule", data: content, priority: 1 });
|
|
93
|
+
}
|
|
94
|
+
} catch {
|
|
95
|
+
/* file does not exist - skip */
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
db.close();
|
|
100
|
+
}
|
|
101
|
+
} catch (err) {
|
|
102
|
+
// Error telemetry is opt-in via CONTEXT_MODE_DEBUG (same pattern as the kimi
|
|
103
|
+
// hooks) so we don't write an append-only log to every user's config dir on a
|
|
104
|
+
// transient SessionStart error. See #787 review.
|
|
105
|
+
if (process.env.CONTEXT_MODE_DEBUG) {
|
|
106
|
+
try {
|
|
107
|
+
const { appendFileSync, mkdirSync } = await import("node:fs");
|
|
108
|
+
const { join: pjoin, dirname: pdirname } = await import("node:path");
|
|
109
|
+
const logPath = pjoin(resolveConfigDir(OPTS), "context-mode", "sessionstart-debug.log");
|
|
110
|
+
mkdirSync(pdirname(logPath), { recursive: true });
|
|
111
|
+
appendFileSync(
|
|
112
|
+
logPath,
|
|
113
|
+
`[${new Date().toISOString()}] ${err?.message || err}\n${err?.stack || ""}\n`,
|
|
114
|
+
);
|
|
115
|
+
} catch {
|
|
116
|
+
/* ignore logging failure */
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
console.log(JSON.stringify({ additionalContext }));
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import "../suppress-stderr.mjs";
|
|
3
|
+
import "../ensure-deps.mjs";
|
|
4
|
+
/**
|
|
5
|
+
* GitHub Copilot CLI Stop hook — record session-end state for continuity.
|
|
6
|
+
* Capture-only (emits no output). Parsed via the shared session helpers with
|
|
7
|
+
* COPILOT_OPTS.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
import {
|
|
11
|
+
readStdin,
|
|
12
|
+
parseStdin,
|
|
13
|
+
getSessionId,
|
|
14
|
+
getSessionDBPath,
|
|
15
|
+
getInputProjectDir,
|
|
16
|
+
COPILOT_OPTS,
|
|
17
|
+
} from "../session-helpers.mjs";
|
|
18
|
+
import { createSessionLoaders } from "../session-loaders.mjs";
|
|
19
|
+
import { dirname } from "node:path";
|
|
20
|
+
import { fileURLToPath } from "node:url";
|
|
21
|
+
|
|
22
|
+
const HOOK_DIR = dirname(fileURLToPath(import.meta.url));
|
|
23
|
+
const { loadSessionDB } = createSessionLoaders(HOOK_DIR);
|
|
24
|
+
const OPTS = COPILOT_OPTS;
|
|
25
|
+
|
|
26
|
+
try {
|
|
27
|
+
const raw = await readStdin();
|
|
28
|
+
const input = parseStdin(raw);
|
|
29
|
+
const projectDir = getInputProjectDir(input, OPTS);
|
|
30
|
+
|
|
31
|
+
const { SessionDB } = await loadSessionDB();
|
|
32
|
+
const dbPath = getSessionDBPath(OPTS, projectDir);
|
|
33
|
+
const db = new SessionDB({ dbPath });
|
|
34
|
+
const sessionId = getSessionId(input, OPTS);
|
|
35
|
+
|
|
36
|
+
db.ensureSession(sessionId, projectDir);
|
|
37
|
+
// insertEvent hashes event.data, so type/category/priority/data are all
|
|
38
|
+
// required — a session_end with only `type` throws on createHash(undefined)
|
|
39
|
+
// and is silently dropped (the latent codex/stop.mjs bug). Provide real
|
|
40
|
+
// fields so the session-end row actually persists.
|
|
41
|
+
const lastMessage =
|
|
42
|
+
typeof input.last_assistant_message === "string"
|
|
43
|
+
? input.last_assistant_message.slice(0, 2000)
|
|
44
|
+
: "";
|
|
45
|
+
db.insertEvent(
|
|
46
|
+
sessionId,
|
|
47
|
+
{
|
|
48
|
+
type: "session_end",
|
|
49
|
+
category: "session",
|
|
50
|
+
priority: 1,
|
|
51
|
+
data: lastMessage || "session ended",
|
|
52
|
+
},
|
|
53
|
+
"Stop",
|
|
54
|
+
);
|
|
55
|
+
|
|
56
|
+
db.close();
|
|
57
|
+
} catch {
|
|
58
|
+
/* a hook must never fail the host */
|
|
59
|
+
}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import "../suppress-stderr.mjs";
|
|
3
|
+
import "../ensure-deps.mjs";
|
|
4
|
+
/**
|
|
5
|
+
* GitHub Copilot CLI UserPromptSubmit hook — capture genuine user prompts for
|
|
6
|
+
* session continuity. Capture-only (emits no output; Copilot CLI ignores hook
|
|
7
|
+
* stdout in auto-run mode). Copilot fires this with a snake_case payload, parsed
|
|
8
|
+
* via the shared session helpers with COPILOT_OPTS.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
import {
|
|
12
|
+
readStdin,
|
|
13
|
+
parseStdin,
|
|
14
|
+
getSessionId,
|
|
15
|
+
getSessionDBPath,
|
|
16
|
+
getInputProjectDir,
|
|
17
|
+
COPILOT_OPTS,
|
|
18
|
+
} from "../session-helpers.mjs";
|
|
19
|
+
import { createSessionLoaders, attributeAndInsertEvents } from "../session-loaders.mjs";
|
|
20
|
+
import { dirname } from "node:path";
|
|
21
|
+
import { fileURLToPath } from "node:url";
|
|
22
|
+
|
|
23
|
+
const HOOK_DIR = dirname(fileURLToPath(import.meta.url));
|
|
24
|
+
const { loadSessionDB, loadExtract, loadProjectAttribution } = createSessionLoaders(HOOK_DIR);
|
|
25
|
+
const OPTS = COPILOT_OPTS;
|
|
26
|
+
|
|
27
|
+
try {
|
|
28
|
+
const raw = await readStdin();
|
|
29
|
+
const input = parseStdin(raw);
|
|
30
|
+
const projectDir = getInputProjectDir(input, OPTS);
|
|
31
|
+
|
|
32
|
+
const prompt = input.prompt ?? input.user_prompt ?? input.message ?? "";
|
|
33
|
+
const trimmed = (typeof prompt === "string" ? prompt : "").trim();
|
|
34
|
+
|
|
35
|
+
// Skip host-injected system/tool envelopes — only capture genuine user input.
|
|
36
|
+
const isSystemMessage =
|
|
37
|
+
trimmed.startsWith("<task-notification>") ||
|
|
38
|
+
trimmed.startsWith("<system-reminder>") ||
|
|
39
|
+
trimmed.startsWith("<context_guidance>") ||
|
|
40
|
+
trimmed.startsWith("<tool-result>");
|
|
41
|
+
|
|
42
|
+
if (trimmed.length > 0 && !isSystemMessage) {
|
|
43
|
+
const { SessionDB } = await loadSessionDB();
|
|
44
|
+
const { extractUserEvents } = await loadExtract();
|
|
45
|
+
const { resolveProjectAttributions } = await loadProjectAttribution();
|
|
46
|
+
const dbPath = getSessionDBPath(OPTS, projectDir);
|
|
47
|
+
const db = new SessionDB({ dbPath });
|
|
48
|
+
const sessionId = getSessionId(input, OPTS);
|
|
49
|
+
|
|
50
|
+
db.ensureSession(sessionId, projectDir);
|
|
51
|
+
|
|
52
|
+
const promptEvent = { type: "user_prompt", category: "user-prompt", data: prompt, priority: 1 };
|
|
53
|
+
const promptAttributions = attributeAndInsertEvents(
|
|
54
|
+
db, sessionId, [promptEvent], input, projectDir, "UserPromptSubmit", resolveProjectAttributions,
|
|
55
|
+
);
|
|
56
|
+
|
|
57
|
+
const userEvents = extractUserEvents(trimmed);
|
|
58
|
+
const sessionStats = db.getSessionStats?.(sessionId);
|
|
59
|
+
const lastKnownProjectDir =
|
|
60
|
+
typeof db.getLatestAttributedProjectDir === "function"
|
|
61
|
+
? db.getLatestAttributedProjectDir(sessionId)
|
|
62
|
+
: null;
|
|
63
|
+
const userAttributions = resolveProjectAttributions(userEvents, {
|
|
64
|
+
sessionOriginDir: sessionStats?.project_dir || projectDir,
|
|
65
|
+
inputProjectDir: projectDir,
|
|
66
|
+
workspaceRoots: Array.isArray(input.workspace_roots) ? input.workspace_roots : [],
|
|
67
|
+
lastKnownProjectDir: promptAttributions[0]?.projectDir || lastKnownProjectDir,
|
|
68
|
+
});
|
|
69
|
+
for (let i = 0; i < userEvents.length; i++) {
|
|
70
|
+
db.insertEvent(sessionId, userEvents[i], "UserPromptSubmit", userAttributions[i]);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
db.close();
|
|
74
|
+
}
|
|
75
|
+
} catch {
|
|
76
|
+
/* a hook must never fail the host */
|
|
77
|
+
}
|