Spaces:
Runtime error
Runtime error
Aryan Mishra
feat: initial commit - Multilingual ABSA project setup with 6 phases, 36 requirements
a6b96c2 | // gsd-hook-version: 1.5.0 | |
| // GSD Read Guard β PreToolUse hook | |
| // Injects advisory guidance when Write/Edit targets an existing file, | |
| // reminding the model to Read the file first. | |
| // | |
| // Background: Non-Claude models (e.g. MiniMax M2.5 on OpenCode) don't | |
| // natively follow the read-before-edit pattern. When they attempt to | |
| // Write/Edit an existing file without reading it, the runtime rejects | |
| // with "You must read file before overwriting it." The model retries | |
| // without reading, creating an infinite loop that burns through usage. | |
| // | |
| // This hook prevents that loop by injecting clear guidance BEFORE the | |
| // tool call reaches the runtime. The model sees the advisory and can | |
| // issue a Read call on the next turn. | |
| // | |
| // Triggers on: Write and Edit tool calls | |
| // Action: Advisory (does not block) β injects read-first guidance | |
| // Only fires when the target file already exists on disk. | |
| const fs = require('fs'); | |
| const path = require('path'); | |
| let input = ''; | |
| const stdinTimeout = setTimeout(() => process.exit(0), 3000); | |
| process.stdin.setEncoding('utf8'); | |
| process.stdin.on('data', chunk => input += chunk); | |
| process.stdin.on('end', () => { | |
| clearTimeout(stdinTimeout); | |
| try { | |
| const data = JSON.parse(input); | |
| const toolName = data.tool_name; | |
| // Only intercept Write and Edit tool calls | |
| if (toolName !== 'Write' && toolName !== 'Edit') { | |
| process.exit(0); | |
| } | |
| // Claude Code natively enforces read-before-edit β skip the advisory (#1984, #2344, #2520). | |
| // | |
| // Detection signals, in priority order: | |
| // 1. `data.session_id` on the hook's stdin payload β part of Claude | |
| // Code's documented PreToolUse hook-input schema, always present. | |
| // Reliable across Claude Code versions because it's schema, not env. | |
| // 2. `CLAUDE_CODE_ENTRYPOINT` / `CLAUDE_CODE_SSE_PORT` β env vars that | |
| // Claude Code does propagate to hook subprocesses (verified on | |
| // Claude Code CLI 2.1.116). | |
| // 3. `CLAUDE_SESSION_ID` / `CLAUDECODE` β kept for back-compat and in | |
| // case future Claude Code versions propagate them to hook | |
| // subprocesses. On 2.1.116 they reach Bash tool subprocesses but | |
| // not hook subprocesses, which is why checking them alone is | |
| // insufficient (regression of #2344 fixed here as #2520). | |
| const isClaudeCode = | |
| (typeof data.session_id === 'string' && data.session_id.length > 0) || | |
| process.env.CLAUDE_CODE_ENTRYPOINT || | |
| process.env.CLAUDE_CODE_SSE_PORT || | |
| process.env.CLAUDE_SESSION_ID || | |
| process.env.CLAUDECODE; | |
| if (isClaudeCode) { | |
| process.exit(0); | |
| } | |
| const filePath = data.tool_input?.file_path || ''; | |
| if (!filePath) { | |
| process.exit(0); | |
| } | |
| // Only inject guidance when the file already exists. | |
| // New files don't need a prior Read β the runtime allows creating them directly. | |
| let fileExists = false; | |
| try { | |
| fs.accessSync(filePath, fs.constants.F_OK); | |
| fileExists = true; | |
| } catch { | |
| // File does not exist β no guidance needed | |
| } | |
| if (!fileExists) { | |
| process.exit(0); | |
| } | |
| const fileName = path.basename(filePath); | |
| // Advisory guidance β does not block the operation | |
| const output = { | |
| hookSpecificOutput: { | |
| hookEventName: 'PreToolUse', | |
| additionalContext: | |
| `READ-BEFORE-EDIT REMINDER: You are about to modify "${fileName}" which already exists. ` + | |
| 'If you have not already used the Read tool to read this file in the current session, ' + | |
| 'you MUST Read it first before editing. The runtime will reject edits to files that ' + | |
| 'have not been read. Use the Read tool on this file path, then retry your edit.', | |
| }, | |
| }; | |
| process.stdout.write(JSON.stringify(output)); | |
| } catch { | |
| // Silent fail β never block tool execution | |
| process.exit(0); | |
| } | |
| }); | |