Hooks Reference β
Version requirement: This guide targets the Claude Code Hooksβcompatible implementation shipped with CodeBuddy Code v1.16.0 and later. Feature status: Hooks are currently in Beta; APIs and runtime behavior may evolve.
Hooks let you inject custom scripts or commands into every stage of a CodeBuddy Code session so you can automate validation, bootstrap environments, run compliance checks, and more. Our implementation is fully compatible with the Claude Code Hooks specification, including event names, payload schemas, and safety guarantees.
Table of Contents β
- Feature Overview
- Configuration
- Structure
- Project-Scoped Hook Scripts
- Plugin Hooks
- Prompt-Based Hooks
- Hook Events
- Hook Input
- Hook Output
- Using MCP Tools
- Security Notes
- Execution Details
- Debugging
Feature Overview β
- Full support for all nine Claude Code hook events:
PreToolUse,PostToolUse,Notification,UserPromptSubmit,Stop,SubagentStop,PreCompact,SessionStart,SessionEnd. - Regex-based matchers to route execution by tool name or event context.
- Automatic injection of
session_id, transcript paths, working directory, and other context. - Dual signaling via exit codes and JSON payloads to mirror Claude Code semantics.
/hooksCLI panel for reviewing and approving any configuration changes before they take effect.- Individual hook processes time out after 60 seconds so one slow script will not block the rest.
Configuration β
CodeBuddy Code stores hook configuration inside your settings files:
| Scope | Path | Notes |
|---|---|---|
| User | ~/.codebuddy/settings.json | Applies to every project |
| Project | <project-root>/.codebuddy/settings.json | Shared with the whole repo |
| Project local | <project-root>/.codebuddy/settings.local.json | Local-only overrides (not committed) |
| Enterprise policy | Distributed policy bundle | Managed centrally by your org |
Structure β
Hooks are grouped by matcher, and each matcher may contain multiple hook definitions:
json
{
"hooks": {
"EventName": [
{
"matcher": "ToolPattern",
"hooks": [
{
"type": "command",
"command": "your-command-here"
}
]
}
]
}
}Key fields:
- matcher β Case-sensitive pattern for tool names (only for
PreToolUseandPostToolUse).- Plain string for exact matches:
Writematches only the Write tool. - Regex patterns allowed:
Edit|Write,Web.*, etc. - Use
*, an empty string (""), or omitmatcherto match everything.
- Plain string for exact matches:
- hooks β Array executed when the matcher hits.
- type β Execution mode. Use
"command"for shell commands. ("prompt"for LLM-based evaluation is defined but not yet available.) - command β (type =
command) Shell command to run.$CODEBUDDY_PROJECT_DIRis available. - prompt β (type =
prompt) Prompt text sent to the LLM (not yet supported). - timeout β Optional timeout in seconds for the specific hook.
- type β Execution mode. Use
For events that do not use matchers (UserPromptSubmit, Stop, SubagentStop, etc.) you can omit the field entirely:
json
{
"hooks": {
"UserPromptSubmit": [
{
"hooks": [
{
"type": "command",
"command": "/path/to/prompt-validator.py"
}
]
}
]
}
}Project-Scoped Hook Scripts β
Use the CODEBUDDY_PROJECT_DIR environment variable (available while CodeBuddy builds the hook command) to reference scripts stored in the repo:
json
{
"hooks": {
"PostToolUse": [
{
"matcher": "Write|Edit",
"hooks": [
{
"type": "command",
"command": "\"$CODEBUDDY_PROJECT_DIR\"/.codebuddy/hooks/check-style.sh"
}
]
}
]
}
}Plugin Hooks β
Plugins can ship hooks that merge seamlessly with user or project settings. When you enable a plugin, its hooks are merged automatically.
How plugin hooks work:
- Defined inside
hooks/hooks.jsonwithin the plugin bundle, or via a custom path referenced from thehooksfield. - Activated hooks merge with user and project hooks.
- Multiple hook sources can all respond to the same event.
${CODEBUDDY_PLUGIN_ROOT}points to the plugin directory for script references.
Example:
json
{
"description": "Automatic code formatting",
"hooks": {
"PostToolUse": [
{
"matcher": "Write|Edit",
"hooks": [
{
"type": "command",
"command": "${CODEBUDDY_PLUGIN_ROOT}/scripts/format.sh",
"timeout": 30
}
]
}
]
}
}Prompt-Based Hooks β
Status: Not yet supported.
Besides shell commands (type: "command"), CodeBuddy Code defines prompt-based hooks (type: "prompt") that rely on an LLM to decide whether to allow or deny an action.
How Prompt Hooks Work β
Instead of running a bash command, the hook:
- Sends the hook input plus your prompt to a fast LLM.
- Receives a structured JSON decision.
- Lets CodeBuddy Code enforce that decision.
Configuration β
json
{
"hooks": {
"Stop": [
{
"hooks": [
{
"type": "prompt",
"prompt": "Evaluate if CodeBuddy should stop: $ARGUMENTS. Check if all tasks are complete."
}
]
}
]
}
}Fields:
- type β Must be
"prompt". - prompt β Text sent to the LLM. Use
$ARGUMENTSas a placeholder; when omitted, the hook input JSON is appended after the prompt. - timeout β Optional timeout in seconds (default 30s).
Response Schema β
The LLM must return JSON:
jsonc
{
"decision": "approve" | "block",
"reason": "Explanation for the decision",
"continue": false, // Optional: stop CodeBuddy entirely
"stopReason": "Message shown to user", // Optional custom stop message
"systemMessage": "Warning or context" // Optional message shown to user
}Hook Events β
Event Matrix β
| Event | Trigger | Matcher support | Typical use cases |
|---|---|---|---|
PreToolUse | Before a tool executes | Yes (tool name) | Command validation, approvals, logging |
PostToolUse | After a tool succeeds | Yes | Auto-formatting, context enrichment |
Notification | Permission prompts or 60s idle reminders | Partial | Desktop alerts, IM pings |
UserPromptSubmit | User message submitted (internal commands excluded) | No | Content review, context injection |
Stop | Main agent reply finishes | No | Force continuation, add reminders |
SubagentStop | Sub-agent (Task tool) completes | No | Extend or annotate sub-tasks |
PreCompact | Before context compaction | Yes (manual / auto) | Preserve key info, avoid lossy compression |
SessionStart | Session creation or resume | Yes (startup / resume / clear / compact) | Env bootstrap, variable injection |
SessionEnd | Session terminated | Yes (clear / logout / prompt_input_exit / other) | Cleanup, log persistence |
PreToolUse β
Runs after CodeBuddy builds tool arguments but before executing the tool.
Common matchers:
Taskβ Sub-agent tasksBashβ Shell commandsGlobβ File globbingGrepβ Content searchReadβ File readsEditβ File editsWriteβ File writesWebFetch,WebSearchβ Web operations
PostToolUse β
Runs immediately after a tool succeeds. Uses the same matcher values as PreToolUse.
Notification β
Runs when CodeBuddy emits a notification. Matchers filter by notification type.
Supported matchers (partial):
permission_promptβ Permission dialogsidle_promptβ Idle > 60 secondsauth_successβ Auth success (not yet supported)elicitation_dialogβ MCP tool elicitation dialogs (not yet supported)
Example:
json
{
"hooks": {
"Notification": [
{
"matcher": "permission_prompt",
"hooks": [
{
"type": "command",
"command": "/path/to/permission-alert.sh"
}
]
},
{
"matcher": "idle_prompt",
"hooks": [
{
"type": "command",
"command": "/path/to/idle-notification.sh"
}
]
}
]
}
}UserPromptSubmit β
Runs after the user submits a prompt but before CodeBuddy processes it. Useful for injecting context, validating, or blocking certain prompts.
Stop β
Runs when the primary CodeBuddy agent finishes responding (skipped if the user manually interrupts).
SubagentStop β
Runs when a CodeBuddy sub-agent (Task tool) finishes.
PreCompact β
Runs before CodeBuddy compacts conversation context.
Matchers:
manualβ Triggered via/compactautoβ Triggered automatically when the context window fills up
SessionStart β
Runs when CodeBuddy starts a new session or resumes an existing one.
Matchers:
startupβ Fresh startresumeβ Triggered by--resume,--continue, or/resumeclearβ Triggered by/clearcompactβ Triggered by auto/manual compaction
SessionEnd β
Runs when a session closesβuse it to free resources or persist logs.
reason field values:
clearβ Session cleared via/clearlogoutβ User signed outprompt_input_exitβ User exited while the prompt input box was visibleotherβ Any other exit reason
Hook Input β
Each hook receives JSON over stdin containing session metadata plus event-specific fields:
jsonc
{
"session_id": "string",
"transcript_path": "string", // Path to the conversation JSON
"cwd": "string", // Working directory when the hook runs
"permission_mode": "string", // "default", "plan", "acceptEdits", or "bypassPermissions"
// Event-specific properties
"hook_event_name": "string"
// ...
}PreToolUse Input β
json
{
"session_id": "abc123",
"transcript_path": "/Users/.../.codebuddy/projects/.../00893aaf-19fa-41d2-8238-13269b9b3ca0.jsonl",
"cwd": "/Users/...",
"permission_mode": "default",
"hook_event_name": "PreToolUse",
"tool_name": "Write",
"tool_input": {
"file_path": "/path/to/file.txt",
"content": "file content"
}
}PostToolUse Input β
json
{
"session_id": "abc123",
"transcript_path": "/Users/.../.codebuddy/projects/.../00893aaf-19fa-41d2-8238-13269b9b3ca0.jsonl",
"cwd": "/Users/...",
"permission_mode": "default",
"hook_event_name": "PostToolUse",
"tool_name": "Write",
"tool_input": {
"file_path": "/path/to/file.txt",
"content": "file content"
},
"tool_response": {
"filePath": "/path/to/file.txt",
"success": true
}
}Notification Input β
json
{
"session_id": "abc123",
"transcript_path": "/Users/.../.codebuddy/projects/.../00893aaf-19fa-41d2-8238-13269b9b3ca0.jsonl",
"cwd": "/Users/...",
"permission_mode": "default",
"hook_event_name": "Notification",
"message": "CodeBuddy needs your permission to use Bash",
"notification_type": "permission_prompt"
}UserPromptSubmit Input β
json
{
"session_id": "abc123",
"transcript_path": "/Users/.../.codebuddy/projects/.../00893aaf-19fa-41d2-8238-13269b9b3ca0.jsonl",
"cwd": "/Users/...",
"permission_mode": "default",
"hook_event_name": "UserPromptSubmit",
"prompt": "Write a function to calculate the factorial of a number"
}Stop & SubagentStop Input β
stop_hook_active becomes true when a stop hook has already resumed execution.
json
{
"session_id": "abc123",
"transcript_path": "~/.codebuddy/projects/.../00893aaf-19fa-41d2-8238-13269b9b3ca0.jsonl",
"permission_mode": "default",
"hook_event_name": "Stop",
"stop_hook_active": true
}PreCompact Input β
For manual triggers, custom_instructions comes from the /compact command. Auto triggers leave it empty.
json
{
"session_id": "abc123",
"transcript_path": "~/.codebuddy/projects/.../00893aaf-19fa-41d2-8238-13269b9b3ca0.jsonl",
"permission_mode": "default",
"hook_event_name": "PreCompact",
"trigger": "manual",
"custom_instructions": ""
}SessionStart Input β
json
{
"session_id": "abc123",
"transcript_path": "~/.codebuddy/projects/.../00893aaf-19fa-41d2-8238-13269b9b3ca0.jsonl",
"permission_mode": "default",
"hook_event_name": "SessionStart",
"source": "startup"
}SessionEnd Input β
json
{
"session_id": "abc123",
"transcript_path": "~/.codebuddy/projects/.../00893aaf-19fa-41d2-8238-13269b9b3ca0.jsonl",
"cwd": "/Users/...",
"permission_mode": "default",
"hook_event_name": "SessionEnd",
"reason": "exit"
}Hook Output β
Hooks communicate back to CodeBuddy Code in two ways.
Basic Mode: Exit Codes β
Use exit status, stdout, and stderr to convey results:
- Exit code 0 β Success. Stdout appears in transcript mode (Ctrl+R), except for
UserPromptSubmitandSessionStart, where stdout is appended to the context. - Exit code 2 β Blocking error. Stderr is handled automatically based on the event.
- Other exit codes β Non-blocking errors. Stderr is shown to the user and execution proceeds.
Exit Code 2 Behavior β
| Event | Effect |
|---|---|
| PreToolUse | Blocks the tool call and surfaces stderr |
| PostToolUse | Surfaces stderr (tool already ran) |
| Notification | N/A β stderr shown to the user |
| UserPromptSubmit | Blocks the prompt, clears it, surfaces stderr |
| Stop | Blocks the stop action, surfaces stderr |
| SubagentStop | Blocks the sub-agent stop, surfaces stderr to the sub-agent |
| PreCompact | N/A β stderr shown to the user |
| SessionStart | N/A β stderr shown to the user |
| SessionEnd | N/A β stderr shown to the user |
Advanced Mode: JSON Output β
Write structured JSON to stdout for granular control.
Common JSON Fields β
jsonc
{
"continue": true, // Whether CodeBuddy proceeds after the hook (default true)
"stopReason": "string", // Message shown when continue is false
"suppressOutput": true, // Hide stdout in transcript mode (default false)
"systemMessage": "string" // Optional warning shown to the user
}PreToolUse Decision Control β
jsonc
{
"hookSpecificOutput": {
"hookEventName": "PreToolUse",
"permissionDecision": "allow" | "deny" | "ask",
"permissionDecisionReason": "My reason here",
"updatedInput": {
"field_to_modify": "new value"
}
}
}allowβ Skip the built-in permission dialog.denyβ Block the tool call.askβ Force the UI to prompt the user.updatedInputβ Mutate tool arguments before execution.
PostToolUse Decision Control β
jsonc
{
"decision": "block" | undefined,
"reason": "Explanation for decision",
"hookSpecificOutput": {
"hookEventName": "PostToolUse",
"additionalContext": "Additional information for CodeBuddy"
}
}UserPromptSubmit Decision Control β
jsonc
{
"decision": "block" | undefined,
"reason": "Explanation for decision",
"hookSpecificOutput": {
"hookEventName": "UserPromptSubmit",
"additionalContext": "My additional context here"
}
}Stop / SubagentStop Decision Control β
jsonc
{
"decision": "block" | undefined,
"reason": "Must be provided when CodeBuddy is blocked from stopping"
}SessionStart Decision Control β
jsonc
{
"hookSpecificOutput": {
"hookEventName": "SessionStart",
"additionalContext": "My additional context here"
}
}Using MCP Tools β
Hooks integrate seamlessly with MCP (Model Context Protocol) tools.
MCP Tool Naming β
MCP tool names follow the pattern mcp__<server>__<tool>, for example:
mcp__memory__create_entitiesβcreate_entitieson the Memory servermcp__filesystem__read_fileβread_fileon the Filesystem servermcp__github__search_repositoriesβ GitHub search tool
Configuring Hooks for MCP Tools β
Target an individual tool or an entire MCP server:
json
{
"hooks": {
"PreToolUse": [
{
"matcher": "mcp__memory__.*",
"hooks": [
{
"type": "command",
"command": "echo 'Memory operation initiated' >> ~/mcp-operations.log"
}
]
},
{
"matcher": "mcp__.*__write.*",
"hooks": [
{
"type": "command",
"command": "/home/user/scripts/validate-mcp-write.py"
}
]
}
]
}
}Security Notes β
Disclaimer β
Use at your own risk. Hooks run arbitrary shell commands on your machine. By enabling them you acknowledge:
- You are solely responsible for the commands you configure.
- Hooks can read, modify, or delete anything your user can access.
- Malicious or buggy hooks can cause data loss or system damage.
- Tencent Cloud offers no warranty and is not liable for any damages.
- Always test hooks in a safe environment before rolling them into production.
Best Practices β
- Validate and sanitize input β Never trust incoming data blindly.
- Quote shell variables β Use
"$VAR", not$VAR. - Prevent path traversal β Guard against
..in file paths. - Use absolute paths β Especially for scripts (or
"$CODEBUDDY_PROJECT_DIR"). - Skip sensitive files β Avoid touching
.env,.git/, secrets, etc.
Configuration Safety β
Editing the settings file does not hot-load hooks. CodeBuddy Code:
- Captures a snapshot at startup.
- Uses that snapshot for the whole session.
- Warns if the file changes externally.
- Requires review in the
/hookspanel before changes apply.
Execution Details β
- Timeout β 60 seconds by default; override per hook.
- Parallelism β All matching hooks run in parallel.
- Deduplication β Identical commands are coalesced.
- Environment β Runs inside the current working directory with CodeBuddy's environment.
CODEBUDDY_PROJECT_DIRexposes the absolute project root.
- Input β JSON over stdin.
- Output β
- PreToolUse / PostToolUse / Stop / SubagentStop: progress visible in transcript mode (Ctrl+R).
- Notification / SessionEnd: logged only when
--debugis enabled. - UserPromptSubmit / SessionStart: stdout is appended to the conversation context.
Debugging β
Basic Troubleshooting β
If hooks are not firing:
- Check configuration β Run
/hooksto confirm registration. - Validate JSON β Ensure the settings file parses.
- Test commands β Execute the script manually first.
- Verify permissions β Scripts must be executable.
- Inspect logs β Launch
codebuddy --debugfor hook traces.
Common mistakes:
- Unescaped quotes β Use
\"inside JSON strings. - Incorrect matcher β Tool names are case-sensitive.
- Command not found β Provide full paths.
Advanced Debugging β
For tricky issues:
- Trace execution β
codebuddy --debugshows hook scheduling and output. - Validate schemas β Use external tools to simulate hook input/output.
- Check env vars β Confirm CodeBuddy exposes the expected environment.
- Test edge cases β Try unusual paths or payloads.
- Monitor resources β Ensure hooks are not exhausting CPU/RAM.
- Emit structured logs β Add logging inside your scripts.
Debug Output Example β
Not yet supported for general availability.
codebuddy --debug prints hook execution like:
text
[DEBUG] Executing hooks for PostToolUse:Write
[DEBUG] Getting matching hook commands for PostToolUse with query: Write
[DEBUG] Found 1 hook matchers in settings
[DEBUG] Matched 1 hooks for query "Write"
[DEBUG] Found 1 hook commands to execute
[DEBUG] Executing hook command: <Your command> with timeout 60000ms
[DEBUG] Hook command completed with status 0: <Your stdout>Transcript mode (Ctrl+R) displays which hook is running, the command, success/failure, and any output.
With this guide you should have a complete understanding of how hooks work inside CodeBuddy Code and how to configure them safely. For a hands-on walkthrough, continue with the Hooks Getting Started Guide.