mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-09-05 08:06:02 +00:00
- Fix hook exit status check: || → && so failed augment errors don't get injected into Claude's context as graph results - Add exit status check to npx fallback (same bug) - Update plugin version from 1.2.11 to 1.3.3 in both marketplace.json and plugin.json Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
147 lines
3.9 KiB
JavaScript
147 lines
3.9 KiB
JavaScript
#!/usr/bin/env node
|
|
/**
|
|
* GitNexus Claude Code Plugin Hook
|
|
*
|
|
* PreToolUse handler — intercepts Grep/Glob/Bash searches
|
|
* and augments with graph context from the GitNexus index.
|
|
*
|
|
* NOTE: SessionStart hooks are broken on Windows (Claude Code bug #23576).
|
|
* Session context is injected via CLAUDE.md / skills instead.
|
|
*/
|
|
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
const { spawnSync } = require('child_process');
|
|
|
|
/**
|
|
* Read JSON input from stdin synchronously.
|
|
*/
|
|
function readInput() {
|
|
try {
|
|
const data = fs.readFileSync(0, 'utf-8');
|
|
return JSON.parse(data);
|
|
} catch {
|
|
return {};
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Check if a directory (or ancestor) has a .gitnexus index.
|
|
*/
|
|
function findGitNexusIndex(startDir) {
|
|
let dir = startDir || process.cwd();
|
|
for (let i = 0; i < 5; i++) {
|
|
if (fs.existsSync(path.join(dir, '.gitnexus'))) {
|
|
return true;
|
|
}
|
|
const parent = path.dirname(dir);
|
|
if (parent === dir) break;
|
|
dir = parent;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Extract search pattern from tool input.
|
|
*/
|
|
function extractPattern(toolName, toolInput) {
|
|
if (toolName === 'Grep') {
|
|
return toolInput.pattern || null;
|
|
}
|
|
|
|
if (toolName === 'Glob') {
|
|
const raw = toolInput.pattern || '';
|
|
const match = raw.match(/[*\/]([a-zA-Z][a-zA-Z0-9_-]{2,})/);
|
|
return match ? match[1] : null;
|
|
}
|
|
|
|
if (toolName === 'Bash') {
|
|
const cmd = toolInput.command || '';
|
|
if (!/\brg\b|\bgrep\b/.test(cmd)) return null;
|
|
|
|
const tokens = cmd.split(/\s+/);
|
|
let foundCmd = false;
|
|
let skipNext = false;
|
|
const flagsWithValues = new Set(['-e', '-f', '-m', '-A', '-B', '-C', '-g', '--glob', '-t', '--type', '--include', '--exclude']);
|
|
|
|
for (const token of tokens) {
|
|
if (skipNext) { skipNext = false; continue; }
|
|
if (!foundCmd) {
|
|
if (/\brg$|\bgrep$/.test(token)) foundCmd = true;
|
|
continue;
|
|
}
|
|
if (token.startsWith('-')) {
|
|
if (flagsWithValues.has(token)) skipNext = true;
|
|
continue;
|
|
}
|
|
const cleaned = token.replace(/['"]/g, '');
|
|
return cleaned.length >= 3 ? cleaned : null;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
function main() {
|
|
try {
|
|
const input = readInput();
|
|
const hookEvent = input.hook_event_name || '';
|
|
|
|
if (hookEvent !== 'PreToolUse') return;
|
|
|
|
const cwd = input.cwd || process.cwd();
|
|
if (!findGitNexusIndex(cwd)) return;
|
|
|
|
const toolName = input.tool_name || '';
|
|
const toolInput = input.tool_input || {};
|
|
|
|
if (toolName !== 'Grep' && toolName !== 'Glob' && toolName !== 'Bash') return;
|
|
|
|
const pattern = extractPattern(toolName, toolInput);
|
|
if (!pattern || pattern.length < 3) return;
|
|
|
|
// augment CLI writes result to stderr (KuzuDB's native module captures
|
|
// stdout fd at OS level, making it unusable in subprocess contexts).
|
|
let result = '';
|
|
|
|
// Try direct gitnexus binary first (faster if globally installed)
|
|
try {
|
|
const child = spawnSync(
|
|
'gitnexus',
|
|
['augment', pattern],
|
|
{ encoding: 'utf-8', timeout: 8000, cwd, stdio: ['pipe', 'pipe', 'pipe'] }
|
|
);
|
|
if (child.status === 0 && child.stderr && child.stderr.trim()) {
|
|
result = child.stderr;
|
|
}
|
|
} catch { /* not on PATH */ }
|
|
|
|
// Fallback to npx if direct binary didn't produce output
|
|
if (!result || !result.trim()) {
|
|
try {
|
|
const child = spawnSync(
|
|
'npx',
|
|
['-y', 'gitnexus', 'augment', pattern],
|
|
{ encoding: 'utf-8', timeout: 15000, cwd, stdio: ['pipe', 'pipe', 'pipe'] }
|
|
);
|
|
if (child.status === 0 && child.stderr && child.stderr.trim()) {
|
|
result = child.stderr;
|
|
}
|
|
} catch { /* graceful failure */ }
|
|
}
|
|
|
|
if (result && result.trim()) {
|
|
console.log(JSON.stringify({
|
|
hookSpecificOutput: {
|
|
hookEventName: 'PreToolUse',
|
|
additionalContext: result.trim()
|
|
}
|
|
}));
|
|
}
|
|
} catch {
|
|
// Graceful failure
|
|
}
|
|
}
|
|
|
|
main();
|