@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,297 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CopilotBaseAdapter — shared implementation for VS Code Copilot and JetBrains Copilot.
|
|
3
|
+
*
|
|
4
|
+
* Both platforms share the SAME Copilot agent runtime:
|
|
5
|
+
* - hookSpecificOutput wrapper with hookEventName
|
|
6
|
+
* - Same hook events (PreToolUse, PostToolUse, PreCompact, SessionStart)
|
|
7
|
+
* - Same .github/hooks/ config location
|
|
8
|
+
* - Same configureHooks logic
|
|
9
|
+
* - Same generateHookConfig format
|
|
10
|
+
* - Same parse/format methods
|
|
11
|
+
*
|
|
12
|
+
* Platform-specific differences handled by subclasses:
|
|
13
|
+
* - extractSessionId() — different env var fallbacks
|
|
14
|
+
* - getProjectDir() — different env vars for project root
|
|
15
|
+
* - getSessionDir() — different default session directories
|
|
16
|
+
* - checkPluginRegistration() — VS Code reads .vscode/mcp.json, JetBrains uses IDE UI
|
|
17
|
+
* - getInstalledVersion() — VS Code checks extensions dir, JetBrains checks hook config
|
|
18
|
+
* - validateHooks() — different warning messages
|
|
19
|
+
*/
|
|
20
|
+
import { readFileSync, writeFileSync, mkdirSync, accessSync, chmodSync, constants, } from "node:fs";
|
|
21
|
+
import { resolve, join } from "node:path";
|
|
22
|
+
import { BaseAdapter } from "./base.js";
|
|
23
|
+
// ─────────────────────────────────────────────────────────
|
|
24
|
+
// Abstract base adapter for Copilot platforms
|
|
25
|
+
// ─────────────────────────────────────────────────────────
|
|
26
|
+
export class CopilotBaseAdapter extends BaseAdapter {
|
|
27
|
+
paradigm = "json-stdio";
|
|
28
|
+
capabilities = {
|
|
29
|
+
preToolUse: true,
|
|
30
|
+
postToolUse: true,
|
|
31
|
+
preCompact: true,
|
|
32
|
+
sessionStart: true,
|
|
33
|
+
canModifyArgs: true,
|
|
34
|
+
canModifyOutput: true,
|
|
35
|
+
canInjectSessionContext: true,
|
|
36
|
+
};
|
|
37
|
+
// ── Input parsing (shared) ─────────────────────────────
|
|
38
|
+
parsePreToolUseInput(raw) {
|
|
39
|
+
const input = raw;
|
|
40
|
+
return {
|
|
41
|
+
toolName: input.tool_name ?? "",
|
|
42
|
+
toolInput: input.tool_input ?? {},
|
|
43
|
+
sessionId: this.extractSessionId(input),
|
|
44
|
+
projectDir: this.getProjectDir(),
|
|
45
|
+
raw,
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
parsePostToolUseInput(raw) {
|
|
49
|
+
const input = raw;
|
|
50
|
+
return {
|
|
51
|
+
toolName: input.tool_name ?? "",
|
|
52
|
+
toolInput: input.tool_input ?? {},
|
|
53
|
+
toolOutput: input.tool_output,
|
|
54
|
+
isError: input.is_error,
|
|
55
|
+
sessionId: this.extractSessionId(input),
|
|
56
|
+
projectDir: this.getProjectDir(),
|
|
57
|
+
raw,
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
parsePreCompactInput(raw) {
|
|
61
|
+
const input = raw;
|
|
62
|
+
return {
|
|
63
|
+
sessionId: this.extractSessionId(input),
|
|
64
|
+
projectDir: this.getProjectDir(),
|
|
65
|
+
raw,
|
|
66
|
+
};
|
|
67
|
+
}
|
|
68
|
+
parseSessionStartInput(raw) {
|
|
69
|
+
const input = raw;
|
|
70
|
+
const rawSource = input.source ?? "startup";
|
|
71
|
+
let source;
|
|
72
|
+
switch (rawSource) {
|
|
73
|
+
case "compact":
|
|
74
|
+
source = "compact";
|
|
75
|
+
break;
|
|
76
|
+
case "resume":
|
|
77
|
+
source = "resume";
|
|
78
|
+
break;
|
|
79
|
+
case "clear":
|
|
80
|
+
source = "clear";
|
|
81
|
+
break;
|
|
82
|
+
default:
|
|
83
|
+
source = "startup";
|
|
84
|
+
}
|
|
85
|
+
return {
|
|
86
|
+
sessionId: this.extractSessionId(input),
|
|
87
|
+
source,
|
|
88
|
+
projectDir: this.getProjectDir(),
|
|
89
|
+
raw,
|
|
90
|
+
};
|
|
91
|
+
}
|
|
92
|
+
// ── Response formatting (shared) ───────────────────────
|
|
93
|
+
formatPreToolUseResponse(response) {
|
|
94
|
+
if (response.decision === "deny") {
|
|
95
|
+
return {
|
|
96
|
+
permissionDecision: "deny",
|
|
97
|
+
reason: response.reason ?? "Blocked by context-mode hook",
|
|
98
|
+
};
|
|
99
|
+
}
|
|
100
|
+
if (response.decision === "modify" && response.updatedInput) {
|
|
101
|
+
return {
|
|
102
|
+
hookSpecificOutput: {
|
|
103
|
+
hookEventName: this.hookModule.HOOK_TYPES.PRE_TOOL_USE,
|
|
104
|
+
updatedInput: response.updatedInput,
|
|
105
|
+
},
|
|
106
|
+
};
|
|
107
|
+
}
|
|
108
|
+
if (response.decision === "context" && response.additionalContext) {
|
|
109
|
+
return {
|
|
110
|
+
hookSpecificOutput: {
|
|
111
|
+
hookEventName: this.hookModule.HOOK_TYPES.PRE_TOOL_USE,
|
|
112
|
+
additionalContext: response.additionalContext,
|
|
113
|
+
},
|
|
114
|
+
};
|
|
115
|
+
}
|
|
116
|
+
if (response.decision === "ask") {
|
|
117
|
+
return {
|
|
118
|
+
permissionDecision: "deny",
|
|
119
|
+
reason: response.reason ?? "Action requires user confirmation (security policy)",
|
|
120
|
+
};
|
|
121
|
+
}
|
|
122
|
+
// "allow" — return undefined for passthrough
|
|
123
|
+
return undefined;
|
|
124
|
+
}
|
|
125
|
+
formatPostToolUseResponse(response) {
|
|
126
|
+
if (response.updatedOutput) {
|
|
127
|
+
return {
|
|
128
|
+
hookSpecificOutput: {
|
|
129
|
+
hookEventName: this.hookModule.HOOK_TYPES.POST_TOOL_USE,
|
|
130
|
+
decision: "block",
|
|
131
|
+
reason: response.updatedOutput,
|
|
132
|
+
},
|
|
133
|
+
};
|
|
134
|
+
}
|
|
135
|
+
if (response.additionalContext) {
|
|
136
|
+
return {
|
|
137
|
+
hookSpecificOutput: {
|
|
138
|
+
hookEventName: this.hookModule.HOOK_TYPES.POST_TOOL_USE,
|
|
139
|
+
additionalContext: response.additionalContext,
|
|
140
|
+
},
|
|
141
|
+
};
|
|
142
|
+
}
|
|
143
|
+
return undefined;
|
|
144
|
+
}
|
|
145
|
+
formatPreCompactResponse(response) {
|
|
146
|
+
return response.context ?? "";
|
|
147
|
+
}
|
|
148
|
+
formatSessionStartResponse(response) {
|
|
149
|
+
return response.context ?? "";
|
|
150
|
+
}
|
|
151
|
+
// ── Configuration (shared) ─────────────────────────────
|
|
152
|
+
/**
|
|
153
|
+
* Resolve the absolute path to the Copilot-style hook settings file.
|
|
154
|
+
*
|
|
155
|
+
* Issue #539 fix: previously this returned `resolve(".github", ...)`
|
|
156
|
+
* — a CWD-relative path. `doctor` (validateHooks) and `upgrade`
|
|
157
|
+
* (configureAllHooks) could legitimately run from different working
|
|
158
|
+
* directories (CLI invoked from a subdir, MCP server cwd=projectDir),
|
|
159
|
+
* so each saw a DIFFERENT settings path and the diagnose/repair loop
|
|
160
|
+
* never converged on the same file.
|
|
161
|
+
*
|
|
162
|
+
* Now anchors on `projectDir` when supplied (matching the sibling
|
|
163
|
+
* `getConfigDir(projectDir?: string)` signature in
|
|
164
|
+
* vscode-copilot/index.ts:93). Falls back to `process.cwd()` to keep
|
|
165
|
+
* existing callers source-compatible — the slice-5 follow-up will
|
|
166
|
+
* thread projectDir through `cli.ts doctor`/`upgrade`.
|
|
167
|
+
*/
|
|
168
|
+
getSettingsPath(projectDir) {
|
|
169
|
+
return resolve(projectDir ?? process.cwd(), ".github", "hooks", "context-mode.json");
|
|
170
|
+
}
|
|
171
|
+
generateHookConfig(pluginRoot) {
|
|
172
|
+
const { HOOK_TYPES, buildHookCommand } = this.hookModule;
|
|
173
|
+
return {
|
|
174
|
+
[HOOK_TYPES.PRE_TOOL_USE]: [
|
|
175
|
+
{
|
|
176
|
+
matcher: "",
|
|
177
|
+
hooks: [
|
|
178
|
+
{
|
|
179
|
+
type: "command",
|
|
180
|
+
command: buildHookCommand(HOOK_TYPES.PRE_TOOL_USE, pluginRoot),
|
|
181
|
+
},
|
|
182
|
+
],
|
|
183
|
+
},
|
|
184
|
+
],
|
|
185
|
+
[HOOK_TYPES.POST_TOOL_USE]: [
|
|
186
|
+
{
|
|
187
|
+
matcher: "",
|
|
188
|
+
hooks: [
|
|
189
|
+
{
|
|
190
|
+
type: "command",
|
|
191
|
+
command: buildHookCommand(HOOK_TYPES.POST_TOOL_USE, pluginRoot),
|
|
192
|
+
},
|
|
193
|
+
],
|
|
194
|
+
},
|
|
195
|
+
],
|
|
196
|
+
[HOOK_TYPES.PRE_COMPACT]: [
|
|
197
|
+
{
|
|
198
|
+
matcher: "",
|
|
199
|
+
hooks: [
|
|
200
|
+
{
|
|
201
|
+
type: "command",
|
|
202
|
+
command: buildHookCommand(HOOK_TYPES.PRE_COMPACT, pluginRoot),
|
|
203
|
+
},
|
|
204
|
+
],
|
|
205
|
+
},
|
|
206
|
+
],
|
|
207
|
+
[HOOK_TYPES.SESSION_START]: [
|
|
208
|
+
{
|
|
209
|
+
matcher: "",
|
|
210
|
+
hooks: [
|
|
211
|
+
{
|
|
212
|
+
type: "command",
|
|
213
|
+
command: buildHookCommand(HOOK_TYPES.SESSION_START, pluginRoot),
|
|
214
|
+
},
|
|
215
|
+
],
|
|
216
|
+
},
|
|
217
|
+
],
|
|
218
|
+
};
|
|
219
|
+
}
|
|
220
|
+
readSettings() {
|
|
221
|
+
// Primary: .github/hooks/context-mode.json
|
|
222
|
+
try {
|
|
223
|
+
const raw = readFileSync(this.getSettingsPath(), "utf-8");
|
|
224
|
+
return JSON.parse(raw);
|
|
225
|
+
}
|
|
226
|
+
catch {
|
|
227
|
+
/* fall through */
|
|
228
|
+
}
|
|
229
|
+
// Fallback: .claude/settings.json
|
|
230
|
+
try {
|
|
231
|
+
const raw = readFileSync(resolve(".claude", "settings.json"), "utf-8");
|
|
232
|
+
return JSON.parse(raw);
|
|
233
|
+
}
|
|
234
|
+
catch {
|
|
235
|
+
return null;
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
writeSettings(settings) {
|
|
239
|
+
const configPath = this.getSettingsPath();
|
|
240
|
+
mkdirSync(resolve(".github", "hooks"), { recursive: true });
|
|
241
|
+
writeFileSync(configPath, JSON.stringify(settings, null, 2) + "\n", "utf-8");
|
|
242
|
+
}
|
|
243
|
+
// ── Upgrade (shared) ──────────────────────────────────
|
|
244
|
+
configureAllHooks(pluginRoot) {
|
|
245
|
+
const changes = [];
|
|
246
|
+
const settings = this.readSettings() ?? {};
|
|
247
|
+
const hooks = settings.hooks ?? {};
|
|
248
|
+
const { HOOK_TYPES, HOOK_SCRIPTS, buildHookCommand } = this.hookModule;
|
|
249
|
+
const hookTypes = [
|
|
250
|
+
HOOK_TYPES.PRE_TOOL_USE,
|
|
251
|
+
HOOK_TYPES.POST_TOOL_USE,
|
|
252
|
+
HOOK_TYPES.PRE_COMPACT,
|
|
253
|
+
HOOK_TYPES.SESSION_START,
|
|
254
|
+
];
|
|
255
|
+
for (const hookType of hookTypes) {
|
|
256
|
+
const script = HOOK_SCRIPTS[hookType];
|
|
257
|
+
if (!script)
|
|
258
|
+
continue;
|
|
259
|
+
hooks[hookType] = [
|
|
260
|
+
{
|
|
261
|
+
matcher: "",
|
|
262
|
+
hooks: [
|
|
263
|
+
{
|
|
264
|
+
type: "command",
|
|
265
|
+
command: buildHookCommand(hookType, pluginRoot),
|
|
266
|
+
},
|
|
267
|
+
],
|
|
268
|
+
},
|
|
269
|
+
];
|
|
270
|
+
changes.push(`Configured ${hookType} hook`);
|
|
271
|
+
}
|
|
272
|
+
settings.hooks = hooks;
|
|
273
|
+
this.writeSettings(settings);
|
|
274
|
+
changes.push(`Wrote hook config to ${this.getSettingsPath()}`);
|
|
275
|
+
return changes;
|
|
276
|
+
}
|
|
277
|
+
setHookPermissions(pluginRoot) {
|
|
278
|
+
const set = [];
|
|
279
|
+
const hooksDir = join(pluginRoot, "hooks", this.hookSubdir);
|
|
280
|
+
for (const scriptName of Object.values(this.hookModule.HOOK_SCRIPTS)) {
|
|
281
|
+
const scriptPath = resolve(hooksDir, scriptName);
|
|
282
|
+
try {
|
|
283
|
+
accessSync(scriptPath, constants.R_OK);
|
|
284
|
+
chmodSync(scriptPath, 0o755);
|
|
285
|
+
set.push(scriptPath);
|
|
286
|
+
}
|
|
287
|
+
catch {
|
|
288
|
+
/* skip missing scripts */
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
return set;
|
|
292
|
+
}
|
|
293
|
+
updatePluginRegistry(_pluginRoot, _version) {
|
|
294
|
+
// Copilot platforms manage plugins through their own marketplaces.
|
|
295
|
+
// No manual registry update needed.
|
|
296
|
+
}
|
|
297
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* adapters/copilot-cli/hooks — GitHub Copilot CLI hook definitions.
|
|
3
|
+
*
|
|
4
|
+
* GitHub Copilot CLI's native hook events are the camelCase names
|
|
5
|
+
* preToolUse / postToolUse / sessionStart / userPromptSubmitted / agentStop /
|
|
6
|
+
* preCompact. Per the copilot-cli changelog, PascalCase event names are ALSO
|
|
7
|
+
* accepted and fire — the CLI loads hook configs across VS Code, Claude Code,
|
|
8
|
+
* and the CLI by accepting PascalCase event names alongside camelCase
|
|
9
|
+
* (copilot-cli changelog.md:1065; see also :811 and :1081). We register the
|
|
10
|
+
* camelCase KEYS below because they are the CLI's native names, not because
|
|
11
|
+
* PascalCase would fail. The CLI dispatch token (the `.mjs` script base, e.g.
|
|
12
|
+
* `pretooluse`) is independent and stays lowercase via buildHookCommand, so
|
|
13
|
+
* changing the event casing does not change the dispatcher.
|
|
14
|
+
*/
|
|
15
|
+
export declare const HOOK_TYPES: {
|
|
16
|
+
readonly PRE_TOOL_USE: "preToolUse";
|
|
17
|
+
readonly POST_TOOL_USE: "postToolUse";
|
|
18
|
+
readonly PRE_COMPACT: "preCompact";
|
|
19
|
+
readonly SESSION_START: "sessionStart";
|
|
20
|
+
readonly USER_PROMPT_SUBMIT: "userPromptSubmitted";
|
|
21
|
+
readonly STOP: "agentStop";
|
|
22
|
+
};
|
|
23
|
+
export type HookType = (typeof HOOK_TYPES)[keyof typeof HOOK_TYPES];
|
|
24
|
+
export declare const HOOK_SCRIPTS: Record<string, string>;
|
|
25
|
+
export declare const REQUIRED_HOOKS: HookType[];
|
|
26
|
+
export declare const OPTIONAL_HOOKS: HookType[];
|
|
27
|
+
export declare function isContextModeHook(entry: {
|
|
28
|
+
command?: string;
|
|
29
|
+
hooks?: Array<{
|
|
30
|
+
command?: string;
|
|
31
|
+
}>;
|
|
32
|
+
}, hookType: HookType): boolean;
|
|
33
|
+
export declare function buildHookCommand(hookType: HookType, _pluginRoot?: string): string;
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* adapters/copilot-cli/hooks — GitHub Copilot CLI hook definitions.
|
|
3
|
+
*
|
|
4
|
+
* GitHub Copilot CLI's native hook events are the camelCase names
|
|
5
|
+
* preToolUse / postToolUse / sessionStart / userPromptSubmitted / agentStop /
|
|
6
|
+
* preCompact. Per the copilot-cli changelog, PascalCase event names are ALSO
|
|
7
|
+
* accepted and fire — the CLI loads hook configs across VS Code, Claude Code,
|
|
8
|
+
* and the CLI by accepting PascalCase event names alongside camelCase
|
|
9
|
+
* (copilot-cli changelog.md:1065; see also :811 and :1081). We register the
|
|
10
|
+
* camelCase KEYS below because they are the CLI's native names, not because
|
|
11
|
+
* PascalCase would fail. The CLI dispatch token (the `.mjs` script base, e.g.
|
|
12
|
+
* `pretooluse`) is independent and stays lowercase via buildHookCommand, so
|
|
13
|
+
* changing the event casing does not change the dispatcher.
|
|
14
|
+
*/
|
|
15
|
+
export const HOOK_TYPES = {
|
|
16
|
+
PRE_TOOL_USE: "preToolUse",
|
|
17
|
+
POST_TOOL_USE: "postToolUse",
|
|
18
|
+
PRE_COMPACT: "preCompact",
|
|
19
|
+
SESSION_START: "sessionStart",
|
|
20
|
+
// Copilot CLI 1.0.60 fires userPromptSubmitted + agentStop (verified against
|
|
21
|
+
// the @github/copilot binary). Used for user-prompt + session-end capture,
|
|
22
|
+
// same as the codex/kimi adapters.
|
|
23
|
+
USER_PROMPT_SUBMIT: "userPromptSubmitted",
|
|
24
|
+
STOP: "agentStop",
|
|
25
|
+
};
|
|
26
|
+
export const HOOK_SCRIPTS = {
|
|
27
|
+
[HOOK_TYPES.PRE_TOOL_USE]: "pretooluse.mjs",
|
|
28
|
+
[HOOK_TYPES.POST_TOOL_USE]: "posttooluse.mjs",
|
|
29
|
+
[HOOK_TYPES.PRE_COMPACT]: "precompact.mjs",
|
|
30
|
+
[HOOK_TYPES.SESSION_START]: "sessionstart.mjs",
|
|
31
|
+
[HOOK_TYPES.USER_PROMPT_SUBMIT]: "userpromptsubmit.mjs",
|
|
32
|
+
[HOOK_TYPES.STOP]: "stop.mjs",
|
|
33
|
+
};
|
|
34
|
+
export const REQUIRED_HOOKS = [
|
|
35
|
+
HOOK_TYPES.PRE_TOOL_USE,
|
|
36
|
+
HOOK_TYPES.SESSION_START,
|
|
37
|
+
];
|
|
38
|
+
export const OPTIONAL_HOOKS = [
|
|
39
|
+
HOOK_TYPES.POST_TOOL_USE,
|
|
40
|
+
HOOK_TYPES.PRE_COMPACT,
|
|
41
|
+
HOOK_TYPES.USER_PROMPT_SUBMIT,
|
|
42
|
+
HOOK_TYPES.STOP,
|
|
43
|
+
];
|
|
44
|
+
export function isContextModeHook(entry, hookType) {
|
|
45
|
+
const scriptName = HOOK_SCRIPTS[hookType];
|
|
46
|
+
if (!scriptName)
|
|
47
|
+
return false;
|
|
48
|
+
const cliCommand = buildHookCommand(hookType);
|
|
49
|
+
if (entry.command?.includes(cliCommand) || entry.command?.includes(scriptName)) {
|
|
50
|
+
return true;
|
|
51
|
+
}
|
|
52
|
+
return (entry.hooks?.some((h) => h.command?.includes(scriptName) || h.command?.includes(cliCommand)) ?? false);
|
|
53
|
+
}
|
|
54
|
+
export function buildHookCommand(hookType, _pluginRoot) {
|
|
55
|
+
const scriptName = HOOK_SCRIPTS[hookType];
|
|
56
|
+
if (!scriptName) {
|
|
57
|
+
throw new Error(`No script defined for hook type: ${hookType}`);
|
|
58
|
+
}
|
|
59
|
+
// The CLI dispatch token is the script base (pretooluse, posttooluse, …), NOT
|
|
60
|
+
// the camelCase host event name — keep them decoupled so the event KEY stays
|
|
61
|
+
// Copilot's camelCase while the dispatcher token (and the cli.ts hook handler)
|
|
62
|
+
// remain stable regardless of how the host names its events.
|
|
63
|
+
return `context-mode hook copilot-cli ${scriptName.replace(/\.mjs$/, "")}`;
|
|
64
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* adapters/copilot-cli — GitHub Copilot CLI adapter.
|
|
3
|
+
*
|
|
4
|
+
* Native config:
|
|
5
|
+
* - MCP: $COPILOT_HOME/mcp-config.json or ~/.copilot/mcp-config.json
|
|
6
|
+
* under root key `mcpServers`.
|
|
7
|
+
* - Hooks: $COPILOT_HOME/hooks/context-mode.json or
|
|
8
|
+
* ~/.copilot/hooks/context-mode.json.
|
|
9
|
+
*
|
|
10
|
+
* Hooks use Copilot CLI's native camelCase event keys (preToolUse /
|
|
11
|
+
* postToolUse / sessionStart / userPromptSubmitted / agentStop / preCompact)
|
|
12
|
+
* with flat `{ type, command }` entries. (The CLI also accepts PascalCase
|
|
13
|
+
* event names alongside camelCase — copilot-cli changelog.md:1065 — so the
|
|
14
|
+
* casing is not load-bearing; we use camelCase because it is the CLI's native
|
|
15
|
+
* naming.) Copilot CLI's command output contract is top-level
|
|
16
|
+
* (`permissionDecision`, `modifiedArgs`, `additionalContext`), so this adapter
|
|
17
|
+
* overrides the response formatter from CopilotBaseAdapter.
|
|
18
|
+
*/
|
|
19
|
+
import { CopilotBaseAdapter } from "../copilot-base.js";
|
|
20
|
+
import type { CopilotHookInput, CopilotHookModule } from "../copilot-base.js";
|
|
21
|
+
import type { DiagnosticResult, HookRegistration, PostToolUseResponse, PreCompactResponse, PostToolUseEvent, PreToolUseEvent, PreToolUseResponse, SessionStartResponse } from "../types.js";
|
|
22
|
+
export declare function copilotCliHome(): string;
|
|
23
|
+
export declare function copilotCliMcpConfigPath(): string;
|
|
24
|
+
export declare class CopilotCliAdapter extends CopilotBaseAdapter {
|
|
25
|
+
constructor();
|
|
26
|
+
readonly name = "GitHub Copilot CLI";
|
|
27
|
+
protected readonly hookModule: CopilotHookModule;
|
|
28
|
+
protected readonly hookSubdir = "copilot-cli";
|
|
29
|
+
protected extractSessionId(input: CopilotHookInput): string;
|
|
30
|
+
protected getProjectDir(): string;
|
|
31
|
+
parsePreToolUseInput(raw: unknown): PreToolUseEvent;
|
|
32
|
+
parsePostToolUseInput(raw: unknown): PostToolUseEvent;
|
|
33
|
+
getSettingsPath(_projectDir?: string): string;
|
|
34
|
+
getConfigDir(_projectDir?: string): string;
|
|
35
|
+
getSessionDir(): string;
|
|
36
|
+
getInstructionFiles(): string[];
|
|
37
|
+
generateHookConfig(pluginRoot: string): HookRegistration;
|
|
38
|
+
writeSettings(settings: Record<string, unknown>): void;
|
|
39
|
+
configureAllHooks(pluginRoot: string): string[];
|
|
40
|
+
readSettings(): Record<string, unknown> | null;
|
|
41
|
+
formatPreToolUseResponse(response: PreToolUseResponse): unknown;
|
|
42
|
+
formatPostToolUseResponse(response: PostToolUseResponse): unknown;
|
|
43
|
+
formatPreCompactResponse(response: PreCompactResponse): unknown;
|
|
44
|
+
formatSessionStartResponse(response: SessionStartResponse): unknown;
|
|
45
|
+
validateHooks(pluginRoot: string): DiagnosticResult[];
|
|
46
|
+
checkPluginRegistration(): DiagnosticResult;
|
|
47
|
+
getInstalledVersion(): string;
|
|
48
|
+
}
|