workflow-add-hook

workflow-add-hook is a command for Claude Code from shanraisshan/claude-code-hooks. It costs 18 tokens per session (3,658 once invoked), scanned B, original, MIT.

A command for adding a new event to a Claude Code hook system, which runs actions when specified events occur in Claude Code.

In plain words
What is it for?
Use it to add and document a hook event, validate its name and sound files, check Claude Code references and version details, and configure the related project files.
Why use it?
It guides the setup of the required sound files, configuration, scripts, documentation, and research so an event is added consistently.

Command for Claude Code

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/shanraisshan/claude-code-hooks/workflow-add-hook
Clone the repo
git clone --depth 1 https://github.com/shanraisshan/claude-code-hooks

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for workflow-add-hook

README.md
[![agentmods](https://agentmods.dev/badge/commands/shanraisshan/claude-code-hooks/workflow-add-hook.svg)](https://agentmods.dev/commands/shanraisshan/claude-code-hooks/workflow-add-hook)
Your own site
<a href="https://agentmods.dev/commands/shanraisshan/claude-code-hooks/workflow-add-hook"><img src="https://agentmods.dev/badge/commands/shanraisshan/claude-code-hooks/workflow-add-hook.svg" alt="Measured on agentmods" height="20"></a>
Per session 18 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,658 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00018 $0.03658
Opus 5 $0.00009 $0.01829
Sonnet 5 $0.00004 $0.00732
Haiku 4.5 $0.00002 $0.00366

Measured 5d ago against content hash 1f0f55d371a9, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade B, and why

workflow-add-hook scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

- Run: `grep -n '\b<OLD_COUNT> hook' .claude/hooks/HOOKS-README.md` and `grep -n 'remaining [0-9]* hook' .claude/hooks/HOOKS-README.md` to find ALL instances
.claude/commands/workflows/workflow-add-hook.md · 276 lines

How it starts

The opening of the file, as written. The whole thing — 276 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Add New Hook

Add a new Claude Code hook event to the claude-code-hooks project.

Hook event name: $ARGUMENTS (if empty, ask the user)

Naming rules:

  • Hook name is PascalCase (e.g. ConfigChange, PreToolUse)
  • Sound folder/files use lowercase with no separators (e.g. configchange, pretooluse)

Step 0: Validate

If $ARGUMENTS is empty, ask the user for the hook event name. Confirm it's PascalCase. Derive the lowercase version.

Step 1: Check Sound Files (BLOCKING)

Check if .claude/hooks/sounds/<lowercase>/ exists with <lowercase>.mp3 and <lowercase>.wav.

  • If missing: Create the directory, tell the user to add sound files (suggest ElevenLabs with voice "Samara X"), and STOP. Do NOT proceed until the user confirms files are added.
  • If present: Continue to Step 2.

Step 2: Research the Hook

Fetch all three sources in parallel using WebFetch:

  1. Hooks Reference — Find the hook's description, matcher support, can-block status, and special requirements
  2. Hooks Guide — Find hook types, matcher values with examples, environment variables, and additional usage details
  3. Changelog — Find which Claude Code version introduced this hook

Never ask the user for version or description — always look it up.

Step 3: Determine Hook Properties

Property Rule
timeout Default 5000. Use 30000 only for heavy init hooks (like Setup)
once Only for session-lifecycle hooks (like SessionStart, SessionEnd, PreCompact). Ask user if unsure, default to false
async Always true (all hooks in this project are async sound notifications)

Step 4: Update All Files

Read each file first, then edit. ALL files must be updated — no exceptions.

Settings files (4 files)

Add the hook entry in correct position. Structure:

"<HookEventName>": [
  {
    "hooks": [
      {
        "type": "command",
        "command": "python3 ${CLAUDE_PROJECT_DIR}/.claude/hooks/scripts/hooks.py",
        "timeout": <timeout>,
        "async": true,
        "statusMessage": "<HookEventName>"
      }
    ]
  }
]

Read the full file on GitHub · 276 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 276 lines · 18 tokens per session scan B 1f0f55d371a9

Subscribe to this mod's changes

workflow-add-hook is a command published in the GitHub repository shanraisshan/claude-code-hooks (536 stars, last pushed 3mo ago), licensed MIT. It adds 18 tokens to every session and 3,658 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other commands, from other repositories