mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-09-16 23:43:12 +00:00
* feat(setup): implement antigravity integration setup and hook adapter for gitnexus * docs(readme): list Antigravity in supported editors * test(setup-antigravity): pin platform per-test to fix Windows CI failure The MCP entry assertion expected `npx` directly, but on Windows `getMcpEntry()` wraps it as `cmd /c npx ...`, which broke the Windows runner. Pin platform to darwin in beforeEach so the existing assertion is deterministic, restore the descriptor in afterEach, and add a parity test for the win32 cmd-wrapper shape. * fix(antigravity): align hook adapter to Gemini CLI schema + fix Windows CI Rebase the Antigravity integration on the canonical Gemini CLI hooks contract (https://geminicli.com/docs/hooks/reference/), which is the documented schema Antigravity 2.0 inherits: - Hook adapter: replace PreToolUse/PostToolUse with the single AfterTool event. BeforeTool has no documented context-injection channel in the Gemini contract, so augmentation runs in AfterTool where hookSpecificOutput.additionalContext is the documented way to append text to the tool result the agent reads. Stale-index hints land in the same channel (so the agent sees them) and are mirrored to stderr for terminal users. Tool-name matcher updated to Gemini CLI snake_case (search_file_content|glob|run_shell_command). - Setup: write hooks to ~/.gemini/settings.json under canonical hooks.AfterTool[] (replaces the ad-hoc hooks.json top-level group). Polite-neighbor merge preserves existing user hooks. Also copy win-rm-list-json.ps1 alongside hook-db-lock-probe.cjs so the Windows MCP server ownership probe doesn't silently fail open. - Tests: 17 regression tests covering MCP write, win32 shape, hook schema, polite-neighbor merge, idempotency, adapter context emission, stale-index hint, and skill layout. - README: footnote documenting the AfterTool design choice and a link to the Gemini CLI hooks reference. Windows CI fix: installSkillsTo previously used glob('*.md') + glob('*/SKILL.md'), which returned zero matches under the Windows runner's temp paths (8.3 short-name like RUNNER~1). Replace with fs.readdir + dirent type checks — same behavior, no path quirks. This fixes the only failing Windows job on the PR. * fix(antigravity): address PR review — windowsHide, stale docs, dead code Addresses the production-readiness review findings on PR #1730: - F1 (blocker): add windowsHide:true to all four spawnSync sites in the Antigravity hook adapter (findCanonicalRepoRoot, runGitNexusCli's two branches, buildStaleIndexHint) so they don't flash console windows on Windows. Matches the fix #1794 already on main for the Claude hook. - F2 (blocker): update gitnexus/README.md editor table to say AfterTool and link the Gemini CLI hooks reference. The published README had drifted to the pre-c1872b4 PreToolUse + PostToolUse schema. - F3: rewrite the stale ~/.gemini block comment in setup.ts. It still described the old hooks.json + gitnexus group + grep_search design. - F4: remove grep_search dead code from extractPattern and its doc comment. The registered matcher is search_file_content|glob|run_shell_command, so grep_search would never be invoked. - F5: annotate timeout:10000 with a ms-unit comment noting Gemini CLI uses milliseconds (Claude Code uses seconds). - F6: add the GITNEXUS_DEBUG branch to extractAugmentContext for parity with the Claude adapter, so suppressed augment stderr is recoverable. - F7: stageAdapter test helper now copies win-rm-list-json.ps1 alongside the .cjs helpers, so the adapter's Windows lock-probe path isn't a silent fail-open in child-process smoke tests. * test(antigravity): add integration tests and register in cross-platform matrix Adds end-to-end coverage on top of the unit-level tests, per maintainer request: - test/integration/setup-antigravity.test.ts (10 tests): exercises the real setupCommand() against a temp HOME with ~/.gemini/antigravity/ present. Verifies mcp_config.json shape, ~/.gemini/settings.json AfterTool entry, adapter + helpers + win-rm-list-json.ps1 copy, baked-in cliPath rewrite (issue #108 regression class), skill layout, polite-neighbor merge against existing user hooks, idempotency, skip-when-absent, corrupt-file safety, and key preservation. - test/integration/antigravity-hook-e2e.test.ts (19 tests): runs the full install-then-execute flow — invokes setupCommand to lay down the adapter + helpers, then spawns the INSTALLED adapter as a real child process against a temp git repo + .gitnexus/. The source adapter cannot be spawned directly (it requires sibling .cjs helpers that only live in hooks/claude/); install-then-spawn mirrors the production codepath. Covers staleness detection across all five git mutation types, --embeddings propagation, polite skip on toolResponse.error / exit_code !== 0, augment crash-free behavior, cwd validation, corrupted/missing meta.json, unknown event names, empty stdin, and the no-.gitnexus deep-nested case. - scripts/cross-platform-tests.ts: registers all three antigravity test files (unit in PLATFORM_LOGIC, two integration files in SPAWN_CLI) so Windows and macOS CI exercise them on every run. * fix(antigravity): review fixes — dedup, silent-failure guard, type coercion, glob filter - Delete mergeGeminiSettingsHooks (verbatim copy of mergeHooksJsonc), replace call site with the original - Unify geminiHasGitnexusHook into hasGitnexusHook with commandFragment parameter; delete the duplicate - Guard against silent adapter-copy failure: verify the adapter file exists before registering the AfterTool hook entry in settings.json; surface helper copy errors instead of swallowing - Fix toolSucceeded type coercion: use Number() so string exit_code values from Gemini CLI are handled correctly - Align glob tool extractPattern with Claude adapter's restrictive regex filter (/[*\/]([a-zA-Z][a-zA-Z0-9_-]{2,})/) - Remove bounds-only toBeGreaterThan(0) assertion (DoD §2.7) - Add antigravity adapter to HOOK_FILES windowsHide regression list * chore(autofix): apply prettier + eslint fixes via /autofix command * chore: trigger CI --------- Co-authored-by: Gergő Magyar <gergomagyar@icloud.com> Co-authored-by: Test <test@example.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
966 lines
32 KiB
TypeScript
966 lines
32 KiB
TypeScript
/**
|
|
* Setup Command
|
|
*
|
|
* One-time global MCP configuration writer.
|
|
* Detects installed AI editors and writes the appropriate MCP config
|
|
* so the GitNexus MCP server is available in all projects.
|
|
*/
|
|
|
|
import fs from 'fs/promises';
|
|
import path from 'path';
|
|
import os from 'os';
|
|
import { execFile, execFileSync } from 'child_process';
|
|
import { createRequire } from 'module';
|
|
import { promisify } from 'util';
|
|
import { fileURLToPath } from 'url';
|
|
import { parseTree, modify, applyEdits, ParseError, parse as parseJsonc } from 'jsonc-parser';
|
|
import { getGlobalDir } from '../storage/repo-manager.js';
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = path.dirname(__filename);
|
|
const execFileAsync = promisify(execFile);
|
|
|
|
// Pin the npx fallback to the installed version. Reason: setup.ts writes
|
|
// a config that persists in the user's editor and is invoked on every MCP
|
|
// connect. Pinning to the installed version means subsequent invocations
|
|
// skip the npm-registry metadata roundtrip (and stay reproducible until
|
|
// the user upgrades). Static configs and READMEs intentionally use
|
|
// `gitnexus@latest` since they're quickstart docs, not persisted state.
|
|
const _require = createRequire(import.meta.url);
|
|
const _pkg = _require('../../package.json') as { version?: unknown };
|
|
if (typeof _pkg.version !== 'string' || !_pkg.version) {
|
|
throw new Error(
|
|
'gitnexus/package.json#version is missing or not a string — cannot generate MCP fallback config.',
|
|
);
|
|
}
|
|
const NPX_REF = `gitnexus@${_pkg.version}`;
|
|
|
|
interface SetupResult {
|
|
configured: string[];
|
|
skipped: string[];
|
|
errors: string[];
|
|
}
|
|
|
|
/**
|
|
* Resolve the absolute path to the `gitnexus` binary if it's installed
|
|
* globally (or via npm -g / yarn global). Returns null when not found.
|
|
*/
|
|
function resolveGitnexusBin(): string | null {
|
|
try {
|
|
const isWin = process.platform === 'win32';
|
|
const cmd = isWin ? 'where' : 'which';
|
|
const output = execFileSync(cmd, ['gitnexus'], {
|
|
encoding: 'utf-8',
|
|
timeout: 5000,
|
|
stdio: ['ignore', 'pipe', 'ignore'],
|
|
windowsHide: true,
|
|
});
|
|
const lines = output
|
|
.split('\n')
|
|
.map((l) => l.trim())
|
|
.filter(Boolean);
|
|
|
|
if (isWin) {
|
|
// On Windows, npm global installs can surface multiple launchers for the
|
|
// same package (e.g. a POSIX shell shim plus .cmd/.bat wrappers). Claude
|
|
// and the other MCP hosts need a directly spawnable command path, so only
|
|
// accept the Windows wrapper. If it is missing, fall back to the slower
|
|
// npx entry instead of persisting a non-spawnable shim path.
|
|
const cmdLine = lines.find((l) => /\.(cmd|bat)$/i.test(l));
|
|
return cmdLine || null;
|
|
}
|
|
|
|
return lines[0] || null;
|
|
} catch {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* The MCP server entry for all editors.
|
|
*
|
|
* Prefers the globally-installed `gitnexus` binary (starts in ~1 s) over
|
|
* `npx -y gitnexus@<version>` (cold-cache install of native deps can take
|
|
* >60 s, exceeding Claude Code's 30 s MCP connection timeout). The fallback
|
|
* version is read from gitnexus/package.json#version at module load so the
|
|
* persisted user config matches the installed package.
|
|
*
|
|
* Falls back to npx when the binary isn't on PATH — e.g. first-time
|
|
* users who ran `npx gitnexus analyze` but haven't done `npm i -g`.
|
|
*/
|
|
function getMcpEntry() {
|
|
const bin = resolveGitnexusBin();
|
|
|
|
if (bin) {
|
|
return { command: bin, args: ['mcp'] };
|
|
}
|
|
|
|
// Fallback: npx (works without a global install, but slow cold-start)
|
|
if (process.platform === 'win32') {
|
|
return {
|
|
command: 'cmd',
|
|
args: ['/c', 'npx', '-y', NPX_REF, 'mcp'],
|
|
};
|
|
}
|
|
return {
|
|
command: 'npx',
|
|
args: ['-y', NPX_REF, 'mcp'],
|
|
};
|
|
}
|
|
|
|
/**
|
|
* OpenCode uses a different MCP format: { type: "local", command: [...] }
|
|
* where command is a flat array (command + args combined).
|
|
*/
|
|
function getOpenCodeMcpEntry() {
|
|
const bin = resolveGitnexusBin();
|
|
|
|
if (bin) {
|
|
return { type: 'local', command: [bin, 'mcp'] };
|
|
}
|
|
|
|
if (process.platform === 'win32') {
|
|
return { type: 'local', command: ['cmd', '/c', 'npx', '-y', NPX_REF, 'mcp'] };
|
|
}
|
|
return { type: 'local', command: ['npx', '-y', NPX_REF, 'mcp'] };
|
|
}
|
|
|
|
/**
|
|
* Detect indentation style from file content.
|
|
* Returns formatting options matching the file's existing style.
|
|
*/
|
|
function detectIndentation(raw: string): { tabSize: number; insertSpaces: boolean } {
|
|
const firstIndented = raw.match(/^( +|\t)/m);
|
|
if (!firstIndented) return { tabSize: 2, insertSpaces: true };
|
|
if (firstIndented[1] === '\t') return { tabSize: 1, insertSpaces: false };
|
|
return { tabSize: firstIndented[1].length, insertSpaces: true };
|
|
}
|
|
|
|
/**
|
|
* Merge a key/value pair into a JSONC config file, preserving comments and formatting.
|
|
* If the file is genuinely corrupt (not valid JSONC), leaves it untouched.
|
|
*/
|
|
async function mergeJsoncFile(
|
|
filePath: string,
|
|
keyPath: string[],
|
|
value: unknown,
|
|
): Promise<boolean> {
|
|
let raw: string;
|
|
try {
|
|
raw = await fs.readFile(filePath, 'utf-8');
|
|
} catch {
|
|
raw = '';
|
|
}
|
|
|
|
if (raw.trim().length === 0) {
|
|
await fs.mkdir(path.dirname(filePath), { recursive: true });
|
|
const formattingOptions = { tabSize: 2, insertSpaces: true };
|
|
const edits = modify('{}', keyPath, value, { formattingOptions });
|
|
const result = applyEdits('{}', edits);
|
|
await fs.writeFile(filePath, result, 'utf-8');
|
|
return true;
|
|
}
|
|
|
|
const parseErrors: ParseError[] = [];
|
|
const tree = parseTree(raw, parseErrors);
|
|
|
|
if (tree && tree.type === 'object' && parseErrors.length === 0) {
|
|
const formattingOptions = detectIndentation(raw);
|
|
const edits = modify(raw, keyPath, value, { formattingOptions });
|
|
const result = applyEdits(raw, edits);
|
|
await fs.writeFile(filePath, result, 'utf-8');
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Check if a directory exists
|
|
*/
|
|
async function dirExists(dirPath: string): Promise<boolean> {
|
|
try {
|
|
const stat = await fs.stat(dirPath);
|
|
return stat.isDirectory();
|
|
} catch {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
// ─── Editor-specific setup ─────────────────────────────────────────
|
|
|
|
async function setupCursor(result: SetupResult): Promise<void> {
|
|
const cursorDir = path.join(os.homedir(), '.cursor');
|
|
if (!(await dirExists(cursorDir))) {
|
|
result.skipped.push('Cursor (not installed)');
|
|
return;
|
|
}
|
|
|
|
const mcpPath = path.join(cursorDir, 'mcp.json');
|
|
try {
|
|
const ok = await mergeJsoncFile(mcpPath, ['mcpServers', 'gitnexus'], getMcpEntry());
|
|
if (ok) {
|
|
result.configured.push('Cursor');
|
|
} else {
|
|
result.errors.push('Cursor: mcp.json is corrupt — skipping to preserve existing content');
|
|
}
|
|
} catch (err: any) {
|
|
result.errors.push(`Cursor: ${err.message}`);
|
|
}
|
|
}
|
|
|
|
async function setupClaudeCode(result: SetupResult): Promise<void> {
|
|
const claudeDir = path.join(os.homedir(), '.claude');
|
|
if (!(await dirExists(claudeDir))) {
|
|
result.skipped.push('Claude Code (not installed)');
|
|
return;
|
|
}
|
|
|
|
// Claude Code stores MCP config in ~/.claude.json
|
|
const mcpPath = path.join(os.homedir(), '.claude.json');
|
|
try {
|
|
const ok = await mergeJsoncFile(mcpPath, ['mcpServers', 'gitnexus'], getMcpEntry());
|
|
if (ok) {
|
|
result.configured.push('Claude Code');
|
|
} else {
|
|
result.errors.push(
|
|
'Claude Code: .claude.json is corrupt — skipping to preserve existing content',
|
|
);
|
|
}
|
|
} catch (err: any) {
|
|
result.errors.push(`Claude Code: ${err.message}`);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Install GitNexus skills to ~/.claude/skills/ for Claude Code.
|
|
*/
|
|
async function installClaudeCodeSkills(result: SetupResult): Promise<void> {
|
|
const claudeDir = path.join(os.homedir(), '.claude');
|
|
if (!(await dirExists(claudeDir))) return;
|
|
|
|
const skillsDir = path.join(claudeDir, 'skills');
|
|
try {
|
|
const installed = await installSkillsTo(skillsDir);
|
|
if (installed.length > 0) {
|
|
result.configured.push(`Claude Code skills (${installed.length} skills → ~/.claude/skills/)`);
|
|
}
|
|
} catch (err: any) {
|
|
result.errors.push(`Claude Code skills: ${err.message}`);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Check whether an event array already contains a gitnexus-hook entry.
|
|
*/
|
|
function hasGitnexusHook(
|
|
hooksObj: any,
|
|
eventName: string,
|
|
commandFragment = 'gitnexus-hook',
|
|
): boolean {
|
|
const entries = hooksObj?.[eventName];
|
|
if (!Array.isArray(entries)) return false;
|
|
return entries.some(
|
|
(h: any) =>
|
|
Array.isArray(h.hooks) &&
|
|
h.hooks.some(
|
|
(hh: any) => typeof hh.command === 'string' && hh.command.includes(commandFragment),
|
|
),
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Merge hook entries into a JSONC settings file, preserving comments and formatting.
|
|
* Uses chained modify()+applyEdits() calls to append to arrays without a full
|
|
* JSON.stringify roundtrip that would strip comments.
|
|
*/
|
|
async function mergeHooksJsonc(
|
|
filePath: string,
|
|
entries: Array<{ eventName: string; value: unknown }>,
|
|
): Promise<boolean> {
|
|
let raw: string;
|
|
try {
|
|
raw = await fs.readFile(filePath, 'utf-8');
|
|
} catch {
|
|
raw = '';
|
|
}
|
|
|
|
if (raw.trim().length === 0) {
|
|
await fs.mkdir(path.dirname(filePath), { recursive: true });
|
|
const hooks: any = {};
|
|
for (const { eventName, value } of entries) {
|
|
hooks[eventName] = [value];
|
|
}
|
|
const formattingOptions = { tabSize: 2, insertSpaces: true };
|
|
const edits = modify('{}', ['hooks'], hooks, { formattingOptions });
|
|
await fs.writeFile(filePath, applyEdits('{}', edits), 'utf-8');
|
|
return true;
|
|
}
|
|
|
|
const parseErrors: ParseError[] = [];
|
|
const tree = parseTree(raw, parseErrors);
|
|
|
|
if (!tree || tree.type !== 'object' || parseErrors.length > 0) {
|
|
return false;
|
|
}
|
|
|
|
const formattingOptions = detectIndentation(raw);
|
|
let current = raw;
|
|
|
|
for (const { eventName, value } of entries) {
|
|
// Re-parse after each edit to get a fresh insertion index.
|
|
const currentTree = parseTree(current, []);
|
|
const hooksNode = currentTree?.children?.find(
|
|
(c) => c.type === 'property' && c.children?.[0]?.value === 'hooks',
|
|
);
|
|
const eventNode = hooksNode?.children?.[1]?.children?.find(
|
|
(c: any) => c.type === 'property' && c.children?.[0]?.value === eventName,
|
|
);
|
|
|
|
let insertIndex: number;
|
|
if (eventNode?.children?.[1] && Array.isArray(eventNode.children[1].children)) {
|
|
insertIndex = eventNode.children[1].children.length;
|
|
} else {
|
|
insertIndex = 0;
|
|
}
|
|
|
|
const edits = modify(current, ['hooks', eventName, insertIndex], value, {
|
|
formattingOptions,
|
|
});
|
|
current = applyEdits(current, edits);
|
|
}
|
|
|
|
await fs.writeFile(filePath, current, 'utf-8');
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Install GitNexus hooks to ~/.claude/settings.json for Claude Code.
|
|
* Merges hook config without overwriting existing hooks, preserving
|
|
* comments and formatting in the JSONC file.
|
|
*/
|
|
async function installClaudeCodeHooks(result: SetupResult): Promise<void> {
|
|
const claudeDir = path.join(os.homedir(), '.claude');
|
|
if (!(await dirExists(claudeDir))) return;
|
|
|
|
const settingsPath = path.join(claudeDir, 'settings.json');
|
|
|
|
// Source hooks bundled within the gitnexus package (hooks/claude/)
|
|
const pluginHooksPath = path.join(__dirname, '..', '..', 'hooks', 'claude');
|
|
|
|
// Copy unified hook script to ~/.claude/hooks/gitnexus/
|
|
const destHooksDir = path.join(claudeDir, 'hooks', 'gitnexus');
|
|
|
|
try {
|
|
await fs.mkdir(destHooksDir, { recursive: true });
|
|
|
|
const src = path.join(pluginHooksPath, 'gitnexus-hook.cjs');
|
|
const dest = path.join(destHooksDir, 'gitnexus-hook.cjs');
|
|
try {
|
|
let content = await fs.readFile(src, 'utf-8');
|
|
const resolvedCli = path.join(__dirname, '..', 'cli', 'index.js');
|
|
const normalizedCli = path.resolve(resolvedCli).replace(/\\/g, '/');
|
|
const jsonCli = JSON.stringify(normalizedCli);
|
|
content = content.replace(
|
|
"let cliPath = path.resolve(__dirname, '..', '..', 'dist', 'cli', 'index.js');",
|
|
`let cliPath = ${jsonCli};`,
|
|
);
|
|
await fs.writeFile(dest, content, 'utf-8');
|
|
} catch {
|
|
// Script not found in source — skip
|
|
}
|
|
|
|
try {
|
|
await fs.copyFile(
|
|
path.join(pluginHooksPath, 'hook-lock.cjs'),
|
|
path.join(destHooksDir, 'hook-lock.cjs'),
|
|
);
|
|
} catch {
|
|
// Helper not found in source — skip
|
|
}
|
|
|
|
try {
|
|
await fs.copyFile(
|
|
path.join(pluginHooksPath, 'hook-db-lock-probe.cjs'),
|
|
path.join(destHooksDir, 'hook-db-lock-probe.cjs'),
|
|
);
|
|
} catch {
|
|
// Helper not found in source — skip
|
|
}
|
|
|
|
try {
|
|
await fs.copyFile(
|
|
path.join(pluginHooksPath, 'win-rm-list-json.ps1'),
|
|
path.join(destHooksDir, 'win-rm-list-json.ps1'),
|
|
);
|
|
} catch {
|
|
// Helper not found in source — skip
|
|
}
|
|
|
|
const hookPath = path.join(destHooksDir, 'gitnexus-hook.cjs').replace(/\\/g, '/');
|
|
// Escape backslashes FIRST, then quotes (CodeQL js/incomplete-sanitization).
|
|
// The previous shape `replace(/"/g, '\\"')` alone would let `path\with"quote`
|
|
// become `path\with\"quote`, where the trailing `\` before `"` could
|
|
// unescape the quote inside the surrounding double-quoted shell context.
|
|
const escapedHookPath = hookPath.replace(/\\/g, '\\\\').replace(/"/g, '\\"');
|
|
const hookCmd = `node "${escapedHookPath}"`;
|
|
|
|
// Check which hook events need entries (idempotent: skip if already registered)
|
|
const parsed = await (async () => {
|
|
try {
|
|
const r = await fs.readFile(settingsPath, 'utf-8');
|
|
return parseJsonc(r);
|
|
} catch {
|
|
return null;
|
|
}
|
|
})();
|
|
|
|
const hookEntries: Array<{ eventName: string; value: unknown }> = [];
|
|
|
|
// NOTE: SessionStart hooks are broken on Windows (Claude Code bug #23576).
|
|
// Session context is delivered via CLAUDE.md / skills instead.
|
|
|
|
if (!hasGitnexusHook(parsed?.hooks, 'PreToolUse')) {
|
|
hookEntries.push({
|
|
eventName: 'PreToolUse',
|
|
value: {
|
|
matcher: 'Grep|Glob|Bash',
|
|
hooks: [
|
|
{
|
|
type: 'command',
|
|
command: hookCmd,
|
|
timeout: 10,
|
|
statusMessage: 'Enriching with GitNexus graph context...',
|
|
},
|
|
],
|
|
},
|
|
});
|
|
}
|
|
if (!hasGitnexusHook(parsed?.hooks, 'PostToolUse')) {
|
|
hookEntries.push({
|
|
eventName: 'PostToolUse',
|
|
value: {
|
|
matcher: 'Bash',
|
|
hooks: [
|
|
{
|
|
type: 'command',
|
|
command: hookCmd,
|
|
timeout: 10,
|
|
statusMessage: 'Checking GitNexus index freshness...',
|
|
},
|
|
],
|
|
},
|
|
});
|
|
}
|
|
|
|
if (hookEntries.length === 0) {
|
|
result.configured.push('Claude Code hooks (already configured)');
|
|
return;
|
|
}
|
|
|
|
const ok = await mergeHooksJsonc(settingsPath, hookEntries);
|
|
if (ok) {
|
|
result.configured.push('Claude Code hooks (PreToolUse, PostToolUse)');
|
|
} else {
|
|
result.errors.push(
|
|
'Claude Code hooks: settings.json is corrupt — skipping to preserve existing content',
|
|
);
|
|
}
|
|
} catch (err: any) {
|
|
result.errors.push(`Claude Code hooks: ${err.message}`);
|
|
}
|
|
}
|
|
|
|
// ─── Antigravity (Google) ──────────────────────────────────────────
|
|
//
|
|
// Antigravity stores its MCP config under ~/.gemini/antigravity/mcp_config.json
|
|
// and inherits Gemini CLI's hooks contract
|
|
// (https://geminicli.com/docs/hooks/reference/), which lives at
|
|
// ~/.gemini/settings.json under the canonical `hooks.<EventName>` array layout.
|
|
//
|
|
// We register a single AfterTool entry matching Gemini's built-in search/shell
|
|
// tools (search_file_content|glob|run_shell_command). BeforeTool is not used:
|
|
// the Gemini contract provides no documented context-injection channel for it,
|
|
// so augmentation runs in AfterTool where `hookSpecificOutput.additionalContext`
|
|
// is appended to the tool result the agent reads. See the antigravity hook
|
|
// adapter for the stdin/stdout contract details.
|
|
|
|
async function setupAntigravity(result: SetupResult): Promise<void> {
|
|
const antigravityDir = path.join(os.homedir(), '.gemini', 'antigravity');
|
|
if (!(await dirExists(antigravityDir))) {
|
|
result.skipped.push('Antigravity (not installed)');
|
|
return;
|
|
}
|
|
|
|
const mcpPath = path.join(antigravityDir, 'mcp_config.json');
|
|
try {
|
|
const ok = await mergeJsoncFile(mcpPath, ['mcpServers', 'gitnexus'], getMcpEntry());
|
|
if (ok) {
|
|
result.configured.push('Antigravity');
|
|
} else {
|
|
result.errors.push(
|
|
'Antigravity: mcp_config.json is corrupt — skipping to preserve existing content',
|
|
);
|
|
}
|
|
} catch (err: any) {
|
|
result.errors.push(`Antigravity: ${err.message}`);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Install GitNexus skills to ~/.gemini/antigravity/skills/ (global scope,
|
|
* per https://codelabs.developers.google.com/getting-started-with-antigravity-skills).
|
|
* Each skill is laid out as {skillName}/SKILL.md just like the other editors.
|
|
*/
|
|
async function installAntigravitySkills(result: SetupResult): Promise<void> {
|
|
const antigravityDir = path.join(os.homedir(), '.gemini', 'antigravity');
|
|
if (!(await dirExists(antigravityDir))) return;
|
|
|
|
const skillsDir = path.join(antigravityDir, 'skills');
|
|
try {
|
|
const installed = await installSkillsTo(skillsDir);
|
|
if (installed.length > 0) {
|
|
result.configured.push(
|
|
`Antigravity skills (${installed.length} skills → ~/.gemini/antigravity/skills/)`,
|
|
);
|
|
}
|
|
} catch (err: any) {
|
|
result.errors.push(`Antigravity skills: ${err.message}`);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Install the Antigravity/Gemini-CLI hook adapter to
|
|
* ~/.gemini/config/hooks/gitnexus/ and register an AfterTool entry in
|
|
* ~/.gemini/settings.json under `hooks.AfterTool`.
|
|
*
|
|
* Why AfterTool (and not BeforeTool): the Gemini hooks reference
|
|
* (https://geminicli.com/docs/hooks/reference/) does not provide a context-
|
|
* injection channel for BeforeTool. AfterTool's
|
|
* `hookSpecificOutput.additionalContext` is the only documented way to
|
|
* append text the agent will read.
|
|
*/
|
|
async function installAntigravityHooks(result: SetupResult): Promise<void> {
|
|
const antigravityDir = path.join(os.homedir(), '.gemini', 'antigravity');
|
|
if (!(await dirExists(antigravityDir))) return;
|
|
|
|
const geminiDir = path.join(os.homedir(), '.gemini');
|
|
const settingsPath = path.join(geminiDir, 'settings.json');
|
|
const destHooksDir = path.join(geminiDir, 'config', 'hooks', 'gitnexus');
|
|
|
|
// The antigravity adapter shares its lock/probe helpers with the claude
|
|
// adapter — same DB, same concurrency rules — so we reuse those CJS files
|
|
// from gitnexus/hooks/claude/ rather than duplicating them.
|
|
const pluginAntigravityDir = path.join(__dirname, '..', '..', 'hooks', 'antigravity');
|
|
const pluginClaudeDir = path.join(__dirname, '..', '..', 'hooks', 'claude');
|
|
|
|
try {
|
|
await fs.mkdir(destHooksDir, { recursive: true });
|
|
|
|
// Adapter script: rewrite the dist path baked into the file so it resolves
|
|
// to the installed gitnexus CLI rather than the cwd-relative dev path.
|
|
const adapterSrc = path.join(pluginAntigravityDir, 'gitnexus-antigravity-hook.cjs');
|
|
const adapterDest = path.join(destHooksDir, 'gitnexus-antigravity-hook.cjs');
|
|
try {
|
|
let content = await fs.readFile(adapterSrc, 'utf-8');
|
|
const resolvedCli = path.join(__dirname, '..', 'cli', 'index.js');
|
|
const normalizedCli = path.resolve(resolvedCli).replace(/\\/g, '/');
|
|
const jsonCli = JSON.stringify(normalizedCli);
|
|
content = content.replace(
|
|
"let cliPath = path.resolve(__dirname, '..', '..', 'dist', 'cli', 'index.js');",
|
|
`let cliPath = ${jsonCli};`,
|
|
);
|
|
await fs.writeFile(adapterDest, content, 'utf-8');
|
|
} catch {
|
|
// Adapter not found in source — skip
|
|
}
|
|
|
|
// Bail out if the adapter was not written — registering the hook entry
|
|
// without the script would crash on every tool invocation (top-level
|
|
// require() of sibling helpers fails with MODULE_NOT_FOUND).
|
|
try {
|
|
await fs.access(adapterDest);
|
|
} catch {
|
|
result.errors.push(
|
|
'Antigravity hooks: adapter script was not installed — skipping hook registration',
|
|
);
|
|
return;
|
|
}
|
|
|
|
// Shared helpers (copied from hooks/claude/). win-rm-list-json.ps1 is
|
|
// required by hook-db-lock-probe.cjs on Windows — without it, the MCP
|
|
// server ownership probe silently fails open and the hook may contend
|
|
// with the MCP server on the LadybugDB.
|
|
for (const helper of ['hook-lock.cjs', 'hook-db-lock-probe.cjs', 'win-rm-list-json.ps1']) {
|
|
try {
|
|
await fs.copyFile(path.join(pluginClaudeDir, helper), path.join(destHooksDir, helper));
|
|
} catch {
|
|
result.errors.push(
|
|
`Antigravity hooks: failed to copy ${helper} — hook may crash at runtime`,
|
|
);
|
|
}
|
|
}
|
|
|
|
const hookPath = path.join(destHooksDir, 'gitnexus-antigravity-hook.cjs').replace(/\\/g, '/');
|
|
const escapedHookPath = hookPath.replace(/\\/g, '\\\\').replace(/"/g, '\\"');
|
|
const hookCmd = `node "${escapedHookPath}"`;
|
|
|
|
const parsed = await (async () => {
|
|
try {
|
|
const r = await fs.readFile(settingsPath, 'utf-8');
|
|
return parseJsonc(r);
|
|
} catch {
|
|
return null;
|
|
}
|
|
})();
|
|
|
|
const hookEntries: Array<{ eventName: string; value: unknown }> = [];
|
|
|
|
if (!hasGitnexusHook(parsed?.hooks, 'AfterTool', 'gitnexus-antigravity-hook')) {
|
|
// Matcher follows the Gemini CLI built-in tool naming (snake_case).
|
|
// search_file_content / glob cover content + filename search; run_shell_command
|
|
// catches rg/grep invocations and the git commit family for stale-index hints.
|
|
hookEntries.push({
|
|
eventName: 'AfterTool',
|
|
value: {
|
|
matcher: 'search_file_content|glob|run_shell_command',
|
|
hooks: [
|
|
{
|
|
type: 'command',
|
|
command: hookCmd,
|
|
name: 'gitnexus',
|
|
// ms — Gemini CLI uses milliseconds (default 60000); Claude Code
|
|
// uses seconds. 10000 ms = 10 s.
|
|
timeout: 10000,
|
|
description: 'GitNexus graph context + stale-index hints',
|
|
},
|
|
],
|
|
},
|
|
});
|
|
}
|
|
|
|
if (hookEntries.length === 0) {
|
|
result.configured.push('Antigravity hooks (already configured)');
|
|
return;
|
|
}
|
|
|
|
const ok = await mergeHooksJsonc(settingsPath, hookEntries);
|
|
if (ok) {
|
|
result.configured.push('Antigravity hooks (AfterTool)');
|
|
} else {
|
|
result.errors.push(
|
|
'Antigravity hooks: settings.json is corrupt — skipping to preserve existing content',
|
|
);
|
|
}
|
|
} catch (err: any) {
|
|
result.errors.push(`Antigravity hooks: ${err.message}`);
|
|
}
|
|
}
|
|
|
|
async function setupOpenCode(result: SetupResult): Promise<void> {
|
|
const opencodeDir = path.join(os.homedir(), '.config', 'opencode');
|
|
if (!(await dirExists(opencodeDir))) {
|
|
result.skipped.push('OpenCode (not installed)');
|
|
return;
|
|
}
|
|
|
|
const configPath = path.join(opencodeDir, 'opencode.json');
|
|
try {
|
|
const ok = await mergeJsoncFile(configPath, ['mcp', 'gitnexus'], getOpenCodeMcpEntry());
|
|
if (ok) {
|
|
result.configured.push('OpenCode');
|
|
} else {
|
|
result.errors.push(
|
|
'OpenCode: opencode.json is corrupt — skipping to preserve existing content',
|
|
);
|
|
}
|
|
} catch (err: any) {
|
|
result.errors.push(`OpenCode: ${err.message}`);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Build a TOML section for Codex MCP config (~/.codex/config.toml).
|
|
*/
|
|
function getCodexMcpTomlSection(): string {
|
|
const entry = getMcpEntry();
|
|
const command = JSON.stringify(entry.command);
|
|
const args = `[${entry.args.map((arg) => JSON.stringify(arg)).join(', ')}]`;
|
|
return `[mcp_servers.gitnexus]\ncommand = ${command}\nargs = ${args}\n`;
|
|
}
|
|
|
|
/**
|
|
* Append GitNexus MCP server config to Codex's config.toml if missing.
|
|
*/
|
|
async function upsertCodexConfigToml(configPath: string): Promise<void> {
|
|
let existing = '';
|
|
try {
|
|
existing = await fs.readFile(configPath, 'utf-8');
|
|
} catch {
|
|
existing = '';
|
|
}
|
|
|
|
if (existing.includes('[mcp_servers.gitnexus]')) {
|
|
return;
|
|
}
|
|
|
|
const section = getCodexMcpTomlSection();
|
|
const nextContent = existing.trim().length > 0 ? `${existing.trimEnd()}\n\n${section}` : section;
|
|
|
|
await fs.mkdir(path.dirname(configPath), { recursive: true });
|
|
await fs.writeFile(configPath, `${nextContent.trimEnd()}\n`, 'utf-8');
|
|
}
|
|
|
|
async function setupCodex(result: SetupResult): Promise<void> {
|
|
const codexDir = path.join(os.homedir(), '.codex');
|
|
if (!(await dirExists(codexDir))) {
|
|
result.skipped.push('Codex (not installed)');
|
|
return;
|
|
}
|
|
|
|
try {
|
|
const entry = getMcpEntry();
|
|
await execFileAsync('codex', ['mcp', 'add', 'gitnexus', '--', entry.command, ...entry.args], {
|
|
shell: process.platform === 'win32',
|
|
windowsHide: true,
|
|
});
|
|
result.configured.push('Codex');
|
|
return;
|
|
} catch {
|
|
// Fallback for environments where `codex` binary isn't on PATH.
|
|
}
|
|
|
|
try {
|
|
const configPath = path.join(codexDir, 'config.toml');
|
|
await upsertCodexConfigToml(configPath);
|
|
result.configured.push('Codex (MCP added to ~/.codex/config.toml)');
|
|
} catch (err: any) {
|
|
result.errors.push(`Codex: ${err.message}`);
|
|
}
|
|
}
|
|
|
|
// ─── Skill Installation ───────────────────────────────────────────
|
|
|
|
/**
|
|
* Install GitNexus skills to a target directory.
|
|
* Each skill is installed as {targetDir}/gitnexus-{skillName}/SKILL.md
|
|
* following the Agent Skills standard (Cursor, Claude Code, and Codex).
|
|
*
|
|
* Supports two source layouts:
|
|
* - Flat file: skills/{name}.md → copied as SKILL.md
|
|
* - Directory: skills/{name}/SKILL.md → copied recursively (includes references/, etc.)
|
|
*/
|
|
async function installSkillsTo(targetDir: string): Promise<string[]> {
|
|
const installed: string[] = [];
|
|
// GITNEXUS_TEST_SKILLS_ROOT lets tests stage a fixture skills tree without
|
|
// depending on __dirname resolution under Vitest.
|
|
const skillsRoot =
|
|
process.env.GITNEXUS_TEST_SKILLS_ROOT ?? path.join(__dirname, '..', '..', 'skills');
|
|
|
|
// Was glob('*.md') + glob('*/SKILL.md'); replaced with fs.readdir because
|
|
// glob v13's cwd handling did not match the fixture path on Windows runners
|
|
// (absolute temp paths containing the 8.3 short-name `RUNNER~1` returned
|
|
// zero matches). fs.readdir has no such path quirks.
|
|
let flatFiles: string[] = [];
|
|
let dirSkillFiles: string[] = [];
|
|
try {
|
|
const entries = await fs.readdir(skillsRoot, { withFileTypes: true });
|
|
flatFiles = entries.filter((e) => e.isFile() && e.name.endsWith('.md')).map((e) => e.name);
|
|
const subdirSkillFiles = await Promise.all(
|
|
entries
|
|
.filter((e) => e.isDirectory())
|
|
.map(async (e) => {
|
|
try {
|
|
await fs.access(path.join(skillsRoot, e.name, 'SKILL.md'));
|
|
return path.join(e.name, 'SKILL.md');
|
|
} catch {
|
|
return null;
|
|
}
|
|
}),
|
|
);
|
|
dirSkillFiles = subdirSkillFiles.filter((p): p is string => p !== null);
|
|
} catch {
|
|
return [];
|
|
}
|
|
|
|
const skillSources = new Map<string, { isDirectory: boolean }>();
|
|
|
|
for (const relPath of dirSkillFiles) {
|
|
skillSources.set(path.dirname(relPath), { isDirectory: true });
|
|
}
|
|
for (const relPath of flatFiles) {
|
|
const skillName = path.basename(relPath, '.md');
|
|
if (!skillSources.has(skillName)) {
|
|
skillSources.set(skillName, { isDirectory: false });
|
|
}
|
|
}
|
|
|
|
for (const [skillName, source] of skillSources) {
|
|
const skillDir = path.join(targetDir, skillName);
|
|
|
|
try {
|
|
if (source.isDirectory) {
|
|
const dirSource = path.join(skillsRoot, skillName);
|
|
await copyDirRecursive(dirSource, skillDir);
|
|
installed.push(skillName);
|
|
} else {
|
|
const flatSource = path.join(skillsRoot, `${skillName}.md`);
|
|
const content = await fs.readFile(flatSource, 'utf-8');
|
|
await fs.mkdir(skillDir, { recursive: true });
|
|
await fs.writeFile(path.join(skillDir, 'SKILL.md'), content, 'utf-8');
|
|
installed.push(skillName);
|
|
}
|
|
} catch {
|
|
// Source skill not found — skip
|
|
}
|
|
}
|
|
|
|
return installed;
|
|
}
|
|
|
|
/**
|
|
* Recursively copy a directory tree.
|
|
*/
|
|
async function copyDirRecursive(src: string, dest: string): Promise<void> {
|
|
await fs.mkdir(dest, { recursive: true });
|
|
const entries = await fs.readdir(src, { withFileTypes: true });
|
|
for (const entry of entries) {
|
|
const srcPath = path.join(src, entry.name);
|
|
const destPath = path.join(dest, entry.name);
|
|
if (entry.isDirectory()) {
|
|
await copyDirRecursive(srcPath, destPath);
|
|
} else {
|
|
await fs.copyFile(srcPath, destPath);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Install global Cursor skills to ~/.cursor/skills/gitnexus/
|
|
*/
|
|
async function installCursorSkills(result: SetupResult): Promise<void> {
|
|
const cursorDir = path.join(os.homedir(), '.cursor');
|
|
if (!(await dirExists(cursorDir))) return;
|
|
|
|
const skillsDir = path.join(cursorDir, 'skills');
|
|
try {
|
|
const installed = await installSkillsTo(skillsDir);
|
|
if (installed.length > 0) {
|
|
result.configured.push(`Cursor skills (${installed.length} skills → ~/.cursor/skills/)`);
|
|
}
|
|
} catch (err: any) {
|
|
result.errors.push(`Cursor skills: ${err.message}`);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Install global OpenCode skills to ~/.config/opencode/skills/gitnexus/
|
|
*/
|
|
async function installOpenCodeSkills(result: SetupResult): Promise<void> {
|
|
const opencodeDir = path.join(os.homedir(), '.config', 'opencode');
|
|
if (!(await dirExists(opencodeDir))) return;
|
|
|
|
const skillsDir = path.join(opencodeDir, 'skills');
|
|
try {
|
|
const installed = await installSkillsTo(skillsDir);
|
|
if (installed.length > 0) {
|
|
result.configured.push(
|
|
`OpenCode skills (${installed.length} skills → ~/.config/opencode/skills/)`,
|
|
);
|
|
}
|
|
} catch (err: any) {
|
|
result.errors.push(`OpenCode skills: ${err.message}`);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Install global Codex skills to ~/.agents/skills/gitnexus/
|
|
*/
|
|
async function installCodexSkills(result: SetupResult): Promise<void> {
|
|
const codexDir = path.join(os.homedir(), '.codex');
|
|
if (!(await dirExists(codexDir))) return;
|
|
|
|
const skillsDir = path.join(os.homedir(), '.agents', 'skills');
|
|
try {
|
|
const installed = await installSkillsTo(skillsDir);
|
|
if (installed.length > 0) {
|
|
result.configured.push(`Codex skills (${installed.length} skills → ~/.agents/skills/)`);
|
|
}
|
|
} catch (err: any) {
|
|
result.errors.push(`Codex skills: ${err.message}`);
|
|
}
|
|
}
|
|
|
|
// ─── Main command ──────────────────────────────────────────────────
|
|
|
|
export const setupCommand = async () => {
|
|
console.log('');
|
|
console.log(' GitNexus Setup');
|
|
console.log(' ==============');
|
|
console.log('');
|
|
|
|
// Ensure global directory exists
|
|
const globalDir = getGlobalDir();
|
|
await fs.mkdir(globalDir, { recursive: true });
|
|
|
|
const result: SetupResult = {
|
|
configured: [],
|
|
skipped: [],
|
|
errors: [],
|
|
};
|
|
|
|
// Detect and configure each editor's MCP
|
|
await setupCursor(result);
|
|
await setupClaudeCode(result);
|
|
await setupAntigravity(result);
|
|
await setupOpenCode(result);
|
|
await setupCodex(result);
|
|
|
|
// Install global skills for platforms that support them
|
|
await installClaudeCodeSkills(result);
|
|
await installClaudeCodeHooks(result);
|
|
await installAntigravitySkills(result);
|
|
await installAntigravityHooks(result);
|
|
await installCursorSkills(result);
|
|
await installOpenCodeSkills(result);
|
|
await installCodexSkills(result);
|
|
|
|
// Print results
|
|
if (result.configured.length > 0) {
|
|
console.log(' Configured:');
|
|
for (const name of result.configured) {
|
|
console.log(` + ${name}`);
|
|
}
|
|
}
|
|
|
|
if (result.skipped.length > 0) {
|
|
console.log('');
|
|
console.log(' Skipped:');
|
|
for (const name of result.skipped) {
|
|
console.log(` - ${name}`);
|
|
}
|
|
}
|
|
|
|
if (result.errors.length > 0) {
|
|
console.log('');
|
|
console.log(' Errors:');
|
|
for (const err of result.errors) {
|
|
console.log(` ! ${err}`);
|
|
}
|
|
}
|
|
|
|
console.log('');
|
|
console.log(' Summary:');
|
|
console.log(
|
|
` MCP configured for: ${result.configured.filter((c) => !c.includes('skills')).join(', ') || 'none'}`,
|
|
);
|
|
console.log(
|
|
` Skills installed to: ${result.configured.filter((c) => c.includes('skills')).length > 0 ? result.configured.filter((c) => c.includes('skills')).join(', ') : 'none'}`,
|
|
);
|
|
console.log('');
|
|
console.log(' Next steps:');
|
|
console.log(' 1. cd into any git repo');
|
|
console.log(' 2. Run: gitnexus analyze');
|
|
console.log(' 3. Open the repo in your editor — MCP is ready!');
|
|
console.log('');
|
|
};
|