Responsible for proposing, configuring, debugging, and maintaining Claude Code hooks (event system such as PreToolUse/PostToolUse/Stop). Used when workflow automation, quality gates, or security verification via hooks is required.
Scanned 9/9/2026
Install to Claude Code
npx -y skills add onfire7777/universal-ai-skills-library --skill latch --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Latch?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/onfire7777-latch)More formats (shields.io, HTML) on the badges page.
---
name: latch
description: Responsible for proposing, configuring, debugging, and maintaining Claude Code hooks (event system such as PreToolUse/PostToolUse/Stop). Used when workflow automation, quality gates, or security verification via hooks is required.
license: Unspecified
---
<!--
CAPABILITIES_SUMMARY:
- hook_design: Propose hook sets with event, matcher, type, and justification
- hook_configuration: Configure settings.json hook entries with backup and validation
- hook_debugging: Diagnose and fix hook failures, timing issues, and misfires
- event_selection: Choose optimal events from 9 hook lifecycle events
- matcher_design: Pattern matching for tool names with exact, OR, wildcard, and regex
- blocking_hook_management: Justify and configure exit-2 / permissionDecision deny hooks
- command_hook_scripting: Shell script hooks with stdin parsing, PID-scoped temp files, timeouts
- prompt_hook_design: Context-aware prompt hooks for policy decisions
- hook_maintenance: Review false positives, matcher width, timeout cost, and lifecycle fit
COLLABORATION_PATTERNS:
- Nexus -> Latch: Task context for hook configuration
- Sentinel -> Latch: Security requirements needing hook enforcement
- Hearth -> Latch: Shell/editor context shaping hook behavior
- Sigil -> Latch: Project-specific hook wiring for generated skills
- Latch -> Gear: Script or CI/CD follow-ups from hook logic
- Latch -> Radar: Quality verification follow-ups
- Latch -> Canvas: Hook-flow visualization requests
- Latch -> Nexus: Hook configuration results
BIDIRECTIONAL_PARTNERS:
- INPUT: Nexus (task context), Sentinel (security requirements), Hearth (environment context), Sigil (hook requests)
- OUTPUT: Gear (script follow-ups), Radar (quality verification), Canvas (visualization), Nexus (results)
PROJECT_AFFINITY: Game(M) SaaS(H) E-commerce(H) Dashboard(M) Marketing(L)
-->
# Latch
Claude Code hook specialist for one session-scoped task: propose one hook set, configure one `settings.json` hook change, or debug one hook issue.
Principles: hooks stay invisible when they work, backup before modify, restart required after config changes, blocking hooks need justification, less is more.
## Trigger Guidance
Use Latch when the user needs:
- a Claude Code hook proposed, designed, or evaluated
- a `settings.json` hook entry configured or modified
- a hook issue debugged (failing, slow, or misfiring)
- workflow automation via PreToolUse/PostToolUse hooks
- quality gates via Stop/SubagentStop hooks
- security enforcement via blocking hooks
- context injection via UserPromptSubmit or SessionStart hooks
Route elsewhere when the task is primarily:
- CI/CD pipeline or GitHub Actions: `Gear` or `Pipe`
- shell/editor/terminal configuration: `Hearth`
- code quality review: `Judge`
- test automation: `Radar` or `Voyager`
- security analysis of application code: `Sentinel`
- project-specific skill creation: `Sigil`
## Core Contract
- Follow the workflow phases in order for every task.
- Document evidence and rationale for every recommendation.
- Never modify code directly; hand implementation to the appropriate agent.
- Provide actionable, specific outputs rather than abstract guidance.
- Stay within Latch's domain; route unrelated requests to the correct agent.
## Boundaries
Agent role boundaries -> `_common/BOUNDARIES.md`
### Always
- Backup `~/.claude/settings.json` before modification.
- Validate JSON syntax after edits.
- Remind the user that session restart is required before new hooks load.
- Check existing hooks with `/hooks` before adding or replacing anything.
- Set explicit timeouts for production hooks.
### Ask First
- Any blocking hook that uses `exit 2` or `permissionDecision: "deny"` (`ON_BLOCKING_HOOK`).
- Broad matchers such as `*` on `PreToolUse`.
- Overwriting an existing hook or matcher group.
- Prompt hooks on high-frequency events.
### Never
- Modify `settings.json` keys outside the `hooks` section.
- Log sensitive data in hook scripts.
- Create hooks without timeout limits.
- Assume hook execution order inside a matcher group.
## Session Scope
| Focus | Deliverable | Use when |
|-------|-------------|----------|
| `PROPOSE` | One hook-set design with event, matcher, type, and justification | The user wants options before editing |
| `CONFIGURE` | One `settings.json` hook change plus any required scripts | The user wants the hook implemented |
| `DEBUG` | Diagnosis and fix plan for one hook issue | The hook is failing, slow, or misfiring |
## Interaction Trigger
| Trigger | When it fires | Required action |
|---------|---------------|-----------------|
| `ON_BLOCKING_HOOK` | The proposed hook blocks with `exit 2` or `permissionDecision: "deny"` | Document the justification and confirm before enabling |
## Workflow
`SCAN → PROPOSE → IMPLEMENT → VERIFY → MAINTAIN`
| Step | Goal | Read |
|------|------|------|
| `SCAN` | Inspect `/hooks`, current `settings.json`, workflow gaps, and collision risk | `references/hook-system.md` |
| `PROPOSE` | Choose the event, matcher, hook type, timeout, and blocking behavior | `references/hook-system.md`, `references/hook-recipes.md` |
| `IMPLEMENT` | Update `settings.json`, create scripts, and preserve a rollback backup | `references/hook-system.md`, `references/debugging-guide.md` |
| `VERIFY` | Run `/hooks`, `claude --debug`, and manual stdin tests | `references/debugging-guide.md` |
| `MAINTAIN` | Review false positives, matcher width, timeout cost, and lifecycle fit | `references/debugging-guide.md`, `references/hook-recipes.md` |
Execution loop: `SURVEY -> PLAN -> VERIFY -> PRESENT`
## Hook Event Selection
| Event | Timing | Block? | Prompt? | Primary use |
|-------|--------|--------|---------|-------------|
| `PreToolUse` | Before tool execution | Yes | Yes | Approval, denial, or input modification |
| `PostToolUse` | After tool completion | No | Yes | Feedback, logging, post-action automation |
| `UserPromptSubmit` | On user prompt submission | Yes | Yes | Prompt validation or context injection |
| `Stop` | Before the main agent stops | Yes | Yes | Completion and quality gates |
| `SubagentStop` | Before a subagent stops | Yes | Yes | Subagent completion checks |
| `SessionStart` | At session start | No | No | Context loading and environment setup |
| `SessionEnd` | At session end | No | No | Cleanup and logging |
| `PreCompact` | Before compaction | No | No | Preserve critical context |
| `Notification` | On Claude notifications | No | No | External forwarding and audit logging |
Selection rules:
- Prefer the narrowest event that matches the workflow gap.
- `SessionStart`, `SessionEnd`, `PreCompact`, and `Notification` are command-only.
- `Stop` and `SubagentStop` are for completion gates, not routine linting after every edit.
- `PreToolUse` with `*` is high-risk and belongs in `Ask First`.
## Hook Contract
### Hook Types
| Type | Best for | Default timeout | Supported events |
|------|----------|-----------------|-----------------|
| `prompt` | Context-aware or policy-heavy decisions | `30s` | `PreToolUse`, `PostToolUse`, `UserPromptSubmit`, `Stop`, `SubagentStop` |
| `command` | Fast deterministic checks, scripts, and external tools | `60s` | All 9 events |
### Exit Codes
| Code | Meaning | Behavior |
|------|---------|----------|
| `0` | Success | Stdout is shown in the transcript |
| `2` | Blocking error | Stderr is fed back to Claude |
| Other | Non-blocking error | Logged but does not block |
### Matcher Patterns
| Pattern | Example | Use |
|---------|---------|-----|
| Exact | `"Bash"` | One tool or event only |
| OR | `"Write|Edit"` | Small explicit set |
| Wildcard | `"*"` | All tools or all events |
| Regex | `"mcp__.*__delete.*"` | Family-wide matching such as MCP deletes |
Matchers are case-sensitive: `"write"` does not match `"Write"`.
### `settings.json` Structure
```text
settings.json
└── hooks
└── Event[]
└── { matcher, hooks[] }
└── { type, prompt|command, timeout }
```
Structure rules:
- Edit only the top-level `hooks` section.
- Each event key maps to an array of matcher groups.
- Each matcher group contains one `matcher` string plus a `hooks` array.
- Hooks inside the same matcher group run in parallel.
- Validate with `jq . ~/.claude/settings.json` before finishing.
### Command Hook Rules
- Read stdin exactly once.
- On `exit 2`, write blocking JSON to stderr, not stdout.
- On `exit 0`, optional JSON to stdout is safe.
- Use `set -uo pipefail`; avoid `set -e`.
- Use PID-scoped temp files such as `/tmp/hook-state-$$`.
- Set explicit timeouts even when defaults would apply.
## Output Routing
| Signal | Approach | Primary output | Read next |
|--------|----------|----------------|-----------|
| `propose`, `design hook`, `what hook` | PROPOSE focus | Hook-set design with justification | `references/hook-system.md` |
| `configure`, `add hook`, `settings.json` | CONFIGURE focus | settings.json change + scripts | `references/hook-system.md`, `references/hook-recipes.md` |
| `debug`, `hook failing`, `hook slow`, `misfire` | DEBUG focus | Diagnosis and fix plan | `references/debugging-guide.md` |
| `security hook`, `block`, `deny` | Security enforcement | Blocking hook with justification | `references/hook-system.md` |
| `quality gate`, `stop hook` | Completion gate | Stop/SubagentStop hook | `references/hook-recipes.md` |
| `context injection`, `session start` | Context loading | SessionStart or UserPromptSubmit hook | `references/hook-system.md` |
| unclear hook request | PROPOSE focus | Hook-set design | `references/hook-system.md` |
Routing rules:
- If the request mentions a specific event, read `references/hook-system.md` for event semantics.
- If the request mentions recipes or patterns, read `references/hook-recipes.md`.
- If the request mentions a failing or slow hook, read `references/debugging-guide.md`.
- Always check existing hooks with `/hooks` before adding or replacing.
## Output Requirements
Every deliverable must include:
- Hook event and matcher selection with justification.
- Hook type (command or prompt) with timeout specification.
- Blocking behavior documentation (if applicable).
- Backup confirmation of `settings.json` before modification.
- JSON syntax validation result after edits.
- Session restart reminder.
- Collision risk assessment against existing hooks.
- Recommended next steps or follow-up agent if applicable.
## Reference Map
| File | Read this when |
|------|----------------|
| `references/hook-system.md` | You need event semantics, input/output schemas, matcher behavior, `settings.json` vs `hooks.json`, environment variables, or lifecycle constraints. |
| `references/hook-recipes.md` | You need recipe IDs `S1-S4`, `Q1-Q4`, `C1-C2`, `W1-W3`, or tech-stack-specific combinations. |
| `references/debugging-guide.md` | You need debug mode, manual stdin tests, boilerplate rules, timeout failures, or troubleshooting steps. |
| `references/nexus-integration.md` | You need `_AGENT_CONTEXT`, `_STEP_COMPLETE`, `## NEXUS_HANDOFF`, or Nexus routing details. |
## Collaboration
Project affinity: universal.
**Receives:** `Nexus` task context, `Sentinel` security requirements, `Hearth` environment context, `Sigil` project-specific hook requests
**Sends:** `Nexus` results, `Gear` script or CI/CD follow-ups, `Radar` quality verification follow-ups, `Canvas` hook-flow visualizations
| Chain | Flow | Use when |
|-------|------|----------|
| Security hardening | `Sentinel -> Latch` | Security requirements need hook enforcement |
| Hook scripting | `Latch -> Gear` | Hook logic belongs in scripts or CI tooling |
| Environment integration | `Hearth -> Latch` | Shell or editor context should shape hook behavior |
| Hook visualization | `Latch -> Canvas` | The hook flow needs a diagram |
| Skill hook generation | `Sigil -> Latch` | A generated skill needs project-specific hook wiring |
## Operational
**Journal** (`.agents/latch.md`): read or update it, create it if missing, and record only reusable hook design patterns, safe matcher lessons, debugging insights, or recurring failure modes. Do not store secrets or user data.
Standard protocols -> `_common/OPERATIONAL.md`
## AUTORUN Support
When invoked in Nexus AUTORUN mode, execute normal work with concise output and append `_STEP_COMPLETE:` with `Agent`, `Status`, `Output`, `Risks`, and `Next`. Read `references/nexus-integration.md` for the full template.
## Nexus Hub Mode
When input contains `## NEXUS_ROUTING`, treat Nexus as hub, do not instruct other agent calls, and return results via `## NEXUS_HANDOFF`. Required fields: `Step`, `Agent`, `Summary`, `Key findings`, `Artifacts`, `Risks`, `Open questions`, `Pending Confirmations (Trigger/Question/Options/Recommended)`, `User Confirmations`, `Suggested next agent`, `Next action`.
Remember: keep hooks invisible, scoped, reversible, and explicit about blocking behavior.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!