跳到主要内容
知仓学习社ZHICANG

hookify-rules

自動フック実装、イベントドリブン実行、およびルール駆動ワークフロー。

读凭据写文件严重 3 · 高危 1affaan-m/ECC

它会碰到什么

扫了多少1 个文本文件,3 KB
它会碰到什么读凭据写文件
命中总数4 处
命中统计严重 3 · 高 1 · 中 0 · 低 0
逐条看命中(4 条严重或高危)
  • 严重 SKILL.md:48cred-paths
    pattern: \.env$
  • 严重 SKILL.md:54cred-paths
    You're adding an API key to a .env file. Ensure this file is in .gitignore!
  • 严重 SKILL.md:78cred-paths
    - Sensitive files: `\.env$`, `credentials`, `\.pem$`
  • SKILL.md:96fs-destructive
    - **Too specific**: `rm -rf /tmp` — use `rm\s+-rf`

这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。

技能内容

Writing Hookify Rules

Overview

Hookify rules are markdown files with YAML frontmatter that define patterns to watch for and messages to show when those patterns match. Rules are stored in .claude/hookify.{rule-name}.local.md files.

Rule File Format

Basic Structure

---
name: rule-identifier
enabled: true
event: bash|file|stop|prompt|all
pattern: regex-pattern-here
---

Message to show Claude when this rule triggers.
Can include markdown formatting, warnings, suggestions, etc.

Frontmatter Fields

| Field | Required | Values | Description |

|-------|----------|--------|-------------|

| name | Yes | kebab-case string | Unique identifier (verb-first: warn-, block-, require-*) |

| enabled | Yes | true/false | Toggle without deleting |

| event | Yes | bash/file/stop/prompt/all | Which hook event triggers this |

| action | No | warn/block | warn (default) shows message; block prevents operation |

| pattern | Yes | regex string | Pattern to match (or use conditions for complex rules) |

Advanced Format (Multiple Conditions)

---
name: warn-env-api-keys
enabled: true
event: file
conditions:
  - field: file_path
    operator: regex_match
    pattern: \.env$
  - field: new_text
    operator: contains
    pattern: API_KEY
---

You're adding an API key to a .env file. Ensure this file is in .gitignore!

Condition fields by event:

  • bash: command
  • file: file_path, new_text, old_text, content
  • prompt: user_prompt

Operators: regex_match, contains, equals, not_contains, starts_with, ends_with

All conditions must match for rule to trigger.

Event Type Guide

bash Events

Match Bash command patterns:

  • Dangerous commands: rm\s+-rf, dd\s+if=, mkfs
  • Privilege escalation: sudo\s+, su\s+
  • Permission issues: chmod\s+777

file Events

Match Edit/Write/MultiEdit operations:

  • Debug code: console\.log\(, debugger
  • Security risks: eval\(, innerHTML\s*=
  • Sensitive files: \.env$, credentials, \.pem$

stop Events

Completion checks and reminders. Pattern .* matches always.

prompt Events

Match user prompt content for workflow enforcement.

Pattern Writing Tips

Regex Basics

  • Escape special chars: . to \., ( to \(
  • \s whitespace, \d digit, \w word char
  • + one or more, * zero or more, ? optional
  • | OR operator

Common Pitfalls

  • Too broad: log matches "login", "dialog" — use console\.log\(
  • Too specific: rm -rf /tmp — use rm\s+-rf
  • YAML escaping: Use unquoted patterns; quoted strings need \\s

Testing

python3 -c "import re; print(re.search(r'your_pattern', 'test text'))"

File Organization

  • Location: .claude/ directory in project root
  • Naming: .claude/hookify.{descriptive-name}.local.md
  • Gitignore: Add .claude/*.local.md to .gitignore

Commands

  • /hookify [description] - Create new rules (auto-analyzes conversation if no args)
  • /hookify-list - View all rules in table format
  • /hookify-configure - Toggle rules on/off interactively
  • /hookify-help - Full documentation

Quick Reference

Minimum viable rule:

---
name: my-rule
enabled: true
event: bash
pattern: dangerous_command
---
Warning message here

想直接用这个技能?

本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。

同名技能的其他版本

有 3 个不同仓库或目录里都有叫 hookify-rules 的技能。它们内容并不相同,别混用:

  • affaan-m/ECC — 当用户要求创建hookify规则、编写hook规则、配置hookify、添加hookify规则或需要关于hookify规则语法和模式的指导时,应使用此技能。
  • affaan-m/ECC — This skill should be used when the user asks to create a hookify rule, write a hook rule,