@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,113 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* adapters/claude-code-base — Shared base for Claude Code wire-protocol adapters.
|
|
3
|
+
*
|
|
4
|
+
* Claude Code and Qwen Code use the identical JSON stdin/stdout hook protocol:
|
|
5
|
+
* - Input fields: tool_name, tool_input, tool_output, is_error, session_id,
|
|
6
|
+
* transcript_path, source
|
|
7
|
+
* - Blocking: `permissionDecision: "deny"` in response
|
|
8
|
+
* - Arg modification: `updatedInput` field in response
|
|
9
|
+
* - Output modification: `updatedMCPToolOutput` field in response
|
|
10
|
+
* - Context injection: `additionalContext` at response root (not wrapped)
|
|
11
|
+
* - PreCompact/SessionStart: stdout on exit 0
|
|
12
|
+
*
|
|
13
|
+
* This base class implements the 8 shared parse/format methods.
|
|
14
|
+
* Subclasses provide platform-specific config (env vars, settings path,
|
|
15
|
+
* session ID priority, hook config, diagnostics, upgrade).
|
|
16
|
+
*/
|
|
17
|
+
import { BaseAdapter } from "./base.js";
|
|
18
|
+
// ─────────────────────────────────────────────────────────
|
|
19
|
+
// Base adapter for Claude Code wire protocol
|
|
20
|
+
// ─────────────────────────────────────────────────────────
|
|
21
|
+
export class ClaudeCodeBaseAdapter extends BaseAdapter {
|
|
22
|
+
// ── Input parsing (shared wire format) ─────────────────
|
|
23
|
+
parsePreToolUseInput(raw) {
|
|
24
|
+
const input = raw;
|
|
25
|
+
return {
|
|
26
|
+
toolName: input.tool_name ?? "",
|
|
27
|
+
toolInput: input.tool_input ?? {},
|
|
28
|
+
sessionId: this.extractSessionId(input),
|
|
29
|
+
projectDir: process.env[this.projectDirEnvVar] ?? process.cwd(),
|
|
30
|
+
raw,
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
parsePostToolUseInput(raw) {
|
|
34
|
+
const input = raw;
|
|
35
|
+
return {
|
|
36
|
+
toolName: input.tool_name ?? "",
|
|
37
|
+
toolInput: input.tool_input ?? {},
|
|
38
|
+
toolOutput: input.tool_output,
|
|
39
|
+
isError: input.is_error,
|
|
40
|
+
sessionId: this.extractSessionId(input),
|
|
41
|
+
projectDir: process.env[this.projectDirEnvVar] ?? process.cwd(),
|
|
42
|
+
raw,
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
parsePreCompactInput(raw) {
|
|
46
|
+
const input = raw;
|
|
47
|
+
return {
|
|
48
|
+
sessionId: this.extractSessionId(input),
|
|
49
|
+
projectDir: process.env[this.projectDirEnvVar] ?? process.cwd(),
|
|
50
|
+
raw,
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
parseSessionStartInput(raw) {
|
|
54
|
+
const input = raw;
|
|
55
|
+
const rawSource = input.source ?? "startup";
|
|
56
|
+
let source;
|
|
57
|
+
switch (rawSource) {
|
|
58
|
+
case "compact":
|
|
59
|
+
source = "compact";
|
|
60
|
+
break;
|
|
61
|
+
case "resume":
|
|
62
|
+
source = "resume";
|
|
63
|
+
break;
|
|
64
|
+
case "clear":
|
|
65
|
+
source = "clear";
|
|
66
|
+
break;
|
|
67
|
+
default:
|
|
68
|
+
source = "startup";
|
|
69
|
+
}
|
|
70
|
+
return {
|
|
71
|
+
sessionId: this.extractSessionId(input),
|
|
72
|
+
source,
|
|
73
|
+
projectDir: process.env[this.projectDirEnvVar] ?? process.cwd(),
|
|
74
|
+
raw,
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
// ── Response formatting (shared wire format) ───────────
|
|
78
|
+
formatPreToolUseResponse(response) {
|
|
79
|
+
if (response.decision === "deny") {
|
|
80
|
+
return {
|
|
81
|
+
permissionDecision: "deny",
|
|
82
|
+
reason: response.reason ?? "Blocked by context-mode hook",
|
|
83
|
+
};
|
|
84
|
+
}
|
|
85
|
+
if (response.decision === "modify" && response.updatedInput) {
|
|
86
|
+
return { updatedInput: response.updatedInput };
|
|
87
|
+
}
|
|
88
|
+
if (response.decision === "context" && response.additionalContext) {
|
|
89
|
+
return { additionalContext: response.additionalContext };
|
|
90
|
+
}
|
|
91
|
+
if (response.decision === "ask") {
|
|
92
|
+
return { permissionDecision: "ask" };
|
|
93
|
+
}
|
|
94
|
+
// "allow" — return undefined for passthrough
|
|
95
|
+
return undefined;
|
|
96
|
+
}
|
|
97
|
+
formatPostToolUseResponse(response) {
|
|
98
|
+
const result = {};
|
|
99
|
+
if (response.additionalContext) {
|
|
100
|
+
result.additionalContext = response.additionalContext;
|
|
101
|
+
}
|
|
102
|
+
if (response.updatedOutput) {
|
|
103
|
+
result.updatedMCPToolOutput = response.updatedOutput;
|
|
104
|
+
}
|
|
105
|
+
return Object.keys(result).length > 0 ? result : undefined;
|
|
106
|
+
}
|
|
107
|
+
formatPreCompactResponse(response) {
|
|
108
|
+
return response.context ?? "";
|
|
109
|
+
}
|
|
110
|
+
formatSessionStartResponse(response) {
|
|
111
|
+
return response.context ?? "";
|
|
112
|
+
}
|
|
113
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* adapters/client-map — MCP clientInfo.name → PlatformId mapping.
|
|
3
|
+
*
|
|
4
|
+
* Source: Apify MCP Client Capabilities Registry
|
|
5
|
+
* https://github.com/apify/mcp-client-capabilities
|
|
6
|
+
*
|
|
7
|
+
* Only includes platforms we have adapters for.
|
|
8
|
+
*/
|
|
9
|
+
import type { PlatformId } from "./types.js";
|
|
10
|
+
export declare const CLIENT_NAME_TO_PLATFORM: Record<string, PlatformId>;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* adapters/client-map — MCP clientInfo.name → PlatformId mapping.
|
|
3
|
+
*
|
|
4
|
+
* Source: Apify MCP Client Capabilities Registry
|
|
5
|
+
* https://github.com/apify/mcp-client-capabilities
|
|
6
|
+
*
|
|
7
|
+
* Only includes platforms we have adapters for.
|
|
8
|
+
*/
|
|
9
|
+
export const CLIENT_NAME_TO_PLATFORM = {
|
|
10
|
+
"claude-code": "claude-code",
|
|
11
|
+
"gemini-cli-mcp-client": "gemini-cli",
|
|
12
|
+
"antigravity-client": "antigravity",
|
|
13
|
+
"antigravity-cli": "antigravity-cli",
|
|
14
|
+
"agy": "antigravity-cli",
|
|
15
|
+
"cursor-vscode": "cursor",
|
|
16
|
+
"Visual-Studio-Code": "vscode-copilot",
|
|
17
|
+
"copilot-cli": "copilot-cli",
|
|
18
|
+
"GitHub Copilot CLI": "copilot-cli",
|
|
19
|
+
"github-copilot-cli": "copilot-cli",
|
|
20
|
+
"JetBrains Client": "jetbrains-copilot",
|
|
21
|
+
"IntelliJ IDEA": "jetbrains-copilot",
|
|
22
|
+
"PyCharm": "jetbrains-copilot",
|
|
23
|
+
"Codex": "codex",
|
|
24
|
+
"codex-mcp-client": "codex",
|
|
25
|
+
"Kilo Code": "kilo",
|
|
26
|
+
"Kiro CLI": "kiro",
|
|
27
|
+
"Pi CLI": "pi",
|
|
28
|
+
"Pi Coding Agent": "pi",
|
|
29
|
+
// Issue #542 — Pi rebranded to OMP. Upstream
|
|
30
|
+
// refs/platforms/oh-my-pi/packages/coding-agent/src/mcp/client.ts:46-49
|
|
31
|
+
// ships clientInfo.name = "omp-coding-agent". Resolved to the OMP
|
|
32
|
+
// adapter (~/.omp/, PI_CODING_AGENT_DIR). Legacy "Pi CLI" /
|
|
33
|
+
// "Pi Coding Agent" entries above still resolve to the pi adapter.
|
|
34
|
+
"omp-coding-agent": "omp",
|
|
35
|
+
"Zed": "zed",
|
|
36
|
+
"zed": "zed",
|
|
37
|
+
"qwen-code": "qwen-code",
|
|
38
|
+
"qwen-cli-mcp-client": "qwen-code",
|
|
39
|
+
"kimi-code": "kimi",
|
|
40
|
+
"kimi": "kimi",
|
|
41
|
+
"Kimi Code": "kimi",
|
|
42
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* adapters/codex/config — Thin re-exports from CodexAdapter.
|
|
3
|
+
*
|
|
4
|
+
* This module exists for backward compatibility. All logic lives in the
|
|
5
|
+
* adapter class (index.ts). New code should use getAdapter() from detect.ts.
|
|
6
|
+
*/
|
|
7
|
+
export { CodexAdapter } from "./index.js";
|
|
8
|
+
export { HOOK_TYPES, ROUTING_INSTRUCTIONS_PATH } from "./hooks.js";
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* adapters/codex/config — Thin re-exports from CodexAdapter.
|
|
3
|
+
*
|
|
4
|
+
* This module exists for backward compatibility. All logic lives in the
|
|
5
|
+
* adapter class (index.ts). New code should use getAdapter() from detect.ts.
|
|
6
|
+
*/
|
|
7
|
+
export { CodexAdapter } from "./index.js";
|
|
8
|
+
export { HOOK_TYPES, ROUTING_INSTRUCTIONS_PATH } from "./hooks.js";
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* adapters/codex/hooks — Codex CLI hook definitions.
|
|
3
|
+
*
|
|
4
|
+
* Codex CLI hooks run behind the current `hooks` feature flag surface.
|
|
5
|
+
* Prefer `[features].hooks`; the legacy `[features].codex_hooks` alias is still
|
|
6
|
+
* accepted in current Codex builds.
|
|
7
|
+
* 6 hook events: PreToolUse, PostToolUse, PreCompact, SessionStart,
|
|
8
|
+
* UserPromptSubmit, Stop. PreCompact is runtime-gated on Codex builds that emit
|
|
9
|
+
* the event.
|
|
10
|
+
* Same JSON stdin/stdout wire protocol as Claude Code.
|
|
11
|
+
*
|
|
12
|
+
* Config: $CODEX_HOME/hooks.json or ~/.codex/hooks.json.
|
|
13
|
+
* MCP: full support via [mcp_servers] in $CODEX_HOME/config.toml.
|
|
14
|
+
*
|
|
15
|
+
* Known limitations:
|
|
16
|
+
* - PreToolUse: deny works on all builds. permissionDecision:"allow" +
|
|
17
|
+
* updatedInput (command rewrite) and additionalContext are honored on
|
|
18
|
+
* codex-cli >= 0.141.0 (#845), detected at runtime by
|
|
19
|
+
* hooks/core/codex-caps.mjs; older builds fail closed (redirect → deny).
|
|
20
|
+
* `ask` remains unsupported.
|
|
21
|
+
* - PostToolUse: updatedMCPToolOutput parsed but logged as unsupported
|
|
22
|
+
* - PostToolUse does not fire on failing Bash calls (upstream bug)
|
|
23
|
+
*/
|
|
24
|
+
/** Codex CLI hook types — mirrors Claude Code's continuity events. */
|
|
25
|
+
export declare const HOOK_TYPES: {
|
|
26
|
+
readonly PRE_TOOL_USE: "PreToolUse";
|
|
27
|
+
readonly POST_TOOL_USE: "PostToolUse";
|
|
28
|
+
readonly PRE_COMPACT: "PreCompact";
|
|
29
|
+
readonly SESSION_START: "SessionStart";
|
|
30
|
+
readonly USER_PROMPT_SUBMIT: "UserPromptSubmit";
|
|
31
|
+
readonly STOP: "Stop";
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* External MCP catch-all matcher for Codex CLI (#529, #547 hotfix).
|
|
35
|
+
*
|
|
36
|
+
* Codex CLI's hook `tool_name` payload uses `mcp__<server>__<tool>` for any
|
|
37
|
+
* MCP-namespaced tool. Originally this constant used a negative lookahead
|
|
38
|
+
* `mcp__(?!.*context-mode)` to exclude context-mode's own MCP tools at the
|
|
39
|
+
* matcher layer. v1.0.124 shipped that pattern and Codex (Rust `regex` crate)
|
|
40
|
+
* rejected the matcher at boot with "look-around not supported", breaking
|
|
41
|
+
* every Codex user (#547).
|
|
42
|
+
*
|
|
43
|
+
* Fix: drop the lookaround. The matcher is now a charset-clean literal
|
|
44
|
+
* (`[A-Za-z0-9_|]` only), satisfying Codex's `is_exact_matcher`
|
|
45
|
+
* (refs/platforms/codex/codex-rs/hooks/src/events/common.rs:152) which
|
|
46
|
+
* short-circuits the regex engine entirely. context-mode's own MCP tools are
|
|
47
|
+
* already filtered in the hook BODY by `isExternalMcpTool()` in
|
|
48
|
+
* hooks/core/routing.mjs — semantics preserved.
|
|
49
|
+
*/
|
|
50
|
+
export declare const EXTERNAL_MCP_MATCHER_PATTERN = "mcp__";
|
|
51
|
+
/**
|
|
52
|
+
* Path to the routing instructions file for Codex CLI.
|
|
53
|
+
* Used as fallback routing awareness alongside hook-based enforcement.
|
|
54
|
+
*/
|
|
55
|
+
export declare const ROUTING_INSTRUCTIONS_PATH = "configs/codex/AGENTS.md";
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* adapters/codex/hooks — Codex CLI hook definitions.
|
|
3
|
+
*
|
|
4
|
+
* Codex CLI hooks run behind the current `hooks` feature flag surface.
|
|
5
|
+
* Prefer `[features].hooks`; the legacy `[features].codex_hooks` alias is still
|
|
6
|
+
* accepted in current Codex builds.
|
|
7
|
+
* 6 hook events: PreToolUse, PostToolUse, PreCompact, SessionStart,
|
|
8
|
+
* UserPromptSubmit, Stop. PreCompact is runtime-gated on Codex builds that emit
|
|
9
|
+
* the event.
|
|
10
|
+
* Same JSON stdin/stdout wire protocol as Claude Code.
|
|
11
|
+
*
|
|
12
|
+
* Config: $CODEX_HOME/hooks.json or ~/.codex/hooks.json.
|
|
13
|
+
* MCP: full support via [mcp_servers] in $CODEX_HOME/config.toml.
|
|
14
|
+
*
|
|
15
|
+
* Known limitations:
|
|
16
|
+
* - PreToolUse: deny works on all builds. permissionDecision:"allow" +
|
|
17
|
+
* updatedInput (command rewrite) and additionalContext are honored on
|
|
18
|
+
* codex-cli >= 0.141.0 (#845), detected at runtime by
|
|
19
|
+
* hooks/core/codex-caps.mjs; older builds fail closed (redirect → deny).
|
|
20
|
+
* `ask` remains unsupported.
|
|
21
|
+
* - PostToolUse: updatedMCPToolOutput parsed but logged as unsupported
|
|
22
|
+
* - PostToolUse does not fire on failing Bash calls (upstream bug)
|
|
23
|
+
*/
|
|
24
|
+
// ─────────────────────────────────────────────────────────
|
|
25
|
+
// Hook type constants
|
|
26
|
+
// ─────────────────────────────────────────────────────────
|
|
27
|
+
/** Codex CLI hook types — mirrors Claude Code's continuity events. */
|
|
28
|
+
export const HOOK_TYPES = {
|
|
29
|
+
PRE_TOOL_USE: "PreToolUse",
|
|
30
|
+
POST_TOOL_USE: "PostToolUse",
|
|
31
|
+
PRE_COMPACT: "PreCompact",
|
|
32
|
+
SESSION_START: "SessionStart",
|
|
33
|
+
USER_PROMPT_SUBMIT: "UserPromptSubmit",
|
|
34
|
+
STOP: "Stop",
|
|
35
|
+
};
|
|
36
|
+
// ─────────────────────────────────────────────────────────
|
|
37
|
+
// External MCP routing matcher (#529)
|
|
38
|
+
// ─────────────────────────────────────────────────────────
|
|
39
|
+
/**
|
|
40
|
+
* External MCP catch-all matcher for Codex CLI (#529, #547 hotfix).
|
|
41
|
+
*
|
|
42
|
+
* Codex CLI's hook `tool_name` payload uses `mcp__<server>__<tool>` for any
|
|
43
|
+
* MCP-namespaced tool. Originally this constant used a negative lookahead
|
|
44
|
+
* `mcp__(?!.*context-mode)` to exclude context-mode's own MCP tools at the
|
|
45
|
+
* matcher layer. v1.0.124 shipped that pattern and Codex (Rust `regex` crate)
|
|
46
|
+
* rejected the matcher at boot with "look-around not supported", breaking
|
|
47
|
+
* every Codex user (#547).
|
|
48
|
+
*
|
|
49
|
+
* Fix: drop the lookaround. The matcher is now a charset-clean literal
|
|
50
|
+
* (`[A-Za-z0-9_|]` only), satisfying Codex's `is_exact_matcher`
|
|
51
|
+
* (refs/platforms/codex/codex-rs/hooks/src/events/common.rs:152) which
|
|
52
|
+
* short-circuits the regex engine entirely. context-mode's own MCP tools are
|
|
53
|
+
* already filtered in the hook BODY by `isExternalMcpTool()` in
|
|
54
|
+
* hooks/core/routing.mjs — semantics preserved.
|
|
55
|
+
*/
|
|
56
|
+
export const EXTERNAL_MCP_MATCHER_PATTERN = "mcp__";
|
|
57
|
+
// ─────────────────────────────────────────────────────────
|
|
58
|
+
// Routing instructions
|
|
59
|
+
// ─────────────────────────────────────────────────────────
|
|
60
|
+
/**
|
|
61
|
+
* Path to the routing instructions file for Codex CLI.
|
|
62
|
+
* Used as fallback routing awareness alongside hook-based enforcement.
|
|
63
|
+
*/
|
|
64
|
+
export const ROUTING_INSTRUCTIONS_PATH = "configs/codex/AGENTS.md";
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* adapters/codex — Codex CLI platform adapter.
|
|
3
|
+
*
|
|
4
|
+
* Implements HookAdapter for Codex CLI's JSON stdin/stdout paradigm.
|
|
5
|
+
*
|
|
6
|
+
* Codex CLI hook specifics:
|
|
7
|
+
* - 6 hook events: PreToolUse, PostToolUse, PreCompact, SessionStart, UserPromptSubmit, Stop
|
|
8
|
+
* - Same wire protocol as Claude Code (JSON stdin → stdout)
|
|
9
|
+
* - Config: $CODEX_HOME or ~/.codex (hooks.json + config.toml)
|
|
10
|
+
* - Session dir: $CODEX_HOME/context-mode/sessions/
|
|
11
|
+
*
|
|
12
|
+
* Hook dispatch is stable in Codex CLI. PreToolUse deny decisions work,
|
|
13
|
+
* while input rewriting remains blocked on upstream updatedInput support.
|
|
14
|
+
* Track: https://github.com/openai/codex/issues/18491
|
|
15
|
+
*/
|
|
16
|
+
import { BaseAdapter } from "../base.js";
|
|
17
|
+
import { type HookAdapter, type HookParadigm, type PlatformCapabilities, type DiagnosticResult, type PreToolUseEvent, type PostToolUseEvent, type PreCompactEvent, type SessionStartEvent, type PreToolUseResponse, type PostToolUseResponse, type PreCompactResponse, type SessionStartResponse, type HookRegistration } from "../types.js";
|
|
18
|
+
type CodexVersionRunner = (file: string, args: string[], options: {
|
|
19
|
+
encoding: BufferEncoding;
|
|
20
|
+
stdio: ["ignore", "pipe", "ignore"];
|
|
21
|
+
timeout: number;
|
|
22
|
+
}) => string | Buffer;
|
|
23
|
+
interface CodexAdapterOptions {
|
|
24
|
+
codexPluginListRunner?: CodexVersionRunner;
|
|
25
|
+
}
|
|
26
|
+
export declare function probeCodexCliVersion(runCommand?: CodexVersionRunner): string | null;
|
|
27
|
+
export declare function parseCodexContextModePluginRoot(raw: string): string | null;
|
|
28
|
+
export declare class CodexAdapter extends BaseAdapter implements HookAdapter {
|
|
29
|
+
private readonly codexPluginListRunner;
|
|
30
|
+
constructor(options?: CodexAdapterOptions);
|
|
31
|
+
readonly name = "Codex CLI";
|
|
32
|
+
readonly paradigm: HookParadigm;
|
|
33
|
+
readonly capabilities: PlatformCapabilities;
|
|
34
|
+
parsePreToolUseInput(raw: unknown): PreToolUseEvent;
|
|
35
|
+
parsePostToolUseInput(raw: unknown): PostToolUseEvent;
|
|
36
|
+
parsePreCompactInput(raw: unknown): PreCompactEvent;
|
|
37
|
+
parseSessionStartInput(raw: unknown): SessionStartEvent;
|
|
38
|
+
formatPreToolUseResponse(response: PreToolUseResponse): unknown;
|
|
39
|
+
formatPostToolUseResponse(response: PostToolUseResponse): unknown;
|
|
40
|
+
formatPreCompactResponse(response: PreCompactResponse): unknown;
|
|
41
|
+
formatSessionStartResponse(response: SessionStartResponse): unknown;
|
|
42
|
+
getConfigDir(_projectDir?: string): string;
|
|
43
|
+
getSettingsPath(): string;
|
|
44
|
+
getSessionDir(): string;
|
|
45
|
+
getInstructionFiles(): string[];
|
|
46
|
+
getMemoryDir(projectDir?: string): string;
|
|
47
|
+
generateHookConfig(_pluginRoot: string): HookRegistration;
|
|
48
|
+
readSettings(): Record<string, unknown> | null;
|
|
49
|
+
writeSettings(_settings: Record<string, unknown>): void;
|
|
50
|
+
validateHooks(pluginRoot: string): DiagnosticResult[];
|
|
51
|
+
checkPluginRegistration(): DiagnosticResult;
|
|
52
|
+
getInstalledVersion(): string;
|
|
53
|
+
configureAllHooks(pluginRoot: string): string[];
|
|
54
|
+
backupSettings(): string | null;
|
|
55
|
+
setHookPermissions(_pluginRoot: string): string[];
|
|
56
|
+
updatePluginRegistry(_pluginRoot: string, _version: string): void;
|
|
57
|
+
getRoutingInstructions(): string;
|
|
58
|
+
/**
|
|
59
|
+
* Resolve the project directory for a Codex hook input.
|
|
60
|
+
* Priority: input.cwd > CODEX_PROJECT_DIR env > process.cwd().
|
|
61
|
+
* Mirrors the cursor / opencode pattern so downstream hooks always
|
|
62
|
+
* receive a defined projectDir even under worktrees or when the
|
|
63
|
+
* platform omits cwd from the wire payload.
|
|
64
|
+
*/
|
|
65
|
+
private getProjectDir;
|
|
66
|
+
getHooksPath(): string;
|
|
67
|
+
private backupFile;
|
|
68
|
+
private readHooksConfig;
|
|
69
|
+
private writeHooksConfig;
|
|
70
|
+
private upsertManagedHookEntry;
|
|
71
|
+
private removeManagedHookEntries;
|
|
72
|
+
private hasCodexPluginHookManifest;
|
|
73
|
+
private getCodexPluginHookStatus;
|
|
74
|
+
private probeCodexContextModePluginRoot;
|
|
75
|
+
private samePath;
|
|
76
|
+
private pruneStaleUserHookTrustState;
|
|
77
|
+
private isExpectedHookEntry;
|
|
78
|
+
private isManagedContextModeEntry;
|
|
79
|
+
private entryContainsManagedCommand;
|
|
80
|
+
private normalizeCommand;
|
|
81
|
+
/**
|
|
82
|
+
* Extract session ID from Codex CLI hook input.
|
|
83
|
+
* Priority: session_id field > fallback to ppid.
|
|
84
|
+
*/
|
|
85
|
+
private extractSessionId;
|
|
86
|
+
}
|
|
87
|
+
export {};
|