@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,99 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import "../suppress-stderr.mjs";
|
|
3
|
+
import "../ensure-deps.mjs";
|
|
4
|
+
/**
|
|
5
|
+
* Gemini CLI BeforeAgent hook — UserPromptSubmit equivalent.
|
|
6
|
+
*
|
|
7
|
+
* Captures every user prompt so the LLM can resume from the exact point
|
|
8
|
+
* the user left off after compact / resume. Mirrors hooks/userpromptsubmit.mjs
|
|
9
|
+
* but reads `input.prompt` (Gemini wire shape, types.ts:547-549) and emits
|
|
10
|
+
* `hookSpecificOutput.hookEventName: "BeforeAgent"` (types.ts:554-559) so
|
|
11
|
+
* Gemini's hookRunner appends additionalContext to the prompt
|
|
12
|
+
* (hookRunner.ts:183-197).
|
|
13
|
+
*
|
|
14
|
+
* Must be fast (<10ms). Single SQLite write.
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
import {
|
|
18
|
+
readStdin,
|
|
19
|
+
parseStdin,
|
|
20
|
+
getSessionId,
|
|
21
|
+
getSessionDBPath,
|
|
22
|
+
getInputProjectDir,
|
|
23
|
+
GEMINI_OPTS,
|
|
24
|
+
} from "../session-helpers.mjs";
|
|
25
|
+
import { createSessionLoaders, attributeAndInsertEvents } from "../session-loaders.mjs";
|
|
26
|
+
import { dirname } from "node:path";
|
|
27
|
+
import { fileURLToPath } from "node:url";
|
|
28
|
+
|
|
29
|
+
const HOOK_DIR = dirname(fileURLToPath(import.meta.url));
|
|
30
|
+
const { loadSessionDB, loadExtract, loadProjectAttribution } = createSessionLoaders(HOOK_DIR);
|
|
31
|
+
const OPTS = GEMINI_OPTS;
|
|
32
|
+
|
|
33
|
+
try {
|
|
34
|
+
const raw = await readStdin();
|
|
35
|
+
const input = parseStdin(raw);
|
|
36
|
+
const projectDir = getInputProjectDir(input, OPTS);
|
|
37
|
+
|
|
38
|
+
const prompt = input.prompt ?? input.message ?? "";
|
|
39
|
+
const trimmed = (prompt || "").trim();
|
|
40
|
+
|
|
41
|
+
// Skip system-generated messages — only capture genuine user prompts.
|
|
42
|
+
const isSystemMessage = trimmed.startsWith("<task-notification>")
|
|
43
|
+
|| trimmed.startsWith("<system-reminder>")
|
|
44
|
+
|| trimmed.startsWith("<context_guidance>")
|
|
45
|
+
|| trimmed.startsWith("<tool-result>");
|
|
46
|
+
|
|
47
|
+
if (trimmed.length > 0 && !isSystemMessage) {
|
|
48
|
+
const { SessionDB } = await loadSessionDB();
|
|
49
|
+
const { extractUserEvents } = await loadExtract();
|
|
50
|
+
const { resolveProjectAttributions } = await loadProjectAttribution();
|
|
51
|
+
const dbPath = getSessionDBPath(OPTS, projectDir);
|
|
52
|
+
const db = new SessionDB({ dbPath });
|
|
53
|
+
const sessionId = getSessionId(input, OPTS);
|
|
54
|
+
|
|
55
|
+
db.ensureSession(sessionId, projectDir);
|
|
56
|
+
|
|
57
|
+
// 1. Always save the raw prompt.
|
|
58
|
+
const promptEvent = {
|
|
59
|
+
type: "user_prompt",
|
|
60
|
+
category: "user-prompt",
|
|
61
|
+
data: prompt,
|
|
62
|
+
priority: 1,
|
|
63
|
+
};
|
|
64
|
+
const promptAttributions = attributeAndInsertEvents(
|
|
65
|
+
db, sessionId, [promptEvent], input, projectDir, "BeforeAgent", resolveProjectAttributions,
|
|
66
|
+
);
|
|
67
|
+
|
|
68
|
+
// 2. Extract decision/role/intent/data from user message.
|
|
69
|
+
const userEvents = extractUserEvents(trimmed);
|
|
70
|
+
const savedLastKnown = promptAttributions[0]?.projectDir || null;
|
|
71
|
+
const sessionStats = db.getSessionStats(sessionId);
|
|
72
|
+
const lastKnownProjectDir = typeof db.getLatestAttributedProjectDir === "function"
|
|
73
|
+
? db.getLatestAttributedProjectDir(sessionId)
|
|
74
|
+
: null;
|
|
75
|
+
const userAttributions = resolveProjectAttributions(userEvents, {
|
|
76
|
+
sessionOriginDir: sessionStats?.project_dir || projectDir,
|
|
77
|
+
inputProjectDir: projectDir,
|
|
78
|
+
workspaceRoots: Array.isArray(input.workspace_roots) ? input.workspace_roots : [],
|
|
79
|
+
lastKnownProjectDir: savedLastKnown || lastKnownProjectDir,
|
|
80
|
+
});
|
|
81
|
+
for (let i = 0; i < userEvents.length; i++) {
|
|
82
|
+
db.insertEvent(sessionId, userEvents[i], "BeforeAgent", userAttributions[i]);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
db.close();
|
|
86
|
+
}
|
|
87
|
+
} catch {
|
|
88
|
+
// BeforeAgent must never block the session — silent fallback.
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
// Emit empty additionalContext so Gemini's hookRunner treats the response as
|
|
92
|
+
// metadata (no prompt mutation). Matches the SessionStart hook's structured-
|
|
93
|
+
// output convention (sessionstart.mjs:130-135).
|
|
94
|
+
console.log(JSON.stringify({
|
|
95
|
+
hookSpecificOutput: {
|
|
96
|
+
hookEventName: "BeforeAgent",
|
|
97
|
+
additionalContext: "",
|
|
98
|
+
},
|
|
99
|
+
}));
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import "../suppress-stderr.mjs";
|
|
3
|
+
/**
|
|
4
|
+
* Gemini CLI BeforeTool hook for context-mode
|
|
5
|
+
* Thin wrapper — uses shared routing core, no self-heal, no Claude Code-specific logic.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
import { dirname, resolve } from "node:path";
|
|
9
|
+
import { fileURLToPath } from "node:url";
|
|
10
|
+
import { readStdin } from "../core/stdin.mjs";
|
|
11
|
+
import { routePreToolUse, initSecurity } from "../core/routing.mjs";
|
|
12
|
+
import { formatDecision } from "../core/formatters.mjs";
|
|
13
|
+
import { parseStdin, getSessionId, GEMINI_OPTS } from "../session-helpers.mjs";
|
|
14
|
+
|
|
15
|
+
const __hookDir = dirname(fileURLToPath(import.meta.url));
|
|
16
|
+
await initSecurity(resolve(__hookDir, "..", "..", "build"));
|
|
17
|
+
|
|
18
|
+
const raw = await readStdin();
|
|
19
|
+
const input = parseStdin(raw);
|
|
20
|
+
const tool = input.tool_name ?? "";
|
|
21
|
+
const toolInput = input.tool_input ?? {};
|
|
22
|
+
|
|
23
|
+
const decision = routePreToolUse(tool, toolInput, process.env.GEMINI_PROJECT_DIR || process.env.CLAUDE_PROJECT_DIR, "gemini-cli", getSessionId(input, GEMINI_OPTS));
|
|
24
|
+
const response = formatDecision("gemini-cli", decision);
|
|
25
|
+
if (response !== null) {
|
|
26
|
+
process.stdout.write(JSON.stringify(response) + "\n");
|
|
27
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import "../suppress-stderr.mjs";
|
|
3
|
+
import "../ensure-deps.mjs";
|
|
4
|
+
/**
|
|
5
|
+
* Gemini CLI PreCompress hook — snapshot generation.
|
|
6
|
+
*
|
|
7
|
+
* Triggered when Gemini CLI is about to compress the conversation.
|
|
8
|
+
* Reads all captured session events, builds a priority-sorted resume
|
|
9
|
+
* snapshot (<2KB XML), and stores it for injection after compress.
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
import { readStdin, parseStdin, getSessionId, getSessionDBPath, getInputProjectDir, GEMINI_OPTS } from "../session-helpers.mjs";
|
|
13
|
+
import { createSessionLoaders } from "../session-loaders.mjs";
|
|
14
|
+
import { appendFileSync } from "node:fs";
|
|
15
|
+
import { join, dirname } from "node:path";
|
|
16
|
+
import { homedir } from "node:os";
|
|
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 = GEMINI_OPTS;
|
|
22
|
+
const DEBUG_LOG = join(homedir(), ".gemini", "context-mode", "precompress-debug.log");
|
|
23
|
+
|
|
24
|
+
try {
|
|
25
|
+
const raw = await readStdin();
|
|
26
|
+
const input = parseStdin(raw);
|
|
27
|
+
const projectDir = getInputProjectDir(input, OPTS);
|
|
28
|
+
|
|
29
|
+
const { buildResumeSnapshot } = await loadSnapshot();
|
|
30
|
+
const { SessionDB } = await loadSessionDB();
|
|
31
|
+
|
|
32
|
+
const dbPath = getSessionDBPath(OPTS, projectDir);
|
|
33
|
+
const db = new SessionDB({ dbPath });
|
|
34
|
+
const sessionId = getSessionId(input, OPTS);
|
|
35
|
+
|
|
36
|
+
const events = db.getEvents(sessionId);
|
|
37
|
+
|
|
38
|
+
if (events.length > 0) {
|
|
39
|
+
const stats = db.getSessionStats(sessionId);
|
|
40
|
+
const snapshot = buildResumeSnapshot(events, {
|
|
41
|
+
compactCount: (stats?.compact_count ?? 0) + 1,
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
db.upsertResume(sessionId, snapshot, events.length);
|
|
45
|
+
db.incrementCompactCount(sessionId);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
db.close();
|
|
49
|
+
} catch (err) {
|
|
50
|
+
try {
|
|
51
|
+
appendFileSync(DEBUG_LOG, `[${new Date().toISOString()}] ${err?.message || err}\n`);
|
|
52
|
+
} catch { /* silent */ }
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
// PreCompress is advisory — no stdout output needed
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import "../suppress-stderr.mjs";
|
|
3
|
+
import "../ensure-deps.mjs";
|
|
4
|
+
/**
|
|
5
|
+
* Gemini CLI SessionStart hook for context-mode
|
|
6
|
+
*
|
|
7
|
+
* Session lifecycle management:
|
|
8
|
+
* - "startup" → Cleanup old sessions, capture GEMINI.md rules
|
|
9
|
+
* - "compact" → Write events file, inject session knowledge directive
|
|
10
|
+
* - "resume" → Load previous session events, inject directive
|
|
11
|
+
* - "clear" → No action needed
|
|
12
|
+
*/
|
|
13
|
+
|
|
14
|
+
import { createRoutingBlock } from "../routing-block.mjs";
|
|
15
|
+
import { createToolNamer } from "../core/tool-naming.mjs";
|
|
16
|
+
|
|
17
|
+
const toolNamer = createToolNamer("gemini-cli");
|
|
18
|
+
const ROUTING_BLOCK = createRoutingBlock(toolNamer);
|
|
19
|
+
import { writeSessionEventsFile, buildSessionDirective, getSessionEvents } from "../session-directive.mjs";
|
|
20
|
+
import {
|
|
21
|
+
readStdin, parseStdin, getSessionId, getSessionDBPath, getSessionEventsPath, getCleanupFlagPath,
|
|
22
|
+
getInputProjectDir, GEMINI_OPTS,
|
|
23
|
+
} from "../session-helpers.mjs";
|
|
24
|
+
import { createSessionLoaders } from "../session-loaders.mjs";
|
|
25
|
+
import { join, dirname } from "node:path";
|
|
26
|
+
import { readFileSync, unlinkSync } from "node:fs";
|
|
27
|
+
import { homedir } from "node:os";
|
|
28
|
+
import { fileURLToPath } from "node:url";
|
|
29
|
+
|
|
30
|
+
const HOOK_DIR = dirname(fileURLToPath(import.meta.url));
|
|
31
|
+
const { loadSessionDB } = createSessionLoaders(HOOK_DIR);
|
|
32
|
+
const OPTS = GEMINI_OPTS;
|
|
33
|
+
|
|
34
|
+
let additionalContext = ROUTING_BLOCK;
|
|
35
|
+
|
|
36
|
+
try {
|
|
37
|
+
const raw = await readStdin();
|
|
38
|
+
const input = parseStdin(raw);
|
|
39
|
+
const source = input.source ?? "startup";
|
|
40
|
+
const projectDir = getInputProjectDir(input, OPTS);
|
|
41
|
+
|
|
42
|
+
if (source === "compact") {
|
|
43
|
+
const { SessionDB } = await loadSessionDB();
|
|
44
|
+
const dbPath = getSessionDBPath(OPTS, projectDir);
|
|
45
|
+
const db = new SessionDB({ dbPath });
|
|
46
|
+
const sessionId = getSessionId(input, OPTS);
|
|
47
|
+
const resume = db.getResume(sessionId);
|
|
48
|
+
|
|
49
|
+
if (resume && !resume.consumed) {
|
|
50
|
+
db.markResumeConsumed(sessionId);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
const events = getSessionEvents(db, sessionId);
|
|
54
|
+
if (events.length > 0) {
|
|
55
|
+
const eventMeta = writeSessionEventsFile(events, getSessionEventsPath(OPTS, projectDir));
|
|
56
|
+
additionalContext += buildSessionDirective("compact", eventMeta, toolNamer);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
db.close();
|
|
60
|
+
} else if (source === "resume") {
|
|
61
|
+
try { unlinkSync(getCleanupFlagPath(OPTS, projectDir)); } catch { /* no flag */ }
|
|
62
|
+
|
|
63
|
+
const { SessionDB } = await loadSessionDB();
|
|
64
|
+
const dbPath = getSessionDBPath(OPTS, projectDir);
|
|
65
|
+
const db = new SessionDB({ dbPath });
|
|
66
|
+
|
|
67
|
+
// Filter events to the session being resumed. Falling back to
|
|
68
|
+
// getLatestSessionEvents(db) leaks events from any other session whose
|
|
69
|
+
// session_meta.started_at is more recent — observed cross-session bleed
|
|
70
|
+
// when a different session started after this one and before the resume.
|
|
71
|
+
const sessionId = getSessionId(input, OPTS);
|
|
72
|
+
const events = sessionId ? getSessionEvents(db, sessionId) : [];
|
|
73
|
+
if (events.length > 0) {
|
|
74
|
+
const eventMeta = writeSessionEventsFile(events, getSessionEventsPath(OPTS, projectDir));
|
|
75
|
+
additionalContext += buildSessionDirective("resume", eventMeta, toolNamer);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
db.close();
|
|
79
|
+
} else if (source === "startup") {
|
|
80
|
+
const { SessionDB } = await loadSessionDB();
|
|
81
|
+
const dbPath = getSessionDBPath(OPTS, projectDir);
|
|
82
|
+
const db = new SessionDB({ dbPath });
|
|
83
|
+
try { unlinkSync(getSessionEventsPath(OPTS, projectDir)); } catch { /* no stale file */ }
|
|
84
|
+
|
|
85
|
+
db.cleanupOldSessions(7);
|
|
86
|
+
db.db.exec(`DELETE FROM session_events WHERE session_id NOT IN (SELECT session_id FROM session_meta)`);
|
|
87
|
+
|
|
88
|
+
const sessionId = getSessionId(input, OPTS);
|
|
89
|
+
db.ensureSession(sessionId, projectDir);
|
|
90
|
+
|
|
91
|
+
// NOTE (#558): excised the old GEMINI.md auto-write block. It loaded an
|
|
92
|
+
// adapter from build/ (gitignored, missing on marketplace installs) and
|
|
93
|
+
// called a method that was deleted from every adapter in commit 6dae20c.
|
|
94
|
+
// Both layers were silently no-op'd by the surrounding try/catch on every
|
|
95
|
+
// install path for many releases. If routing-instruction auto-write is
|
|
96
|
+
// reintroduced it must come with its own PRD, method spec, and format
|
|
97
|
+
// tests — out of scope for the security regression fix.
|
|
98
|
+
|
|
99
|
+
const ruleFilePaths = [
|
|
100
|
+
join(homedir(), ".gemini", "GEMINI.md"),
|
|
101
|
+
join(projectDir, "GEMINI.md"),
|
|
102
|
+
];
|
|
103
|
+
for (const p of ruleFilePaths) {
|
|
104
|
+
try {
|
|
105
|
+
const content = readFileSync(p, "utf-8");
|
|
106
|
+
if (content.trim()) {
|
|
107
|
+
db.insertEvent(sessionId, { type: "rule", category: "rule", data: p, priority: 1 });
|
|
108
|
+
db.insertEvent(sessionId, { type: "rule_content", category: "rule", data: content, priority: 1 });
|
|
109
|
+
}
|
|
110
|
+
} catch { /* file doesn't exist — skip */ }
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
db.close();
|
|
114
|
+
}
|
|
115
|
+
// "clear" — no action needed
|
|
116
|
+
} catch (err) {
|
|
117
|
+
try {
|
|
118
|
+
const { appendFileSync } = await import("node:fs");
|
|
119
|
+
const { join: pjoin } = await import("node:path");
|
|
120
|
+
const { homedir: hd } = await import("node:os");
|
|
121
|
+
appendFileSync(
|
|
122
|
+
pjoin(hd(), ".gemini", "context-mode", "sessionstart-debug.log"),
|
|
123
|
+
`[${new Date().toISOString()}] ${err?.message || err}\n${err?.stack || ""}\n`,
|
|
124
|
+
);
|
|
125
|
+
} catch { /* ignore logging failure */ }
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
// Emit structured JSON rather than plain text so Gemini CLI treats the
|
|
129
|
+
// routing block as hook metadata instead of user-visible output (#299).
|
|
130
|
+
// Matches the format already used by Claude Code and VS Code Copilot
|
|
131
|
+
// SessionStart hooks.
|
|
132
|
+
console.log(JSON.stringify({
|
|
133
|
+
hookSpecificOutput: {
|
|
134
|
+
hookEventName: "SessionStart",
|
|
135
|
+
additionalContext,
|
|
136
|
+
},
|
|
137
|
+
}));
|