#!/usr/bin/env node /** * Minimal Claude Code hook bridge. * * This intentionally mirrors the Codex hook path without a worker daemon: * hook process in, SQLite operation, JSON output out. */ import { type AgentHookEvent, type AgentHookInput, type AgentHookOutput } from "./agent-hook.js"; interface ClaudeHookOutput { continue?: true; suppressOutput?: boolean; hookSpecificOutput?: AgentHookOutput["hookSpecificOutput"]; } export declare function handleClaudeHook(event: AgentHookEvent, input: AgentHookInput): Promise; export {};