hook-dev
Use this skill when creating or refining Claude Code hooks. Hooks are shell commands that execute at specific lifecycle events (tool use, prompt submit, notifications, session events). Helps design event handlers for notifications, formatting, logging, feedback, and permission control. Automatically invoked when user requests "create a hook", "add automation", "event handler", "workflow automation", or mentions hook development.
What this skill does
# Hook Dev Skill
This skill helps create production-ready Claude Code hooks following Anthropic's official specifications.
## What are Hooks?
**Hooks** are user-defined shell commands that execute at various points in Claude Code's lifecycle. They provide:
- **Deterministic control**: Ensure actions happen automatically, not relying on LLM decisions
- **Workflow automation**: Format code, run linters, log commands
- **Custom notifications**: Alert when Claude needs input
- **Permission systems**: Block sensitive file modifications
- **Feedback loops**: Validate code changes against conventions
## Hook vs Skill vs Command
| Feature | Hook | Skill | Command |
|---------|------|-------|---------|
| **Trigger** | Lifecycle event | Context match | User invocation |
| **Type** | Shell command | AI capability | Prompt template |
| **Use case** | Automation, validation | Autonomous features | Reusable prompts |
| **Control** | Deterministic | LLM-driven | User-initiated |
**When to use Hooks**: Automatic formatting, logging, notifications, permission control, code validation
## Hook Events
Ten lifecycle events trigger hooks:
### 1. PreToolUse
Executes **after Claude creates tool parameters but before processing**.
**Use cases**:
- Block edits to sensitive files (.env, production configs)
- Validate bash commands before execution
- Request confirmation for destructive operations
- Log all tool usage for auditing
- Modify tool inputs programmatically
**Blocking capability**: Yes - exit code 2 blocks with error fed to Claude; JSON output with `"permissionDecision": "deny"` also blocks
### 2. PostToolUse
Runs **immediately after successful tool completion**.
**Use cases**:
- Format code after edits (Prettier, Black, gofmt)
- Run linters after file modifications
- Sync changes to external systems
- Update indexes or caches
**Blocking capability**: No - tool already executed
### 3. UserPromptSubmit
Fires when users **submit prompts, before Claude processes them**.
**Use cases**:
- Inject context automatically (git status, env variables)
- Log user interactions
- Validate prompt safety
- Add project-specific context
**Blocking capability**: Yes - JSON output with `"decision": "block"` prevents submission
### 4. PermissionRequest
Activates when **permission dialogs appear to users**.
**Use cases**:
- Auto-approve safe operations
- Auto-deny dangerous operations
- Log permission requests
- Provide context for decisions
**Blocking capability**: Yes - can allow, deny, or pass through to user
### 5. Notification
Triggers when **Claude Code sends notifications**.
**Use cases**:
- Custom notification sounds
- Desktop notifications (macOS, Linux, Windows)
- Send to Slack/Discord
- Visual alerts
**Blocking capability**: No - notification already generated
### 6. Stop
Activates when **the main agent finishes responding**.
**Use cases**:
- Run tests after code generation
- Update documentation
- Commit changes automatically
- Trigger deployments
**Blocking capability**: Yes - JSON output with `"decision": "block"` prevents stop
### 7. SubagentStop
Runs when **subagent tasks complete**.
**Use cases**:
- Log subagent results
- Validate subagent outputs
- Trigger next workflow steps
- Aggregate subagent data
**Blocking capability**: Yes - JSON output with `"decision": "block"` prevents stop
### 8. PreCompact
Executes **before context window compaction operations**.
**Use cases**:
- Save conversation state
- Export conversation history
- Archive important context
**Blocking capability**: Yes - can prevent compaction
### 9. SessionStart
Triggers at **session initialization or resumption**.
**Use cases**:
- Load project context
- Initialize environment variables
- Display project status
- Check for updates
**Blocking capability**: No - session already started
### 10. SessionEnd
Runs when **sessions terminate**.
**Use cases**:
- Save session state
- Cleanup temporary files
- Export logs
- Trigger cleanup scripts
**Blocking capability**: No - session already ending
## Hook Configuration
Hooks are configured in `.claude/settings.json`:
```json
{
"hooks": {
"PreToolUse": [
{
"matcher": "Edit",
"hooks": [
{
"type": "command",
"command": "echo 'Editing file' >> /tmp/claude-audit.log"
}
]
}
],
"PostToolUse": [
{
"matcher": "Edit|Write",
"hooks": [
{
"type": "command",
"command": "jq -r '.tool_input.file_path' | { read file_path; if echo \"$file_path\" | grep -q '\\.py$'; then black \"$file_path\"; fi; }"
}
]
}
]
}
}
```
### Configuration Structure
```json
{
"hooks": {
"EventName": [ // Event type (PreToolUse, PostToolUse, etc.)
{
"matcher": "ToolPattern", // Tool name, regex (pipe-separated), or "*" for all
"hooks": [ // Array of hooks for this matcher
{
"type": "command", // "command" or "prompt"
"command": "shell command", // Shell command to execute
"timeout": 60 // Optional timeout in seconds (default: 60)
}
]
}
]
}
}
```
### Configuration Locations
- **User-level**: `~/.claude/settings.json` (all projects)
- **Project-level**: `.claude/settings.json` (this project, team-shared)
- **Local**: `.claude/settings.local.json` (uncommitted, project-specific overrides)
- **Plugin-level**: `plugin-name/hooks/hooks.json` (bundled with plugin)
## Matchers
### Tool Matching
**Exact match**:
```json
{
"matcher": "Edit"
}
```
**Regex pattern** (use pipe for OR):
```json
{
"matcher": "Edit|Write|MultiEdit"
}
```
**Wildcard** (match all tools):
```json
{
"matcher": "*"
}
```
**Common tool names**: Bash, Read, Write, Edit, MultiEdit, Glob, Grep, Task, WebFetch, WebSearch, TodoRead, TodoWrite, NotebookRead, NotebookEdit
**MCP tools**: Use `mcp__<server>__<tool>` pattern (e.g., `mcp__github__create_issue`)
### Accessing Tool Data
Hook input arrives via **stdin as JSON**. Use `jq` to extract values:
```bash
# Access file_path from Edit tool
jq -r '.tool_input.file_path'
# Access bash command
jq -r '.tool_input.command'
# Check if file matches pattern
jq -r '.tool_input.file_path' | { read file_path; if echo "$file_path" | grep -q '\.py$'; then echo "Python file"; fi; }
# Access tool response (PostToolUse only)
jq -r '.tool_response'
```
**Common JSON fields**:
- `.session_id` - Current session identifier
- `.transcript_path` - Path to conversation transcript
- `.cwd` - Current working directory
- `.tool_name` - Name of the tool being used
- `.tool_input` - Tool parameters (varies by tool)
- `.tool_response` - Tool output (PostToolUse only)
- `.hook_event_name` - Name of the event
**Environment variables**:
- `$CLAUDE_PROJECT_DIR` - Project root absolute path
- `$CLAUDE_ENV_FILE` - For SessionStart hooks to persist environment variables
- `$CLAUDE_CODE_REMOTE` - "true" if remote execution, empty if local
- `${CLAUDE_PLUGIN_ROOT}` - Plugin directory path (plugin hooks only). Use this to reference scripts bundled with your plugin:
```json
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/scripts/process.sh"
}
```
## Hook Types
### Command Hooks
Execute bash scripts with stdin JSON input:
```json
{
"type": "command",
"command": "jq -r '.tool_input.file_path' | xargs -I {} prettier --write {}"
}
```
**Exit codes**:
- `0` - Success; stdout shown to user (except UserPromptSubmit shows to Claude)
- `2` - Blocking error; stderr fed to Claude as context
- Other - Non-blocking error; stderr shown to user
### Prompt Hooks
Send input to LLM (Haiku) for decisions (PreToolUse, Stop, SubagentStop, UserPromptSubmit):
```json
{
"type": "prompt",
"prompt": "Analyze this tool use and decide if it should be allowed: {{input}}"
}
```
Returns JSON with decision fields.
## ConRelated in Design
contribute
IncludedLocal-only OSS contribution command center. Auto-refreshes the user's in-flight PR and issue state on invoke so conversations start with full context — no need to brief Claude on what's in flight. Helps the user find issues to contribute to on GitHub, builds per-repo dossiers of what each upstream expects (CLA, DCO, branch convention, AI policy, draft-first, review bots, issue templates), runs deterministic gates before any external action so AI-assisted contributions don't reach maintainers as slop. State is markdown-only: candidate files at ~/.contribute-system/candidates/, repo dossiers at ~/.contribute-system/research/, append-only event log at ~/.contribute-system/log.jsonl. No database, no cloud calls. Use when the user asks about their PRs / issues / contributions, wants to find new work to take on, claim an issue, build/refresh a repo's dossier, or draft a Design Issue or PR. Trigger with "/contribute", "what's my PR status", "find a contribution", "claim issue X", "draft a Design Issue for Y", "refresh dossier for Z".
architectural-analysis
IncludedUser-triggered deep architectural analysis of a codebase or scoped subtree across eight modes — information architecture, data flow, integration points, UI surfaces, interaction patterns, data model, control flow, and failure modes. This skill should be used when the user asks to "diagram this codebase," "map the architecture," "show the data flow," "give me an ERD," "trace control flow," "find the integration points," "verify the layout pattern," "audit the UX architecture," or any similar request whose primary deliverable is mermaid diagrams plus cited reports under docs/architecture/. Dispatches haiku/sonnet sub-agents in parallel for per-mode exploration, then verifies every citation mechanically before any node lands in a diagram. Not for one-off prose explanations of code (use code-explanation) or for high-level system design from scratch (use system-design).
mcp
IncludedModel Context Protocol (MCP) server development and tool management. Languages: Python, TypeScript. Capabilities: build MCP servers, integrate external APIs, discover/execute MCP tools, manage multi-server configs, design agent-centric tools. Actions: create, build, integrate, discover, execute, configure MCP servers/tools. Keywords: MCP, Model Context Protocol, MCP server, MCP tool, stdio transport, SSE transport, tool discovery, resource provider, prompt template, external API integration, Gemini CLI MCP, Claude MCP, agent tools, tool execution, server config. Use when: building MCP servers, integrating external APIs as MCP tools, discovering available MCP tools, executing MCP capabilities, configuring multi-server setups, designing tools for AI agents.
react-native-skia
IncludedDesign, build, debug, and optimise high-polish animated graphics in React Native or Expo using @shopify/react-native-skia, Reanimated, and Gesture Handler. Use when the user wants canvas-driven UI, shaders, paths, rich text, image filters, sprite fields, Skottie, video frames, snapshots, web CanvasKit setup, or performance tuning for custom motion-heavy elements such as loaders, hero art, cards, charts, progress indicators, particle systems, or gesture-driven surfaces. Also use when the user asks for fluid, glow, glass, blob, parallax, 60fps/120fps, or GPU-friendly animated effects in React Native, even if they do not explicitly say "Skia". Do not use for ordinary form/layout work with standard views.
plaid
IncludedProduct Led AI Development — guides founders from idea to launched product. Six capabilities: Idea (discover a product idea), Validate (pressure-test the idea against fatal flaws, problem reality, competition, and 2-week MVP feasibility), Plan (vision intake + document generation), Design (translate image references into a design.md spec), Launch (go-to-market strategy), and Build (roadmap execution). Use when someone says "PLAID", "plaid idea", "help me find an idea", "product idea", "idea from my business", "idea from my expertise", "plaid validate", "validate my idea", "pressure-test", "is this idea good", "find fatal flaws", "validate the problem", "plan a product", "define my vision", "generate a PRD", "product strategy", "plaid design", "design from image", "translate image to design", "create design.md", "extract design tokens", "plaid launch", "go-to-market", "launch plan", "GTM strategy", "launch playbook", "plaid build", "build the app", "start building", or "execute the roadmap".
nextjs-framer-motion-animations
IncludedAdds production-safe Motion for React or Framer Motion animations to Next.js apps, including reveal, hover and tap micro-interactions, whileInView, stagger, AnimatePresence, layout and layoutId transitions, reorder, scroll-linked UI, and lightweight route-content transitions. Use when the user asks to add, refactor, or debug Motion or Framer Motion in App Router or Pages Router codebases, especially around server/client boundaries, reduced motion, LazyMotion, bundle size, hydration, or route transitions. Avoid for GSAP-style timelines, WebGL or 3D scenes, heavy scroll storytelling, or CSS-only effects unless Motion is explicitly requested.