22 种 Hook 事件
Claude Code 定义了 22 种 Hook 事件(coreTypes.ts:25-53),覆盖完整的 Agent 生命周期:
| 阶段 | 事件 | 触发时机 | 匹配字段 |
|---|---|---|---|
| 会话 | SessionStart | 会话启动 | source |
SessionEnd | 会话结束 | reason | |
Setup | 初始化完成 | trigger | |
| 用户交互 | UserPromptSubmit | 用户提交消息 | — |
Stop | Agent 停止响应 | — | |
StopFailure | Agent 停止失败 | error | |
| 工具执行 | PreToolUse | 工具调用前 | tool_name |
PostToolUse | 工具调用后(成功) | tool_name | |
PostToolUseFailure | 工具调用后(失败) | tool_name | |
| 权限 | PermissionRequest | 权限请求 | tool_name |
PermissionDenied | 权限被拒 | tool_name | |
| 子 Agent | SubagentStart | 子 Agent 启动 | agent_type |
SubagentStop | 子 Agent 停止 | agent_type | |
| 压缩 | PreCompact | 上下文压缩前 | trigger |
PostCompact | 上下文压缩后 | trigger | |
| 协作 | TeammateIdle | Teammate 空闲 | — |
TaskCreated | 任务创建 | — | |
TaskCompleted | 任务完成 | — | |
| MCP | Elicitation | MCP 服务器请求用户输入 | mcp_server_name |
ElicitationResult | Elicitation 结果返回 | mcp_server_name | |
| 环境 | ConfigChange | 配置变更 | source |
CwdChanged | 工作目录变更 | — | |
FileChanged | 文件变更 | file_path | |
InstructionsLoaded | 指令加载 | load_reason | |
WorktreeCreate / WorktreeRemove | Worktree 操作 | — |
6 种 Hook 类型
Hooks 配置支持 6 种执行方式(src/types/hooks.ts):
| 类型 | 执行方式 | 适用场景 |
|---|---|---|
command | Shell 命令(bash/PowerShell) | 通用脚本、CI 检查 |
prompt | 注入到 AI 上下文 | 代码规范提醒 |
agent | 启动子 Agent 执行 | 复杂分析任务 |
http | HTTP 请求 | 远程服务、Webhook |
callback | 内部 JS 函数 | 系统内置 Hook |
function | 运行时注册的函数 Hook | Agent/Skill 内部使用 |
执行引擎:execCommandHook
execCommandHook()(src/utils/hooks.ts:829-1417)是命令型 Hook 的执行核心:
异步 Hook 的检测协议
Hook 进程的 stdout 第一行如果是{"async":true},系统将其转为后台任务(hooks.ts:1199-1246):
registerPendingAsyncHook() 注册到 AsyncHookRegistry,完成后通过 enqueuePendingNotification() 通知主线程。
asyncRewake:Hook 唤醒模型
asyncRewake 模式的 Hook 绕过 AsyncHookRegistry。当 Hook 退出码为 2 时,通过 enqueuePendingNotification() 以 task-notification 模式注入消息,唤醒空闲的模型(通过 useQueueProcessor)或在忙碌时注入 queued_command 附件。
Hook 输出的 JSON Schema
同步 Hook 的输出遵循严格的 Zod schema(src/types/hooks.ts:49-567):
各事件的 hookSpecificOutput
| 事件 | 专有字段 | 作用 |
|---|---|---|
PreToolUse | permissionDecision, updatedInput, additionalContext | 拦截/修改工具输入 |
UserPromptSubmit | additionalContext | 注入额外上下文 |
PostToolUse | additionalContext, updatedMCPToolOutput | 修改 MCP 工具输出 |
SessionStart | initialUserMessage, watchPaths | 设置初始消息和文件监控 |
PermissionDenied | retry | 指示是否重试 |
Elicitation | action, content | 控制用户输入对话框 |
Hook 匹配机制:getMatchingHooks
getMatchingHooks()(hooks.ts:1685-1956)负责从所有来源中查找匹配的 Hook:
多来源合并
匹配规则
matcher 字段支持三种模式(matchesPattern(), hooks.ts:1428-1463):
if 条件过滤
Hook 可以指定if 条件,只在特定输入时触发。prepareIfConditionMatcher()(hooks.ts:1472-1503)预编译匹配器:
if 条件使用 permissionRuleValueFromString 解析,支持与权限规则相同的语法(工具名 + 参数模式)。Bash 工具还会使用 tree-sitter 进行 AST 级别的命令解析。
Hook 去重
同一个 Hook 命令在不同配置层级(user/project/local)可能重复。系统按pluginRoot\0command 做 Map 去重,保留最后合并的层级。
工作区信任检查
所有 Hook 都要求工作区信任(shouldSkipHookDueToTrust(), hooks.ts:286-296)。这是纵深防御措施——防止恶意仓库的 .claude/settings.json 在未信任的情况下执行任意命令。
getIsNonInteractiveSession() 为 true 时跳过检查)。
四种 Hook 能力的源码映射
1. 拦截操作(PreToolUse)
processHookJSONOutput() 将 permissionDecision 映射为 result.permissionBehavior = 'deny',并设置 blockingError,阻止工具执行。
2. 修改行为(updatedInput / updatedMCPToolOutput)
updatedInput 替换原始工具输入;updatedMCPToolOutput(PostToolUse 事件)替换 MCP 工具的返回值——可用于过滤敏感数据。
3. 注入上下文(additionalContext / systemMessage)
additionalContext→ 通过createAttachmentMessage({ type: 'hook_additional_context' })注入为用户消息systemMessage→ 注入为系统警告,直接显示给用户
4. 控制流程(continue / stopReason)
continue: false 设置 preventContinuation = true,阻止 Agent 继续执行后续操作。
Session Hook 的生命周期
Agent 和 Skill 的前置 Hook 通过registerFrontmatterHooks() 注册(runAgent.ts:567-575),绑定到 agent 的 session ID。Agent 结束时通过 clearSessionHooks() 清理。