@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,623 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* adapters/detect — Auto-detect which platform is running.
|
|
3
|
+
*
|
|
4
|
+
* Detection priority:
|
|
5
|
+
* 1. Environment variables (high confidence)
|
|
6
|
+
* 2. Config directory existence (medium confidence)
|
|
7
|
+
* 3. Fallback to Claude Code (low confidence — most common)
|
|
8
|
+
*
|
|
9
|
+
* Verified env vars per platform (from source code audit):
|
|
10
|
+
* - Claude Code: CLAUDE_CODE_ENTRYPOINT, CLAUDE_PLUGIN_ROOT,
|
|
11
|
+
* CLAUDE_PROJECT_DIR, CLAUDE_SESSION_ID | ~/.claude/
|
|
12
|
+
* - Gemini CLI: GEMINI_PROJECT_DIR (hooks), GEMINI_CLI (MCP) | ~/.gemini/
|
|
13
|
+
* - KiloCode: KILO, KILO_PID | ~/.config/kilo/
|
|
14
|
+
* - OpenCode: OPENCODE_PROJECT_DIR, OPENCODE_CLIENT,
|
|
15
|
+
* OPENCODE_TERMINAL, OPENCODE, OPENCODE_PID |
|
|
16
|
+
* ~/.config/opencode/
|
|
17
|
+
* - OpenClaw: OPENCLAW_HOME, OPENCLAW_CLI | ~/.openclaw/
|
|
18
|
+
* - Codex CLI: CODEX_CI, CODEX_THREAD_ID | ~/.codex/
|
|
19
|
+
* - Cursor: CURSOR_TRACE_ID (MCP), CURSOR_CLI (terminal) | ~/.cursor/
|
|
20
|
+
* - VS Code Copilot: VSCODE_PID, VSCODE_CWD | ~/.vscode/
|
|
21
|
+
* - JetBrains Copilot: IDEA_INITIAL_DIRECTORY, IDEA_HOME, JETBRAINS_CLIENT_ID | ~/.config/JetBrains/
|
|
22
|
+
*/
|
|
23
|
+
import { existsSync, readFileSync } from "node:fs";
|
|
24
|
+
import { resolve } from "node:path";
|
|
25
|
+
import { homedir } from "node:os";
|
|
26
|
+
import { CLIENT_NAME_TO_PLATFORM } from "./client-map.js";
|
|
27
|
+
let claudeCodePluginCache = null;
|
|
28
|
+
function claudeCodeHasContextModePlugin() {
|
|
29
|
+
if (claudeCodePluginCache !== null) {
|
|
30
|
+
return claudeCodePluginCache !== "miss" && claudeCodePluginCache.hasCM;
|
|
31
|
+
}
|
|
32
|
+
try {
|
|
33
|
+
const path = resolve(homedir(), ".claude", "plugins", "installed_plugins.json");
|
|
34
|
+
const raw = readFileSync(path, "utf-8");
|
|
35
|
+
const parsed = JSON.parse(raw);
|
|
36
|
+
const keys = [
|
|
37
|
+
...Object.keys(parsed.plugins ?? {}),
|
|
38
|
+
...Object.keys(parsed.enabledPlugins ?? {}),
|
|
39
|
+
];
|
|
40
|
+
const hasCM = keys.some((k) => k.includes("context-mode"));
|
|
41
|
+
claudeCodePluginCache = { hasCM };
|
|
42
|
+
return hasCM;
|
|
43
|
+
}
|
|
44
|
+
catch {
|
|
45
|
+
claudeCodePluginCache = "miss";
|
|
46
|
+
return false;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
/** Test-only: reset the installed_plugins.json memo so each test starts cold. */
|
|
50
|
+
export function __resetClaudeCodePluginCacheForTests() {
|
|
51
|
+
claudeCodePluginCache = null;
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* Test-only: pretend installed_plugins.json does not exist (or has no
|
|
55
|
+
* context-mode entry). Lets tests that exercise the genuine vscode-copilot
|
|
56
|
+
* env-var path run on a developer machine that actually has context-mode
|
|
57
|
+
* installed as a Claude Code plugin.
|
|
58
|
+
*/
|
|
59
|
+
export function __seedClaudeCodePluginCacheMissForTests() {
|
|
60
|
+
claudeCodePluginCache = "miss";
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* High-confidence env vars per platform, checked in priority order.
|
|
64
|
+
* Single source of truth — consumed by detectPlatform() below, by
|
|
65
|
+
* `resolveProjectDir({ strictPlatform })` for cascade construction, and by
|
|
66
|
+
* Pi's bridge env scrub. Tests also iterate this map to clear platform-
|
|
67
|
+
* related env vars deterministically.
|
|
68
|
+
*
|
|
69
|
+
* The map shape is `Map<PlatformId, ReadonlyArray<PlatformEnvEntry>>`. Use
|
|
70
|
+
* `getEnvVarNames(p)` to get just the names (legacy `string[]` shape).
|
|
71
|
+
*/
|
|
72
|
+
const _PLATFORM_ENV_VARS_RAW = [
|
|
73
|
+
// Order matters: forks listed BEFORE the fork's parent so collision
|
|
74
|
+
// detection works. Every entry verified against platform's own runtime
|
|
75
|
+
// source code (PR #376 follow-up: full audit, May 2026 — see git blame).
|
|
76
|
+
// Claude Code — verified against a live `env` dump (2026-05-11):
|
|
77
|
+
// CLAUDE_CODE_ENTRYPOINT=cli (set on every CC session)
|
|
78
|
+
// CLAUDE_PLUGIN_ROOT=/Users/.../<version> (set when a plugin is loaded)
|
|
79
|
+
// CLAUDE_PROJECT_DIR=/Users/.../project (set in hooks context)
|
|
80
|
+
// CLAUDE_SESSION_ID=<uuid> (legacy session marker)
|
|
81
|
+
// CLAUDE_CODE_ENTRYPOINT and CLAUDE_PLUGIN_ROOT are CC-exclusive — they
|
|
82
|
+
// are the disambiguators for issue #539 (Claude Code running inside a
|
|
83
|
+
// VS Code integrated terminal that has VSCODE_PID set). They MUST be
|
|
84
|
+
// checked here so detect resolves to claude-code BEFORE falling through
|
|
85
|
+
// to vscode-copilot below.
|
|
86
|
+
["claude-code", [
|
|
87
|
+
{ name: "CLAUDE_CODE_ENTRYPOINT", role: "identification" },
|
|
88
|
+
{ name: "CLAUDE_PLUGIN_ROOT", role: "identification" },
|
|
89
|
+
{ name: "CLAUDE_PROJECT_DIR", role: "workspace" },
|
|
90
|
+
{ name: "CLAUDE_SESSION_ID", role: "identification" },
|
|
91
|
+
]],
|
|
92
|
+
// antigravity (Electron/VSCode fork) — google-gemini/gemini-cli
|
|
93
|
+
// packages/core/src/ide/detect-ide.ts checks ANTIGRAVITY_CLI_ALIAS as the
|
|
94
|
+
// canonical Antigravity marker. Listed before vscode-copilot.
|
|
95
|
+
["antigravity", [
|
|
96
|
+
{ name: "ANTIGRAVITY_CLI_ALIAS", role: "identification" },
|
|
97
|
+
]],
|
|
98
|
+
// cursor (VSCode fork) — listed before vscode-copilot. CURSOR_TRACE_ID has
|
|
99
|
+
// 800+ hits in major OSS detection libs (Vercel Next.js, Bun, Google
|
|
100
|
+
// gemini-cli, Nx, CrewAI). CURSOR_CWD is the documented workspace var
|
|
101
|
+
// (issue #521) — listed first so workspace cascade picks it up.
|
|
102
|
+
["cursor", [
|
|
103
|
+
{ name: "CURSOR_CWD", role: "workspace" },
|
|
104
|
+
{ name: "CURSOR_TRACE_ID", role: "identification" },
|
|
105
|
+
{ name: "CURSOR_CLI", role: "identification" },
|
|
106
|
+
]],
|
|
107
|
+
// kilo (OpenCode fork) — Kilo-Org/kilocode packages/opencode/src/index.ts:138 + 139
|
|
108
|
+
// sets `process.env.KILO = 1` + `process.env.KILO_PID = String(process.pid)`.
|
|
109
|
+
["kilo", [
|
|
110
|
+
{ name: "KILO", role: "identification" },
|
|
111
|
+
{ name: "KILO_PID", role: "identification" },
|
|
112
|
+
]],
|
|
113
|
+
// opencode — sst/opencode packages/opencode/src/index.ts:108-109 sets
|
|
114
|
+
// OPENCODE=1 + OPENCODE_PID=<pid> on CLI invocations. OpenCode desktop
|
|
115
|
+
// shells also expose OPENCODE_CLIENT=desktop and OPENCODE_TERMINAL=1.
|
|
116
|
+
// OPENCODE_PROJECT_DIR is the documented workspace var (consumed by the
|
|
117
|
+
// legacy resolver cascade) — listed first so the workspace cascade picks
|
|
118
|
+
// it up under strict mode.
|
|
119
|
+
["opencode", [
|
|
120
|
+
{ name: "OPENCODE_PROJECT_DIR", role: "workspace" },
|
|
121
|
+
{ name: "OPENCODE_CLIENT", role: "identification" },
|
|
122
|
+
{ name: "OPENCODE_TERMINAL", role: "identification" },
|
|
123
|
+
{ name: "OPENCODE", role: "identification" },
|
|
124
|
+
{ name: "OPENCODE_PID", role: "identification" },
|
|
125
|
+
]],
|
|
126
|
+
// zed — zed-industries/zed crates/terminal/src/terminal.rs sets ZED_TERM=true
|
|
127
|
+
// in `insert_zed_terminal_env()`. Google's gemini-cli uses ZED_SESSION_ID.
|
|
128
|
+
["zed", [
|
|
129
|
+
{ name: "ZED_SESSION_ID", role: "identification" },
|
|
130
|
+
{ name: "ZED_TERM", role: "identification" },
|
|
131
|
+
]],
|
|
132
|
+
// codex — openai/codex codex-rs/core/src/exec_env.rs sets CODEX_THREAD_ID
|
|
133
|
+
// per exec; unified_exec/process_manager.rs sets CODEX_CI in CI mode.
|
|
134
|
+
["codex", [
|
|
135
|
+
{ name: "CODEX_THREAD_ID", role: "identification" },
|
|
136
|
+
{ name: "CODEX_CI", role: "identification" },
|
|
137
|
+
]],
|
|
138
|
+
// gemini-cli — GEMINI_PROJECT_DIR per google-gemini/gemini-cli
|
|
139
|
+
// docs/hooks/index.md; GEMINI_CLI is the MCP-server sentinel.
|
|
140
|
+
["gemini-cli", [
|
|
141
|
+
{ name: "GEMINI_PROJECT_DIR", role: "workspace" },
|
|
142
|
+
{ name: "GEMINI_CLI", role: "identification" },
|
|
143
|
+
]],
|
|
144
|
+
// vscode-copilot — VSCODE_PID + VSCODE_CWD set by microsoft/vscode bootstrap.
|
|
145
|
+
// Listed AFTER cursor and antigravity since they inherit these vars as forks.
|
|
146
|
+
["vscode-copilot", [
|
|
147
|
+
{ name: "VSCODE_CWD", role: "workspace" },
|
|
148
|
+
{ name: "VSCODE_PID", role: "identification" },
|
|
149
|
+
]],
|
|
150
|
+
// jetbrains-copilot — IDEA_INITIAL_DIRECTORY set by JetBrains launcher.
|
|
151
|
+
// (IDEA_HOME and JETBRAINS_CLIENT_ID removed — no source-line evidence.)
|
|
152
|
+
["jetbrains-copilot", [
|
|
153
|
+
{ name: "IDEA_INITIAL_DIRECTORY", role: "workspace" },
|
|
154
|
+
]],
|
|
155
|
+
// qwen-code — QWEN_PROJECT_DIR per QwenLM/qwen-code docs/users/features/hooks.md.
|
|
156
|
+
// (QWEN_SESSION_ID removed — 0 hits in qwen-code repository.)
|
|
157
|
+
["qwen-code", [
|
|
158
|
+
{ name: "QWEN_PROJECT_DIR", role: "workspace" },
|
|
159
|
+
]],
|
|
160
|
+
// omp (can1357/oh-my-pi). PI_CODING_AGENT_DIR is the upstream
|
|
161
|
+
// agent-dir override per `packages/utils/src/dirs.ts:193`. Listed
|
|
162
|
+
// BEFORE pi so OMP is not misclassified as Pi when both are installed.
|
|
163
|
+
["omp", [
|
|
164
|
+
{ name: "PI_CODING_AGENT_DIR", role: "workspace" },
|
|
165
|
+
]],
|
|
166
|
+
// pi — Issue #542 marker correction. PI_PROJECT_DIR is a consumer-set
|
|
167
|
+
// var (read by src/adapters/pi/extension.ts) but is NOT auto-set by
|
|
168
|
+
// the Pi runtime — verified against
|
|
169
|
+
// refs/platforms/oh-my-pi/packages/coding-agent/src/mcp/transports/stdio.ts:55-63
|
|
170
|
+
// (env passthrough only, no synthesis). The Pi runtime DOES set
|
|
171
|
+
// PI_CONFIG_DIR (config dir override), PI_SESSION_FILE (active session
|
|
172
|
+
// path), PI_COMPILED (binary build marker), and PI_CODING_AGENT=true
|
|
173
|
+
// in package-spawned MCP children (#760). PI_CODING_AGENT_DIR is owned
|
|
174
|
+
// by OMP above; keep it there.
|
|
175
|
+
//
|
|
176
|
+
// Issue #545 — PI_WORKSPACE_DIR / PI_PROJECT_DIR are workspace vars set
|
|
177
|
+
// by Pi's bridge so the resolver picks them up under strict mode.
|
|
178
|
+
// PI_WORKSPACE_DIR comes first (extension-set, freshest) before
|
|
179
|
+
// PI_PROJECT_DIR (user override) per registry-author cascade order.
|
|
180
|
+
["pi", [
|
|
181
|
+
// Issue #545 — workspace vars set by Pi's bridge so resolveProjectDir
|
|
182
|
+
// under strict mode picks them up. detect=false because PI_*_DIR are
|
|
183
|
+
// consumer-set and must NOT misclassify a non-Pi host as Pi (#542).
|
|
184
|
+
{ name: "PI_WORKSPACE_DIR", role: "workspace", detect: false },
|
|
185
|
+
{ name: "PI_PROJECT_DIR", role: "workspace", detect: false },
|
|
186
|
+
{ name: "PI_CONFIG_DIR", role: "identification" },
|
|
187
|
+
{ name: "PI_SESSION_FILE", role: "identification" },
|
|
188
|
+
{ name: "PI_COMPILED", role: "identification" },
|
|
189
|
+
{ name: "PI_CODING_AGENT", role: "identification" },
|
|
190
|
+
]],
|
|
191
|
+
// openclaw — removed (runtime never sets OPENCLAW_HOME or OPENCLAW_CLI;
|
|
192
|
+
// detection falls through to ~/.openclaw/ config-dir tier below).
|
|
193
|
+
// kiro — not listed (no auto-set process env vars; ~/.kiro/ config-dir tier).
|
|
194
|
+
];
|
|
195
|
+
export const PLATFORM_ENV_VARS = new Map(_PLATFORM_ENV_VARS_RAW);
|
|
196
|
+
/**
|
|
197
|
+
* Backwards-compat shim: legacy `string[]` shape used by detection logic and
|
|
198
|
+
* by tests that iterate the registry to clear env vars. Always returns the
|
|
199
|
+
* names in registry order.
|
|
200
|
+
*/
|
|
201
|
+
export function getEnvVarNames(platform) {
|
|
202
|
+
return (PLATFORM_ENV_VARS.get(platform) ?? []).map((e) => e.name);
|
|
203
|
+
}
|
|
204
|
+
/**
|
|
205
|
+
* Issue #545 — return only role=workspace env var names for a platform, in
|
|
206
|
+
* registry order. Empty array for adapters with no workspace var (e.g.
|
|
207
|
+
* codex, kilo, zed, antigravity, openclaw, kiro). Consumed by
|
|
208
|
+
* `resolveProjectDir({ strictPlatform })` to build the cascade.
|
|
209
|
+
*/
|
|
210
|
+
export function workspaceEnvVarsFor(platform) {
|
|
211
|
+
return (PLATFORM_ENV_VARS.get(platform) ?? [])
|
|
212
|
+
.filter((e) => e.role === "workspace")
|
|
213
|
+
.map((e) => e.name);
|
|
214
|
+
}
|
|
215
|
+
/**
|
|
216
|
+
* Issue #545 — return the union of workspace env vars from ALL platforms
|
|
217
|
+
* EXCEPT the given one. Consumed by Pi's bridge env scrub (strip foreign
|
|
218
|
+
* workspace vars from spawned MCP child) and by the matrix regression test.
|
|
219
|
+
*/
|
|
220
|
+
export function foreignWorkspaceEnv(platform) {
|
|
221
|
+
const ban = new Set();
|
|
222
|
+
for (const [p, vars] of PLATFORM_ENV_VARS) {
|
|
223
|
+
if (p === platform)
|
|
224
|
+
continue;
|
|
225
|
+
for (const v of vars) {
|
|
226
|
+
if (v.role === "workspace")
|
|
227
|
+
ban.add(v.name);
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
return ban;
|
|
231
|
+
}
|
|
232
|
+
/**
|
|
233
|
+
* Issue #561 — return the union of identification env vars from ALL
|
|
234
|
+
* platforms EXCEPT the given one. Sibling of `foreignWorkspaceEnv`,
|
|
235
|
+
* filtered on `role === "identification"` instead of "workspace".
|
|
236
|
+
*
|
|
237
|
+
* Consumed by Pi's bridge env scrub: when Pi spawns the context-mode
|
|
238
|
+
* MCP child, the child inherits the host shell env including any
|
|
239
|
+
* identification vars set by a co-resident Claude Code session
|
|
240
|
+
* (CLAUDE_CODE_ENTRYPOINT / CLAUDE_PLUGIN_ROOT). Without scrubbing,
|
|
241
|
+
* `detectPlatform()` in the child falls through env priority order and
|
|
242
|
+
* resolves to claude-code first — Pi's session data then writes into
|
|
243
|
+
* `~/.claude/context-mode/` instead of Pi's own dir. Scrubbing FOREIGN
|
|
244
|
+
* identification vars (everyone else's) preserves Pi's OWN identification
|
|
245
|
+
* vars (PI_CONFIG_DIR / PI_SESSION_FILE / PI_COMPILED) so the child still
|
|
246
|
+
* detects pi correctly.
|
|
247
|
+
*
|
|
248
|
+
* Algorithmic, registry-driven — adding adapter #16 grows the scrub
|
|
249
|
+
* automatically (no edit to mcp-bridge.ts).
|
|
250
|
+
*/
|
|
251
|
+
export function foreignIdentificationEnv(platform) {
|
|
252
|
+
const ban = new Set();
|
|
253
|
+
for (const [p, vars] of PLATFORM_ENV_VARS) {
|
|
254
|
+
if (p === platform)
|
|
255
|
+
continue;
|
|
256
|
+
for (const v of vars) {
|
|
257
|
+
if (v.role === "identification")
|
|
258
|
+
ban.add(v.name);
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
return ban;
|
|
262
|
+
}
|
|
263
|
+
/**
|
|
264
|
+
* Sync map from platform identifier → home-relative path segments where that
|
|
265
|
+
* platform stores its config. Mirrors the `super([...])` argument passed by
|
|
266
|
+
* each adapter — kept in sync as the single source of truth used when we need
|
|
267
|
+
* a session dir BEFORE an adapter has been instantiated (race window between
|
|
268
|
+
* MCP server start and `initialize` handshake completion).
|
|
269
|
+
*
|
|
270
|
+
* Returns `null` for "unknown" or any string outside the supported set so the
|
|
271
|
+
* caller can decide on a safe fallback.
|
|
272
|
+
*/
|
|
273
|
+
export function getSessionDirSegments(platform) {
|
|
274
|
+
switch (platform) {
|
|
275
|
+
case "claude-code": return [".claude"];
|
|
276
|
+
case "gemini-cli": return [".gemini"];
|
|
277
|
+
case "antigravity": return [".gemini"];
|
|
278
|
+
case "antigravity-cli": return [".gemini"];
|
|
279
|
+
case "openclaw": return [".openclaw"];
|
|
280
|
+
case "codex": return [".codex"];
|
|
281
|
+
case "cursor": return [".cursor"];
|
|
282
|
+
case "vscode-copilot": return [".vscode"];
|
|
283
|
+
case "copilot-cli": return [".copilot"];
|
|
284
|
+
case "kiro": return [".kiro"];
|
|
285
|
+
case "pi": return [".pi"];
|
|
286
|
+
case "omp": return [".omp"];
|
|
287
|
+
case "qwen-code": return [".qwen"];
|
|
288
|
+
case "kimi": return [".kimi-code"];
|
|
289
|
+
case "kilo": return [".config", "kilo"];
|
|
290
|
+
case "opencode": return [".config", "opencode"];
|
|
291
|
+
case "zed": return [".config", "zed"];
|
|
292
|
+
case "jetbrains-copilot": return [".config", "JetBrains"];
|
|
293
|
+
default: return null;
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
/**
|
|
297
|
+
* Detect the current platform by checking env vars and config dirs.
|
|
298
|
+
*
|
|
299
|
+
* @param clientInfo - Optional MCP clientInfo from initialize handshake.
|
|
300
|
+
* When provided, takes highest priority (zero-config detection).
|
|
301
|
+
*/
|
|
302
|
+
export function detectPlatform(clientInfo) {
|
|
303
|
+
// ── Highest priority: MCP clientInfo ──────────────────
|
|
304
|
+
if (clientInfo?.name) {
|
|
305
|
+
const platform = CLIENT_NAME_TO_PLATFORM[clientInfo.name];
|
|
306
|
+
if (platform) {
|
|
307
|
+
return {
|
|
308
|
+
platform,
|
|
309
|
+
confidence: "high",
|
|
310
|
+
reason: `MCP clientInfo.name="${clientInfo.name}"`,
|
|
311
|
+
};
|
|
312
|
+
}
|
|
313
|
+
// Qwen Code uses dynamic client names: qwen-cli-mcp-client-<serverName>
|
|
314
|
+
if (clientInfo.name.startsWith("qwen-cli-mcp-client")) {
|
|
315
|
+
return {
|
|
316
|
+
platform: "qwen-code",
|
|
317
|
+
confidence: "high",
|
|
318
|
+
reason: `MCP clientInfo.name="${clientInfo.name}" (qwen-cli pattern)`,
|
|
319
|
+
};
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
// ── Explicit platform override ────────────────────────
|
|
323
|
+
const platformOverride = process.env.CONTEXT_MODE_PLATFORM;
|
|
324
|
+
if (platformOverride) {
|
|
325
|
+
const validPlatforms = [
|
|
326
|
+
"claude-code", "gemini-cli", "kilo", "opencode", "codex",
|
|
327
|
+
"vscode-copilot", "jetbrains-copilot", "copilot-cli", "cursor", "antigravity", "antigravity-cli", "kiro", "pi", "omp", "zed", "qwen-code", "kimi",
|
|
328
|
+
];
|
|
329
|
+
if (validPlatforms.includes(platformOverride)) {
|
|
330
|
+
return {
|
|
331
|
+
platform: platformOverride,
|
|
332
|
+
confidence: "high",
|
|
333
|
+
reason: `CONTEXT_MODE_PLATFORM=${platformOverride} override`,
|
|
334
|
+
};
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
// ── High confidence: environment variables ─────────────
|
|
338
|
+
for (const [platform, vars] of PLATFORM_ENV_VARS) {
|
|
339
|
+
if (vars.some((v) => v.detect !== false && process.env[v.name])) {
|
|
340
|
+
// Issue #539 belt-and-suspenders: VSCODE_PID/VSCODE_CWD are exported
|
|
341
|
+
// by VS Code into EVERY child process — including a Claude Code CLI
|
|
342
|
+
// launched from the integrated terminal. If env vars alone want to
|
|
343
|
+
// resolve to vscode-copilot, but ~/.claude/plugins/installed_plugins.json
|
|
344
|
+
// lists context-mode as a Claude Code plugin, the runtime must be
|
|
345
|
+
// Claude Code (VS Code Copilot has no plugin concept). The env-var
|
|
346
|
+
// tier above already handles the common case via CLAUDE_CODE_ENTRYPOINT
|
|
347
|
+
// / CLAUDE_PLUGIN_ROOT; this branch covers MCP-server-only boots where
|
|
348
|
+
// those vars have not propagated yet.
|
|
349
|
+
if (platform === "vscode-copilot" && claudeCodeHasContextModePlugin()) {
|
|
350
|
+
return {
|
|
351
|
+
platform: "claude-code",
|
|
352
|
+
confidence: "high",
|
|
353
|
+
reason: "VSCODE_PID set but ~/.claude/plugins/installed_plugins.json lists context-mode (issue #539 fallback)",
|
|
354
|
+
};
|
|
355
|
+
}
|
|
356
|
+
return {
|
|
357
|
+
platform,
|
|
358
|
+
confidence: "high",
|
|
359
|
+
reason: `${vars.filter((v) => v.detect !== false).map((v) => v.name).join(" or ")} env var set`,
|
|
360
|
+
};
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
// ── Medium confidence: config directory existence ──────
|
|
364
|
+
const home = homedir();
|
|
365
|
+
// Issue #774 — dedicated CLI agents (Antigravity CLI `agy`, GitHub Copilot
|
|
366
|
+
// CLI) MUST be probed BEFORE the generic ~/.claude and ~/.gemini fallbacks.
|
|
367
|
+
// A user migrating from gemini-cli to `agy` keeps ~/.claude AND ~/.gemini, so
|
|
368
|
+
// the ~/.claude check below otherwise wins and `context-mode doctor`
|
|
369
|
+
// mis-detected `agy` as Claude Code — pointing storage at ~/.claude and
|
|
370
|
+
// reporting the wrong platform (reproduced in #774).
|
|
371
|
+
//
|
|
372
|
+
// Regression guard (whole-branch detection-ordering review): these markers
|
|
373
|
+
// are deliberately narrow so they cannot relocate an existing Claude Code
|
|
374
|
+
// user's storage from a bare shell. The antigravity-cli markers are either
|
|
375
|
+
// agy-exclusive (`~/.local/bin/agy`, `~/.gemini/antigravity-cli`) or map to
|
|
376
|
+
// the SAME `~/.gemini` root as gemini-cli (so a mis-detect is storage-neutral
|
|
377
|
+
// and never collides with `~/.gemini/settings.json` (gemini-cli) or
|
|
378
|
+
// `~/.gemini/antigravity/` (Antigravity IDE)). The copilot-cli marker is
|
|
379
|
+
// gated on a context-mode-written file (NOT a bare `~/.copilot/` directory),
|
|
380
|
+
// so a Claude Code user who merely co-installed GitHub Copilot CLI — but has
|
|
381
|
+
// not configured context-mode for it — is NOT pulled away from ~/.claude.
|
|
382
|
+
// GitHub Copilot CLI's config root is relocatable via COPILOT_HOME (the
|
|
383
|
+
// documented relocation env, incl. on Windows), so the marker must honor it —
|
|
384
|
+
// not just ~/.copilot. Mirrors copilotCliHome() in copilot-cli/index.ts.
|
|
385
|
+
const copilotHome = (() => {
|
|
386
|
+
const raw = process.env.COPILOT_HOME;
|
|
387
|
+
if (raw && raw.trim() !== "") {
|
|
388
|
+
return raw.startsWith("~") ? resolve(home, raw.replace(/^~[/\\]?/, "")) : resolve(raw);
|
|
389
|
+
}
|
|
390
|
+
return resolve(home, ".copilot");
|
|
391
|
+
})();
|
|
392
|
+
const copilotConfigured = existsSync(resolve(copilotHome, "mcp-config.json")) ||
|
|
393
|
+
existsSync(resolve(copilotHome, "hooks", "context-mode.json"));
|
|
394
|
+
// A non-empty COPILOT_HOME is an explicit user/session selection, not a
|
|
395
|
+
// passive co-install marker. Respect it before agy's global markers so a
|
|
396
|
+
// Copilot doctor run in an isolated COPILOT_HOME is not stolen by an
|
|
397
|
+
// unrelated ~/.local/bin/agy or ~/.gemini/config/mcp_config.json.
|
|
398
|
+
if (process.env.COPILOT_HOME?.trim() && copilotConfigured) {
|
|
399
|
+
return {
|
|
400
|
+
platform: "copilot-cli",
|
|
401
|
+
confidence: "medium",
|
|
402
|
+
reason: "context-mode config in explicit COPILOT_HOME exists (mcp-config.json or hooks/context-mode.json)",
|
|
403
|
+
};
|
|
404
|
+
}
|
|
405
|
+
if (existsSync(resolve(home, ".local", "bin", "agy")) ||
|
|
406
|
+
existsSync(resolve(home, ".gemini", "antigravity-cli")) ||
|
|
407
|
+
existsSync(resolve(home, ".gemini", "config", "mcp_config.json"))) {
|
|
408
|
+
return {
|
|
409
|
+
platform: "antigravity-cli",
|
|
410
|
+
confidence: "medium",
|
|
411
|
+
reason: "Antigravity CLI marker exists (~/.local/bin/agy, ~/.gemini/antigravity-cli, or ~/.gemini/config/mcp_config.json)",
|
|
412
|
+
};
|
|
413
|
+
}
|
|
414
|
+
if (copilotConfigured) {
|
|
415
|
+
return {
|
|
416
|
+
platform: "copilot-cli",
|
|
417
|
+
confidence: "medium",
|
|
418
|
+
reason: "context-mode config in Copilot CLI home exists (mcp-config.json or hooks/context-mode.json; honors COPILOT_HOME)",
|
|
419
|
+
};
|
|
420
|
+
}
|
|
421
|
+
if (existsSync(resolve(home, ".claude"))) {
|
|
422
|
+
return {
|
|
423
|
+
platform: "claude-code",
|
|
424
|
+
confidence: "medium",
|
|
425
|
+
reason: "~/.claude/ directory exists",
|
|
426
|
+
};
|
|
427
|
+
}
|
|
428
|
+
if (existsSync(resolve(home, ".gemini"))) {
|
|
429
|
+
return {
|
|
430
|
+
platform: "gemini-cli",
|
|
431
|
+
confidence: "medium",
|
|
432
|
+
reason: "~/.gemini/ directory exists",
|
|
433
|
+
};
|
|
434
|
+
}
|
|
435
|
+
if (existsSync(resolve(home, ".codex"))) {
|
|
436
|
+
return {
|
|
437
|
+
platform: "codex",
|
|
438
|
+
confidence: "medium",
|
|
439
|
+
reason: "~/.codex/ directory exists",
|
|
440
|
+
};
|
|
441
|
+
}
|
|
442
|
+
// Issue #542 — CLI agents BEFORE host IDEs.
|
|
443
|
+
//
|
|
444
|
+
// Cursor (a VSCode fork) is the most installed editor across our user
|
|
445
|
+
// base. Checking ~/.cursor/ first means every CLI agent co-installed
|
|
446
|
+
// with Cursor (Pi, OMP, Kiro, Qwen) silently routes through
|
|
447
|
+
// CursorAdapter even though the agent owns the session — Cursor merely
|
|
448
|
+
// hosts the terminal. Reorder: agents (.kiro/.omp/.pi/.qwen/.openclaw)
|
|
449
|
+
// win the medium-confidence tier, editors (~/.cursor/, ~/.vscode/,
|
|
450
|
+
// JetBrains) lose. Verified by the detect-config-dir.test.ts matrix.
|
|
451
|
+
if (existsSync(resolve(home, ".kiro"))) {
|
|
452
|
+
return {
|
|
453
|
+
platform: "kiro",
|
|
454
|
+
confidence: "medium",
|
|
455
|
+
reason: "~/.kiro/ directory exists",
|
|
456
|
+
};
|
|
457
|
+
}
|
|
458
|
+
// OMP listed BEFORE pi: shared ~/.pi history with OMP-only ~/.omp/ marker.
|
|
459
|
+
if (existsSync(resolve(home, ".omp"))) {
|
|
460
|
+
return {
|
|
461
|
+
platform: "omp",
|
|
462
|
+
confidence: "medium",
|
|
463
|
+
reason: "~/.omp/ directory exists",
|
|
464
|
+
};
|
|
465
|
+
}
|
|
466
|
+
if (existsSync(resolve(home, ".pi"))) {
|
|
467
|
+
return {
|
|
468
|
+
platform: "pi",
|
|
469
|
+
confidence: "medium",
|
|
470
|
+
reason: "~/.pi/ directory exists",
|
|
471
|
+
};
|
|
472
|
+
}
|
|
473
|
+
if (existsSync(resolve(home, ".qwen"))) {
|
|
474
|
+
return {
|
|
475
|
+
platform: "qwen-code",
|
|
476
|
+
confidence: "medium",
|
|
477
|
+
reason: "~/.qwen/ directory exists",
|
|
478
|
+
};
|
|
479
|
+
}
|
|
480
|
+
if (existsSync(resolve(home, ".kimi-code"))) {
|
|
481
|
+
return {
|
|
482
|
+
platform: "kimi",
|
|
483
|
+
confidence: "medium",
|
|
484
|
+
reason: "~/.kimi-code/ directory exists",
|
|
485
|
+
};
|
|
486
|
+
}
|
|
487
|
+
if (existsSync(resolve(home, ".openclaw"))) {
|
|
488
|
+
return {
|
|
489
|
+
platform: "openclaw",
|
|
490
|
+
confidence: "medium",
|
|
491
|
+
reason: "~/.openclaw/ directory exists",
|
|
492
|
+
};
|
|
493
|
+
}
|
|
494
|
+
// Cursor / host IDEs — checked AFTER all CLI agents (issue #542).
|
|
495
|
+
if (existsSync(resolve(home, ".cursor"))) {
|
|
496
|
+
return {
|
|
497
|
+
platform: "cursor",
|
|
498
|
+
confidence: "medium",
|
|
499
|
+
reason: "~/.cursor/ directory exists",
|
|
500
|
+
};
|
|
501
|
+
}
|
|
502
|
+
if (existsSync(resolve(home, ".config", "kilo"))) {
|
|
503
|
+
return {
|
|
504
|
+
platform: "kilo",
|
|
505
|
+
confidence: "medium",
|
|
506
|
+
reason: "~/.config/kilo/ directory exists",
|
|
507
|
+
};
|
|
508
|
+
}
|
|
509
|
+
if (existsSync(resolve(home, ".config", "JetBrains"))) {
|
|
510
|
+
return {
|
|
511
|
+
platform: "jetbrains-copilot",
|
|
512
|
+
confidence: "medium",
|
|
513
|
+
reason: "~/.config/JetBrains/ directory exists",
|
|
514
|
+
};
|
|
515
|
+
}
|
|
516
|
+
if (existsSync(resolve(home, ".config", "opencode"))) {
|
|
517
|
+
return {
|
|
518
|
+
platform: "opencode",
|
|
519
|
+
confidence: "medium",
|
|
520
|
+
reason: "~/.config/opencode/ directory exists",
|
|
521
|
+
};
|
|
522
|
+
}
|
|
523
|
+
if (existsSync(resolve(home, ".config", "zed"))) {
|
|
524
|
+
return {
|
|
525
|
+
platform: "zed",
|
|
526
|
+
confidence: "medium",
|
|
527
|
+
reason: "~/.config/zed/ directory exists",
|
|
528
|
+
};
|
|
529
|
+
}
|
|
530
|
+
// ── Low confidence: fallback ───────────────────────────
|
|
531
|
+
return {
|
|
532
|
+
platform: "claude-code",
|
|
533
|
+
confidence: "low",
|
|
534
|
+
reason: "No platform detected, defaulting to Claude Code",
|
|
535
|
+
};
|
|
536
|
+
}
|
|
537
|
+
/**
|
|
538
|
+
* Get the adapter instance for a given platform.
|
|
539
|
+
* Lazily imports platform-specific adapter modules.
|
|
540
|
+
*/
|
|
541
|
+
export async function getAdapter(platform) {
|
|
542
|
+
const target = platform ?? detectPlatform().platform;
|
|
543
|
+
switch (target) {
|
|
544
|
+
case "claude-code": {
|
|
545
|
+
const { ClaudeCodeAdapter } = await import("./claude-code/index.js");
|
|
546
|
+
return new ClaudeCodeAdapter();
|
|
547
|
+
}
|
|
548
|
+
case "gemini-cli": {
|
|
549
|
+
const { GeminiCLIAdapter } = await import("./gemini-cli/index.js");
|
|
550
|
+
return new GeminiCLIAdapter();
|
|
551
|
+
}
|
|
552
|
+
case "kilo":
|
|
553
|
+
case "opencode": {
|
|
554
|
+
const { OpenCodeAdapter } = await import("./opencode/index.js");
|
|
555
|
+
return new OpenCodeAdapter(target);
|
|
556
|
+
}
|
|
557
|
+
case "openclaw": {
|
|
558
|
+
const { OpenClawAdapter } = await import("./openclaw/index.js");
|
|
559
|
+
return new OpenClawAdapter();
|
|
560
|
+
}
|
|
561
|
+
case "codex": {
|
|
562
|
+
const { CodexAdapter } = await import("./codex/index.js");
|
|
563
|
+
return new CodexAdapter();
|
|
564
|
+
}
|
|
565
|
+
case "vscode-copilot": {
|
|
566
|
+
const { VSCodeCopilotAdapter } = await import("./vscode-copilot/index.js");
|
|
567
|
+
return new VSCodeCopilotAdapter();
|
|
568
|
+
}
|
|
569
|
+
case "jetbrains-copilot": {
|
|
570
|
+
const { JetBrainsCopilotAdapter } = await import("./jetbrains-copilot/index.js");
|
|
571
|
+
return new JetBrainsCopilotAdapter();
|
|
572
|
+
}
|
|
573
|
+
case "copilot-cli": {
|
|
574
|
+
const { CopilotCliAdapter } = await import("./copilot-cli/index.js");
|
|
575
|
+
return new CopilotCliAdapter();
|
|
576
|
+
}
|
|
577
|
+
case "cursor": {
|
|
578
|
+
const { CursorAdapter } = await import("./cursor/index.js");
|
|
579
|
+
return new CursorAdapter();
|
|
580
|
+
}
|
|
581
|
+
case "antigravity": {
|
|
582
|
+
const { AntigravityAdapter } = await import("./antigravity/index.js");
|
|
583
|
+
return new AntigravityAdapter();
|
|
584
|
+
}
|
|
585
|
+
case "antigravity-cli": {
|
|
586
|
+
const { AntigravityCliAdapter } = await import("./antigravity-cli/index.js");
|
|
587
|
+
return new AntigravityCliAdapter();
|
|
588
|
+
}
|
|
589
|
+
case "kiro": {
|
|
590
|
+
const { KiroAdapter } = await import("./kiro/index.js");
|
|
591
|
+
return new KiroAdapter();
|
|
592
|
+
}
|
|
593
|
+
case "zed": {
|
|
594
|
+
const { ZedAdapter } = await import("./zed/index.js");
|
|
595
|
+
return new ZedAdapter();
|
|
596
|
+
}
|
|
597
|
+
case "qwen-code": {
|
|
598
|
+
const { QwenCodeAdapter } = await import("./qwen-code/index.js");
|
|
599
|
+
return new QwenCodeAdapter();
|
|
600
|
+
}
|
|
601
|
+
case "omp": {
|
|
602
|
+
const { OMPAdapter } = await import("./omp/index.js");
|
|
603
|
+
return new OMPAdapter();
|
|
604
|
+
}
|
|
605
|
+
case "pi": {
|
|
606
|
+
// Issue #473 follow-up: without this case, getAdapter("pi") fell
|
|
607
|
+
// through to ClaudeCodeAdapter and Pi sessions wrote into
|
|
608
|
+
// ~/.claude/context-mode/. PiAdapter pins storage to ~/.pi/.
|
|
609
|
+
const { PiAdapter } = await import("./pi/index.js");
|
|
610
|
+
return new PiAdapter();
|
|
611
|
+
}
|
|
612
|
+
case "kimi": {
|
|
613
|
+
const { KimiAdapter } = await import("./kimi/index.js");
|
|
614
|
+
return new KimiAdapter();
|
|
615
|
+
}
|
|
616
|
+
default: {
|
|
617
|
+
// Unsupported platform — fall back to Claude Code adapter
|
|
618
|
+
// (MCP server works everywhere, hooks may not)
|
|
619
|
+
const { ClaudeCodeAdapter } = await import("./claude-code/index.js");
|
|
620
|
+
return new ClaudeCodeAdapter();
|
|
621
|
+
}
|
|
622
|
+
}
|
|
623
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* adapters/gemini-cli/config — Thin re-exports from GeminiCLIAdapter.
|
|
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 { GeminiCLIAdapter } from "./index.js";
|
|
8
|
+
export { HOOK_TYPES, HOOK_SCRIPTS, REQUIRED_HOOKS, OPTIONAL_HOOKS } from "./hooks.js";
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* adapters/gemini-cli/config — Thin re-exports from GeminiCLIAdapter.
|
|
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 { GeminiCLIAdapter } from "./index.js";
|
|
8
|
+
export { HOOK_TYPES, HOOK_SCRIPTS, REQUIRED_HOOKS, OPTIONAL_HOOKS } from "./hooks.js";
|