hookify/list

List all configured hookify rules

Content Preview
---
description: List all configured hookify rules
allowed-tools: ["Glob", "Read", "Skill"]
---

# List Hookify Rules

**Load hookify:writing-rules skill first** to understand rule format.

Show all configured hookify rules in the project.

## Steps

1. Use Glob tool to find all hookify rule files:
   ```
   pattern: ".claude/hookify.*.local.md"
   ```

2. For each file found:
   - Use Read tool to read the file
   - Extract frontmatter fields: name, enabled, event, pattern
   - Extract message 
How to Use

Recommended: Install to project (local)

mkdir -p .claude/skills
curl -o .claude/skills/hookify/list.md \
  https://raw.githubusercontent.com/anthropics/claude-plugins-official/main/plugins/hookify/commands/list.md

Skill is scoped to this project only. Add .claude/skills/ to your .gitignoreif you don't want to commit it.

Alternative: Clone full repo

git clone https://github.com/anthropics/claude-plugins-official

Then reference at plugins/hookify/commands/list.md

Related Skills