mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-04-15 14:33:33 +08:00
49 lines
1.3 KiB
JavaScript
Executable File
49 lines
1.3 KiB
JavaScript
Executable File
#!/usr/bin/env node
|
|
'use strict';
|
|
|
|
const MAX_STDIN = 1024 * 1024;
|
|
let raw = '';
|
|
|
|
function run(rawInput) {
|
|
try {
|
|
const input = typeof rawInput === 'string' ? JSON.parse(rawInput) : rawInput;
|
|
const cmd = String(input.tool_input?.command || '');
|
|
if (/(npm run build|pnpm build|yarn build)/.test(cmd)) {
|
|
return {
|
|
stdout: typeof rawInput === 'string' ? rawInput : JSON.stringify(rawInput),
|
|
stderr: '[Hook] Build completed - async analysis running in background',
|
|
exitCode: 0,
|
|
};
|
|
}
|
|
} catch {
|
|
// ignore parse errors and pass through
|
|
}
|
|
|
|
return typeof rawInput === 'string' ? rawInput : JSON.stringify(rawInput);
|
|
}
|
|
|
|
if (require.main === module) {
|
|
process.stdin.setEncoding('utf8');
|
|
process.stdin.on('data', chunk => {
|
|
if (raw.length < MAX_STDIN) {
|
|
const remaining = MAX_STDIN - raw.length;
|
|
raw += chunk.substring(0, remaining);
|
|
}
|
|
});
|
|
|
|
process.stdin.on('end', () => {
|
|
const result = run(raw);
|
|
if (result && typeof result === 'object') {
|
|
if (result.stderr) {
|
|
process.stderr.write(`${result.stderr}\n`);
|
|
}
|
|
process.stdout.write(String(result.stdout || ''));
|
|
process.exit(Number.isInteger(result.exitCode) ? result.exitCode : 0);
|
|
}
|
|
|
|
process.stdout.write(String(result));
|
|
});
|
|
}
|
|
|
|
module.exports = { run };
|