Language:JapaneseEnglish

hookify Claude Code Plugin

Author
Anthropic
Category
Productivity
Topics
Claude Code Customization & Workflow
First cataloged
2026-07-09 (UTC)
Explanation last updated
2026-07-16 (UTC)
Source (GitHub) last updated
2026-05-20 (UTC) (99 days ago)

The explanation below is AI-generated. Please verify it against the sources.

Hookify is a Claude Code plugin that lets users create custom hook rules through simple markdown files instead of editing complex hooks. json configuration. It can generate a rule from an explicit natural-language instruction, or analyze recent conversation to find behaviors the user has corrected or objected to. Rules are matched against bash commands, file edits, user prompts, or session-stop events using regex patterns or field-based conditions, and can either show a warning or block the action outright. The plugin runs on Python 3. 7+ with no external dependencies.

What you can do with hookify

  • Run /hookify with a plain-language description to auto-generate a rule file
  • Run /hookify with no arguments so it scans recent conversation for repeated corrections and turns them into rules
  • Use /hookify:list to see all defined rules and /hookify:configure to enable or disable them interactively
  • Write rules that trigger on bash commands, file edits, prompt submissions, or session-stop events using regex patterns or multiple field conditions
  • Set each rule's action to warn (show a message but continue) or block (prevent the operation or stop)

Sources

Back to list