@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,68 @@
|
|
|
1
|
+
# context-mode — MANDATORY routing rules
|
|
2
|
+
|
|
3
|
+
context-mode MCP tools available. Rules protect context window from flooding. One unrouted command dumps 56 KB into context. Zed has NO hooks — these instructions are ONLY enforcement. Follow strictly.
|
|
4
|
+
|
|
5
|
+
## Think in Code — MANDATORY
|
|
6
|
+
|
|
7
|
+
Analyze/count/filter/compare/search/parse/transform data: **write code** via `mcp:context-mode:ctx_execute(language, code)`, `console.log()` only the answer. Do NOT read raw data into context. PROGRAM the analysis, not COMPUTE it. Pure JavaScript — Node.js built-ins only (`fs`, `path`, `child_process`). `try/catch`, handle `null`/`undefined`. One script replaces ten tool calls.
|
|
8
|
+
|
|
9
|
+
## BLOCKED — do NOT use
|
|
10
|
+
|
|
11
|
+
### curl / wget — FORBIDDEN
|
|
12
|
+
Do NOT use `curl`/`wget` in shell. Dumps raw HTTP into context.
|
|
13
|
+
Use: `mcp:context-mode:ctx_fetch_and_index(url, source)` or `mcp:context-mode:ctx_execute(language: "javascript", code: "const r = await fetch(...)")`
|
|
14
|
+
|
|
15
|
+
### Inline HTTP — FORBIDDEN
|
|
16
|
+
No `node -e "fetch(..."`, `python -c "requests.get(..."`. Bypasses sandbox.
|
|
17
|
+
Use: `mcp:context-mode:ctx_execute(language, code)` — only stdout enters context
|
|
18
|
+
|
|
19
|
+
### Direct web fetching — FORBIDDEN
|
|
20
|
+
Raw HTML can exceed 100 KB.
|
|
21
|
+
Use: `mcp:context-mode:ctx_fetch_and_index(url, source)` then `mcp:context-mode:ctx_search(queries)`
|
|
22
|
+
|
|
23
|
+
## REDIRECTED — use sandbox
|
|
24
|
+
|
|
25
|
+
### Shell (>20 lines output)
|
|
26
|
+
Shell ONLY for: `git`, `mkdir`, `rm`, `mv`, `cd`, `ls`, `npm install`, `pip install`.
|
|
27
|
+
Otherwise: `mcp:context-mode:ctx_batch_execute(commands, queries)` or `mcp:context-mode:ctx_execute(language: "javascript", code: "...")`. Use `language: "shell"` only when code matches the host shell.
|
|
28
|
+
|
|
29
|
+
### File reading (for analysis)
|
|
30
|
+
Reading to **edit** → reading correct. Reading to **analyze/explore/summarize** → `mcp:context-mode:ctx_execute_file(path, language, code)`.
|
|
31
|
+
|
|
32
|
+
### grep / search (large results)
|
|
33
|
+
Use `mcp:context-mode:ctx_execute(language: "javascript", code: "...")` in sandbox for portable filtering/counting.
|
|
34
|
+
|
|
35
|
+
## Tool selection
|
|
36
|
+
|
|
37
|
+
1. **GATHER**: `mcp:context-mode:ctx_batch_execute(commands, queries)` — runs all commands, auto-indexes, returns search. ONE call replaces 30+. Each command: `{label: "header", command: "..."}`.
|
|
38
|
+
2. **FOLLOW-UP**: `mcp:context-mode:ctx_search(queries: ["q1", "q2", ...])` — all questions as array, ONE call.
|
|
39
|
+
3. **PROCESSING**: `mcp:context-mode:ctx_execute(language, code)` | `mcp:context-mode:ctx_execute_file(path, language, code)` — sandbox, only stdout enters context.
|
|
40
|
+
4. **WEB**: `mcp:context-mode:ctx_fetch_and_index(url, source)` then `mcp:context-mode:ctx_search(queries)` — raw HTML never enters context.
|
|
41
|
+
5. **INDEX**: `mcp:context-mode:ctx_index(content, source)` — store in FTS5 for later search.
|
|
42
|
+
|
|
43
|
+
## Parallel I/O batches
|
|
44
|
+
|
|
45
|
+
For multi-URL fetches or multi-API calls, **always** include `concurrency: N` (1-8):
|
|
46
|
+
|
|
47
|
+
- `mcp:context-mode:ctx_batch_execute(commands: [3+ network commands], concurrency: 5)` — gh, curl, dig, docker inspect, multi-region cloud queries
|
|
48
|
+
- `mcp:context-mode:ctx_fetch_and_index(requests: [{url, source}, ...], concurrency: 5)` — multi-URL batch fetch
|
|
49
|
+
|
|
50
|
+
**Use concurrency 4-8** for I/O-bound work (network calls, API queries). **Keep concurrency 1** for CPU-bound (npm test, build, lint) or commands sharing state (ports, lock files, same-repo writes).
|
|
51
|
+
|
|
52
|
+
GitHub API rate-limit: cap at 4 for `gh` calls.
|
|
53
|
+
|
|
54
|
+
## Output
|
|
55
|
+
|
|
56
|
+
Write artifacts to FILES — never inline. Return: file path + 1-line description.
|
|
57
|
+
Descriptive source labels for `search(source: "label")`.
|
|
58
|
+
|
|
59
|
+
## ctx commands
|
|
60
|
+
|
|
61
|
+
| Command | Action |
|
|
62
|
+
|---------|--------|
|
|
63
|
+
| `ctx stats` | Call `stats` MCP tool, display full output verbatim |
|
|
64
|
+
| `ctx doctor` | Call `doctor` MCP tool, run returned shell command, display as checklist |
|
|
65
|
+
| `ctx upgrade` | Call `upgrade` MCP tool, run returned shell command, display as checklist |
|
|
66
|
+
| `ctx purge` | Call `mcp:context-mode:purge` MCP tool with confirm: true. Warns before wiping knowledge base. |
|
|
67
|
+
|
|
68
|
+
After /clear or /compact: knowledge base and session stats preserved. Use `ctx purge` to start fresh.
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Shared Antigravity CLI (`agy`) hook payload normalization.
|
|
3
|
+
*
|
|
4
|
+
* The only refs-backed field is the working directory: the upstream hook example
|
|
5
|
+
* (refs/platforms/antigravity-cli/examples/title/title.sh:10, README.md:11)
|
|
6
|
+
* reads it from `workspace.current_dir` (an OBJECT field). We read that FIRST.
|
|
7
|
+
*
|
|
8
|
+
* The remaining fields below are empirically-derived/UNVERIFIED — no upstream
|
|
9
|
+
* agy doc or example confirms this shape; they are best-effort assumptions:
|
|
10
|
+
* { conversationId, stepIdx, toolCall: { name, args }, error,
|
|
11
|
+
* workspacePaths: [..], transcriptPath, artifactDirectoryPath }
|
|
12
|
+
*
|
|
13
|
+
* The shared context-mode capture/routing code expects Claude-shaped fields, so
|
|
14
|
+
* keep this mapping in one place for PreToolUse/PostToolUse/Stop.
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
export function parseAgyPayload(raw) {
|
|
18
|
+
try {
|
|
19
|
+
const cleaned = String(raw ?? "").replace(/^\uFEFF/, "").trim();
|
|
20
|
+
return cleaned ? JSON.parse(cleaned) : {};
|
|
21
|
+
} catch {
|
|
22
|
+
return {};
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export function getAgyProjectDir(payload) {
|
|
27
|
+
// Refs-backed FIRST: workspace.current_dir is the only upstream-documented
|
|
28
|
+
// field (examples/title/title.sh:10). `workspacePaths[0]` is an unverified
|
|
29
|
+
// fallback kept defensively.
|
|
30
|
+
const workspace = payload?.workspace;
|
|
31
|
+
if (workspace && typeof workspace === "object" && typeof workspace.current_dir === "string" && workspace.current_dir) {
|
|
32
|
+
return workspace.current_dir;
|
|
33
|
+
}
|
|
34
|
+
return Array.isArray(payload?.workspacePaths) && payload.workspacePaths.length > 0
|
|
35
|
+
? String(payload.workspacePaths[0])
|
|
36
|
+
: undefined;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
// agy native tool-name -> canonical map. Keep in sync with the two other copies:
|
|
40
|
+
// hooks/core/routing.mjs (TOOL_ALIASES) and src/session/extract.ts
|
|
41
|
+
// (TOOL_NAME_NORMALIZE). Three layers normalize independently; adding a new agy
|
|
42
|
+
// tool means updating all three (a single shared table is a follow-up cleanup).
|
|
43
|
+
function normalizeAgyToolName(name) {
|
|
44
|
+
switch (name) {
|
|
45
|
+
case "run_command":
|
|
46
|
+
return "Bash";
|
|
47
|
+
case "view_file":
|
|
48
|
+
return "Read";
|
|
49
|
+
case "grep_search":
|
|
50
|
+
return "Grep";
|
|
51
|
+
case "list_dir":
|
|
52
|
+
return "LS";
|
|
53
|
+
case "web_fetch":
|
|
54
|
+
case "read_url_content":
|
|
55
|
+
return "WebFetch";
|
|
56
|
+
case "search_web":
|
|
57
|
+
return "WebSearch";
|
|
58
|
+
default:
|
|
59
|
+
return name;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
function normalizeAgyToolInput(toolName, args) {
|
|
64
|
+
const input = args && typeof args === "object" ? { ...args } : {};
|
|
65
|
+
const canonical = normalizeAgyToolName(toolName);
|
|
66
|
+
if (canonical === "Bash" && typeof input.CommandLine === "string" && typeof input.command !== "string") {
|
|
67
|
+
input.command = input.CommandLine;
|
|
68
|
+
}
|
|
69
|
+
if (canonical === "WebFetch") {
|
|
70
|
+
const url = input.url ?? input.URL ?? input.Url;
|
|
71
|
+
if (typeof url === "string" && typeof input.url !== "string") input.url = url;
|
|
72
|
+
}
|
|
73
|
+
if (canonical === "Read") {
|
|
74
|
+
const filePath = input.file_path ?? input.path ?? input.AbsolutePath ?? input.FilePath;
|
|
75
|
+
if (typeof filePath === "string" && typeof input.file_path !== "string") input.file_path = filePath;
|
|
76
|
+
}
|
|
77
|
+
if (canonical === "Grep") {
|
|
78
|
+
const pattern = input.pattern ?? input.Pattern ?? input.query ?? input.Query;
|
|
79
|
+
if (typeof pattern === "string" && typeof input.pattern !== "string") input.pattern = pattern;
|
|
80
|
+
}
|
|
81
|
+
return input;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
export function fromAgy(payload) {
|
|
85
|
+
const toolCall = payload?.toolCall ?? {};
|
|
86
|
+
const rawToolName = toolCall?.name ?? "";
|
|
87
|
+
return {
|
|
88
|
+
session_id: payload?.conversationId,
|
|
89
|
+
transcript_path: payload?.transcriptPath,
|
|
90
|
+
cwd: getAgyProjectDir(payload),
|
|
91
|
+
tool_name: normalizeAgyToolName(rawToolName),
|
|
92
|
+
tool_input: normalizeAgyToolInput(rawToolName, toolCall?.args),
|
|
93
|
+
tool_response: typeof payload?.error === "string" ? payload.error : "",
|
|
94
|
+
tool_output: {
|
|
95
|
+
isError: typeof payload?.error === "string" && payload.error.length > 0,
|
|
96
|
+
},
|
|
97
|
+
};
|
|
98
|
+
}
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import "../suppress-stderr.mjs";
|
|
3
|
+
import "../ensure-deps.mjs";
|
|
4
|
+
/**
|
|
5
|
+
* Antigravity CLI (`agy`) PostToolUse hook — session event capture.
|
|
6
|
+
*
|
|
7
|
+
* agy fires hooks from a config at ~/.gemini/config/hooks.json (or via an
|
|
8
|
+
* installed agy plugin's hooks/hooks.json) and pipes a payload whose shape
|
|
9
|
+
* differs from the Claude-Code/Codex wire format this pipeline expects:
|
|
10
|
+
*
|
|
11
|
+
* { conversationId, stepIdx, toolCall: { name, args }, error,
|
|
12
|
+
* workspacePaths: [..], transcriptPath, artifactDirectoryPath }
|
|
13
|
+
*
|
|
14
|
+
* The event name arrives as argv (set in hooks.json), NOT in the payload, and
|
|
15
|
+
* the hook CWD is ~/.gemini/config — so the project dir MUST come from
|
|
16
|
+
* workspacePaths[0], never process.cwd(). We translate agy's payload into the
|
|
17
|
+
* Claude-shaped `input` the shared extractor/attribution pipeline consumes,
|
|
18
|
+
* then reuse it unchanged. This hook is capture-only and emits no stdout.
|
|
19
|
+
*/
|
|
20
|
+
|
|
21
|
+
import {
|
|
22
|
+
readStdin,
|
|
23
|
+
getSessionId,
|
|
24
|
+
getSessionDBPath,
|
|
25
|
+
getInputProjectDir,
|
|
26
|
+
ANTIGRAVITY_CLI_OPTS,
|
|
27
|
+
} from "../session-helpers.mjs";
|
|
28
|
+
import { createSessionLoaders, attributeAndInsertEvents } from "../session-loaders.mjs";
|
|
29
|
+
import { readFileSync, unlinkSync } from "node:fs";
|
|
30
|
+
import { dirname, resolve } from "node:path";
|
|
31
|
+
import { tmpdir } from "node:os";
|
|
32
|
+
import { fileURLToPath } from "node:url";
|
|
33
|
+
import { fromAgy, parseAgyPayload } from "./payload.mjs";
|
|
34
|
+
|
|
35
|
+
const HOOK_DIR = dirname(fileURLToPath(import.meta.url));
|
|
36
|
+
const { loadSessionDB, loadExtract, loadProjectAttribution } = createSessionLoaders(HOOK_DIR);
|
|
37
|
+
const OPTS = ANTIGRAVITY_CLI_OPTS;
|
|
38
|
+
|
|
39
|
+
try {
|
|
40
|
+
const input = fromAgy(parseAgyPayload(await readStdin()));
|
|
41
|
+
|
|
42
|
+
if (input.tool_name) {
|
|
43
|
+
const projectDir = getInputProjectDir(input, OPTS);
|
|
44
|
+
|
|
45
|
+
const { extractEvents } = await loadExtract();
|
|
46
|
+
const { resolveProjectAttributions } = await loadProjectAttribution();
|
|
47
|
+
const { SessionDB } = await loadSessionDB();
|
|
48
|
+
|
|
49
|
+
const dbPath = getSessionDBPath(OPTS, projectDir);
|
|
50
|
+
const db = new SessionDB({ dbPath });
|
|
51
|
+
const sessionId = getSessionId(input, OPTS);
|
|
52
|
+
|
|
53
|
+
db.ensureSession(sessionId, projectDir);
|
|
54
|
+
|
|
55
|
+
const normalizedInput = {
|
|
56
|
+
tool_name: input.tool_name,
|
|
57
|
+
tool_input: input.tool_input ?? {},
|
|
58
|
+
tool_response: input.tool_response ?? "",
|
|
59
|
+
tool_output: input.tool_output,
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
const events = extractEvents(normalizedInput);
|
|
63
|
+
attributeAndInsertEvents(db, sessionId, events, input, projectDir, "PostToolUse", resolveProjectAttributions);
|
|
64
|
+
|
|
65
|
+
try {
|
|
66
|
+
const rejectedPath = resolve(tmpdir(), `context-mode-rejected-${sessionId}.txt`);
|
|
67
|
+
let rejectedData;
|
|
68
|
+
try {
|
|
69
|
+
rejectedData = readFileSync(rejectedPath, "utf-8").trim();
|
|
70
|
+
unlinkSync(rejectedPath);
|
|
71
|
+
} catch { /* no marker */ }
|
|
72
|
+
if (rejectedData) {
|
|
73
|
+
const colonIdx = rejectedData.indexOf(":");
|
|
74
|
+
const rejTool = colonIdx > 0 ? rejectedData.slice(0, colonIdx) : rejectedData;
|
|
75
|
+
const rejReason = colonIdx > 0 ? rejectedData.slice(colonIdx + 1) : "denied";
|
|
76
|
+
attributeAndInsertEvents(
|
|
77
|
+
db,
|
|
78
|
+
sessionId,
|
|
79
|
+
[{
|
|
80
|
+
type: "rejected",
|
|
81
|
+
category: "rejected-approach",
|
|
82
|
+
data: `${rejTool}: ${rejReason}`,
|
|
83
|
+
priority: 2,
|
|
84
|
+
}],
|
|
85
|
+
input,
|
|
86
|
+
projectDir,
|
|
87
|
+
"PreToolUse",
|
|
88
|
+
resolveProjectAttributions,
|
|
89
|
+
);
|
|
90
|
+
}
|
|
91
|
+
} catch { /* best-effort */ }
|
|
92
|
+
|
|
93
|
+
try {
|
|
94
|
+
const redirectPath = resolve(tmpdir(), `context-mode-redirect-${sessionId}.txt`);
|
|
95
|
+
let redirectData;
|
|
96
|
+
try {
|
|
97
|
+
redirectData = readFileSync(redirectPath, "utf-8").trim();
|
|
98
|
+
unlinkSync(redirectPath);
|
|
99
|
+
} catch { /* no marker */ }
|
|
100
|
+
|
|
101
|
+
if (redirectData) {
|
|
102
|
+
const i1 = redirectData.indexOf(":");
|
|
103
|
+
const i2 = i1 >= 0 ? redirectData.indexOf(":", i1 + 1) : -1;
|
|
104
|
+
const i3 = i2 >= 0 ? redirectData.indexOf(":", i2 + 1) : -1;
|
|
105
|
+
if (i1 > 0 && i2 > i1 && i3 > i2) {
|
|
106
|
+
const tool = redirectData.slice(0, i1);
|
|
107
|
+
const type = redirectData.slice(i1 + 1, i2);
|
|
108
|
+
const bytesRaw = redirectData.slice(i2 + 1, i3);
|
|
109
|
+
const summary = redirectData.slice(i3 + 1);
|
|
110
|
+
const bytesAvoided = Number.parseInt(bytesRaw, 10);
|
|
111
|
+
if (Number.isFinite(bytesAvoided) && bytesAvoided > 0) {
|
|
112
|
+
attributeAndInsertEvents(
|
|
113
|
+
db,
|
|
114
|
+
sessionId,
|
|
115
|
+
[{
|
|
116
|
+
type,
|
|
117
|
+
category: "redirect",
|
|
118
|
+
data: `${tool}: ${summary}`,
|
|
119
|
+
priority: 2,
|
|
120
|
+
bytes_avoided: bytesAvoided,
|
|
121
|
+
}],
|
|
122
|
+
input,
|
|
123
|
+
projectDir,
|
|
124
|
+
"PreToolUse",
|
|
125
|
+
resolveProjectAttributions,
|
|
126
|
+
);
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
} catch { /* best-effort */ }
|
|
131
|
+
|
|
132
|
+
db.close();
|
|
133
|
+
}
|
|
134
|
+
} catch {
|
|
135
|
+
// Swallow errors — a hook must never fail the host agent.
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
// Capture-only hook: emit nothing.
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import "../suppress-stderr.mjs";
|
|
3
|
+
/**
|
|
4
|
+
* Antigravity CLI (`agy`) PreToolUse hook — bounded routing enforcement.
|
|
5
|
+
*
|
|
6
|
+
* agy honors top-level `{ decision: "deny" | "ask", reason }` responses for
|
|
7
|
+
* PreToolUse. It does not honor additionalContext, so mapped context guidance is
|
|
8
|
+
* emitted as a deny-and-retry instruction. We register only tools with existing
|
|
9
|
+
* core routing branches (Bash/Read/Grep/WebFetch), not LS/search_web.
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
import { dirname, resolve } from "node:path";
|
|
13
|
+
import { fileURLToPath } from "node:url";
|
|
14
|
+
import { writeFileSync } from "node:fs";
|
|
15
|
+
import { tmpdir } from "node:os";
|
|
16
|
+
import { readStdin } from "../core/stdin.mjs";
|
|
17
|
+
import { routePreToolUse, initSecurity } from "../core/routing.mjs";
|
|
18
|
+
import { formatDecision } from "../core/formatters.mjs";
|
|
19
|
+
import { fromAgy, getAgyProjectDir, parseAgyPayload } from "./payload.mjs";
|
|
20
|
+
import { getSessionId, ANTIGRAVITY_CLI_OPTS } from "../session-helpers.mjs";
|
|
21
|
+
|
|
22
|
+
const __hookDir = dirname(fileURLToPath(import.meta.url));
|
|
23
|
+
|
|
24
|
+
try {
|
|
25
|
+
await initSecurity(resolve(__hookDir, "..", "..", "build"));
|
|
26
|
+
|
|
27
|
+
const payload = parseAgyPayload(await readStdin());
|
|
28
|
+
const input = fromAgy(payload);
|
|
29
|
+
|
|
30
|
+
const decision = routePreToolUse(
|
|
31
|
+
String(input.tool_name ?? ""),
|
|
32
|
+
input.tool_input ?? {},
|
|
33
|
+
getAgyProjectDir(payload),
|
|
34
|
+
"antigravity-cli",
|
|
35
|
+
input.session_id,
|
|
36
|
+
);
|
|
37
|
+
const response = formatDecision("antigravity-cli", decision);
|
|
38
|
+
|
|
39
|
+
if (decision && input.tool_name) {
|
|
40
|
+
// Key markers on the SAME id posttooluse.mjs reads. getSessionId prefers the
|
|
41
|
+
// transcript UUID over conversationId, so deriving it any other way here
|
|
42
|
+
// (e.g. input.session_id) would miss the handoff whenever agy's transcript
|
|
43
|
+
// is <uuid>.jsonl and silently drop the rejected/redirect analytics.
|
|
44
|
+
const sessionId = getSessionId(input, ANTIGRAVITY_CLI_OPTS);
|
|
45
|
+
const formattedDeny = response && typeof response === "object" && response.decision === "deny";
|
|
46
|
+
if (formattedDeny || decision.action === "deny" || decision.action === "modify") {
|
|
47
|
+
try {
|
|
48
|
+
const reason = formattedDeny
|
|
49
|
+
? (response.reason || "denied")
|
|
50
|
+
: decision.action === "deny"
|
|
51
|
+
? (decision.reason || "denied")
|
|
52
|
+
: "Redirected to context-mode sandbox";
|
|
53
|
+
writeFileSync(
|
|
54
|
+
resolve(tmpdir(), `context-mode-rejected-${sessionId}.txt`),
|
|
55
|
+
`${input.tool_name}:${reason}`,
|
|
56
|
+
"utf-8",
|
|
57
|
+
);
|
|
58
|
+
} catch { /* best-effort */ }
|
|
59
|
+
}
|
|
60
|
+
if (decision.redirectMeta) {
|
|
61
|
+
try {
|
|
62
|
+
const meta = decision.redirectMeta;
|
|
63
|
+
const summary = String(meta.commandSummary ?? "").slice(0, 200);
|
|
64
|
+
writeFileSync(
|
|
65
|
+
resolve(tmpdir(), `context-mode-redirect-${sessionId}.txt`),
|
|
66
|
+
`${meta.tool}:${meta.type}:${meta.bytesAvoided}:${summary}`,
|
|
67
|
+
"utf-8",
|
|
68
|
+
);
|
|
69
|
+
} catch { /* best-effort */ }
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
if (response !== null) {
|
|
74
|
+
process.stdout.write(JSON.stringify(response) + "\n");
|
|
75
|
+
}
|
|
76
|
+
} catch {
|
|
77
|
+
// Fail OPEN. Empty stdout + exit 0 lets agy continue the tool call.
|
|
78
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import "../suppress-stderr.mjs";
|
|
3
|
+
import "../ensure-deps.mjs";
|
|
4
|
+
/**
|
|
5
|
+
* Antigravity CLI (`agy`) Stop hook — session-end capture.
|
|
6
|
+
*
|
|
7
|
+
* agy's verified hook list exposes `Stop` ("when agent tries to exit") and no
|
|
8
|
+
* separate SessionEnd hook, so this records a single session_end marker when
|
|
9
|
+
* agy emits it. `agy -p` probes have not emitted Stop, so registration is
|
|
10
|
+
* best-effort. The hook is capture-only and emits no stdout.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
import {
|
|
14
|
+
readStdin,
|
|
15
|
+
getSessionId,
|
|
16
|
+
getSessionDBPath,
|
|
17
|
+
getInputProjectDir,
|
|
18
|
+
ANTIGRAVITY_CLI_OPTS,
|
|
19
|
+
} from "../session-helpers.mjs";
|
|
20
|
+
import { createSessionLoaders } from "../session-loaders.mjs";
|
|
21
|
+
import { dirname } from "node:path";
|
|
22
|
+
import { fileURLToPath } from "node:url";
|
|
23
|
+
import { fromAgy, parseAgyPayload } from "./payload.mjs";
|
|
24
|
+
|
|
25
|
+
const HOOK_DIR = dirname(fileURLToPath(import.meta.url));
|
|
26
|
+
const { loadSessionDB } = createSessionLoaders(HOOK_DIR);
|
|
27
|
+
const OPTS = ANTIGRAVITY_CLI_OPTS;
|
|
28
|
+
|
|
29
|
+
try {
|
|
30
|
+
const payload = parseAgyPayload(await readStdin());
|
|
31
|
+
const input = fromAgy(payload);
|
|
32
|
+
const projectDir = getInputProjectDir(input, OPTS);
|
|
33
|
+
|
|
34
|
+
const { SessionDB } = await loadSessionDB();
|
|
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
|
+
db.insertEvent(
|
|
41
|
+
sessionId,
|
|
42
|
+
{
|
|
43
|
+
type: "session_end",
|
|
44
|
+
category: "session",
|
|
45
|
+
priority: 1,
|
|
46
|
+
data: JSON.stringify({
|
|
47
|
+
status: payload?.status ?? "stopped",
|
|
48
|
+
stepIdx: payload?.stepIdx ?? null,
|
|
49
|
+
transcriptPath: payload?.transcriptPath ?? null,
|
|
50
|
+
}),
|
|
51
|
+
},
|
|
52
|
+
"Stop",
|
|
53
|
+
);
|
|
54
|
+
|
|
55
|
+
db.close();
|
|
56
|
+
} catch {
|
|
57
|
+
// A hook must never fail the host agent.
|
|
58
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Auto-injection for compaction events.
|
|
3
|
+
*
|
|
4
|
+
* Builds a prioritized, budget-capped injection block from session events.
|
|
5
|
+
* Only fires on source === "compact" (wired in sessionstart.mjs).
|
|
6
|
+
*
|
|
7
|
+
* Priority order:
|
|
8
|
+
* P1: Role (behavioral_directive) — always first, never truncated
|
|
9
|
+
* P2: Decisions (rules) — latest 5, overflow reduces to 3
|
|
10
|
+
* P3: Skills (active_skills) — unique names, latest 10
|
|
11
|
+
* P4: Intent (session_mode) — latest
|
|
12
|
+
*
|
|
13
|
+
* Hard cap: 500 tokens (~2000 chars at 4 chars/token).
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Rough token estimate: ~4 chars per token.
|
|
18
|
+
* @param {string} text
|
|
19
|
+
* @returns {number}
|
|
20
|
+
*/
|
|
21
|
+
export function estimateTokens(text) {
|
|
22
|
+
return Math.ceil(text.length / 4);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* Build auto-injection block from session events.
|
|
27
|
+
* @param {Array<{category: string, data: string}>} events
|
|
28
|
+
* @returns {string} XML block or empty string
|
|
29
|
+
*/
|
|
30
|
+
export function buildAutoInjection(events) {
|
|
31
|
+
// Single O(N) pass instead of 4× O(N) Array.filter() loops. UserPromptSubmit
|
|
32
|
+
// fires this on every prompt; with N up to 100 events the prior implementation
|
|
33
|
+
// walked the array 4 times per prompt — wasteful on macOS, painful on Windows
|
|
34
|
+
// where V8 cold paths cost more.
|
|
35
|
+
let role;
|
|
36
|
+
const decisionsAll = [];
|
|
37
|
+
const skillsSeen = new Set();
|
|
38
|
+
const skillsOrdered = [];
|
|
39
|
+
let intent;
|
|
40
|
+
for (const e of events) {
|
|
41
|
+
switch (e.category) {
|
|
42
|
+
case "role":
|
|
43
|
+
role = e;
|
|
44
|
+
break;
|
|
45
|
+
case "decision":
|
|
46
|
+
decisionsAll.push(e);
|
|
47
|
+
break;
|
|
48
|
+
case "skill":
|
|
49
|
+
if (!skillsSeen.has(e.data)) {
|
|
50
|
+
skillsSeen.add(e.data);
|
|
51
|
+
skillsOrdered.push(e.data);
|
|
52
|
+
}
|
|
53
|
+
break;
|
|
54
|
+
case "intent":
|
|
55
|
+
intent = e;
|
|
56
|
+
break;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
const parts = [];
|
|
61
|
+
let budget = 500; // hard cap in tokens
|
|
62
|
+
|
|
63
|
+
// P1: Role (always first, never truncated from output)
|
|
64
|
+
if (role) {
|
|
65
|
+
const text = `<behavioral_directive>\n${role.data.slice(0, 400)}\n</behavioral_directive>`;
|
|
66
|
+
parts.push(text);
|
|
67
|
+
budget -= estimateTokens(text);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
// P2: Decisions (latest 5)
|
|
71
|
+
const decisions = decisionsAll.slice(-5);
|
|
72
|
+
if (decisions.length > 0) {
|
|
73
|
+
const lines = decisions.map(d => `- ${d.data.slice(0, 100)}`).join("\n");
|
|
74
|
+
const text = `<rules>\nFollow these decisions:\n${lines}\n</rules>`;
|
|
75
|
+
const cost = estimateTokens(text);
|
|
76
|
+
if (cost <= budget) {
|
|
77
|
+
parts.push(text);
|
|
78
|
+
budget -= cost;
|
|
79
|
+
} else {
|
|
80
|
+
// Overflow: reduce to 3 decisions
|
|
81
|
+
const reduced = decisions.slice(-3).map(d => `- ${d.data.slice(0, 100)}`).join("\n");
|
|
82
|
+
const fallback = `<rules>\nFollow these decisions:\n${reduced}\n</rules>`;
|
|
83
|
+
parts.push(fallback);
|
|
84
|
+
budget -= estimateTokens(fallback);
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
// P3: Skills (unique names, latest 10)
|
|
89
|
+
if (skillsOrdered.length > 0 && budget > 50) {
|
|
90
|
+
const text = `<active_skills>\nRe-invoke if relevant: ${skillsOrdered.slice(-10).join(", ")}\nTo reload: call the Skill tool with the skill name.\n</active_skills>`;
|
|
91
|
+
parts.push(text);
|
|
92
|
+
budget -= estimateTokens(text);
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
// P4: Intent (latest)
|
|
96
|
+
if (intent && budget > 20) {
|
|
97
|
+
parts.push(`<session_mode>${intent.data}</session_mode>`);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
if (parts.length === 0) return "";
|
|
101
|
+
return `<session_state source="compaction">\n\n${parts.join("\n\n")}\n\n</session_state>`;
|
|
102
|
+
}
|