help

help is a command for coding agents from ajsai47/holyclaude. It costs 7 tokens per session (1,171 once invoked), scanned D, original, MIT.

A help command for Hookify, a plugin that lets users define rules to warn about or prevent unwanted coding-agent actions. The rules are written in simple Markdown files instead of directly editing hook configuration files.

In plain words
What is it for?
Use it to learn how to create Hookify rules for commands, file changes, prompts, stopping actions, or all supported events.
Why use it?
It explains where the rules live, which agent events they can watch, and how matching patterns trigger messages or checks.

Command

Installs and runs on its own, but its text points at files inside its plugin — anything it tells you to read at a ${CLAUDE_PLUGIN_ROOT} path is only there once the plugin is installed. Installing the plugin gets both.

Part of the hookify plugin — 1 skill, 3 commands shipped together

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/ajsai47/holyclaude/help
Clone the repo
git clone --depth 1 https://github.com/ajsai47/holyclaude

Or install hookify, the plugin that ships this one along with the rest of its 1 skill, 3 commands.

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 help

README.md
[![agentmods](https://agentmods.dev/badge/commands/ajsai47/holyclaude/help.svg)](https://agentmods.dev/commands/ajsai47/holyclaude/help)
Your own site
<a href="https://agentmods.dev/commands/ajsai47/holyclaude/help"><img src="https://agentmods.dev/badge/commands/ajsai47/holyclaude/help.svg" alt="Measured on agentmods" height="20"></a>
Per session 7 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,171 The whole file, excluding the scripts and references it only reads on demand.
Security scan D 2 findings. 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.00007 $0.01171
Opus 5 $0.00003 $0.00585
Sonnet 5 $0.00001 $0.00234
Haiku 4.5 $0.00001 $0.00117

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

Security

Grade D, and why

help scanned grade D with 2 findings 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 3d 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.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

Don't use chmod 777 - it's a security risk. Use specific permissions instead.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

- `rm\s+-rf` - matches "rm -rf"
Origin

Copies of this mod

2 near-identical copies found in the catalogue:

  • help — 100% identical, 0 lines differ
  • help — 92% identical, 20 lines differ
plugins/hookify/commands/help.md · 176 lines

How it starts

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

Hookify Plugin Help

Explain how the hookify plugin works and how to use it.

Overview

The hookify plugin makes it easy to create custom hooks that prevent unwanted behaviors. Instead of editing hooks.json files, users create simple markdown configuration files that define patterns to watch for.

How It Works

1. Hook System

Hookify installs generic hooks that run on these events:

  • PreToolUse: Before any tool executes (Bash, Edit, Write, etc.)
  • PostToolUse: After a tool executes
  • Stop: When Claude wants to stop working
  • UserPromptSubmit: When user submits a prompt

These hooks read configuration files from .claude/hookify.*.local.md and check if any rules match the current operation.

2. Configuration Files

Users create rules in .claude/hookify.{rule-name}.local.md files:

---
name: warn-dangerous-rm
enabled: true
event: bash
pattern: rm\s+-rf
---

⚠️ **Dangerous rm command detected!**

This command could delete important files. Please verify the path.

Key fields:

  • name: Unique identifier for the rule
  • enabled: true/false to activate/deactivate
  • event: bash, file, stop, prompt, or all
  • pattern: Regex pattern to match

The message body is what Claude sees when the rule triggers.

3. Creating Rules

Option A: Use /hookify command

/hookify Don't use console.log in production files

This analyzes your request and creates the appropriate rule file.

Option B: Create manually Create .claude/hookify.my-rule.local.md with the format above.

Option C: Analyze conversation

/hookify

Without arguments, hookify analyzes recent conversation to find behaviors you want to prevent.

Available Commands

  • /hookify - Create hooks from conversation analysis or explicit instructions
  • /hookify:help - Show this help (what you're reading now)
  • /hookify:list - List all configured hooks
  • /hookify:configure - Enable/disable existing hooks interactively

Read the full file on GitHub · 176 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. 3d ago First seen · 176 lines · 7 tokens per session scan D 39529a6e6473

Subscribe to this mod's changes

help is a command published in the GitHub repository ajsai47/holyclaude (11 stars, last pushed 5mo ago), licensed MIT. It adds 7 tokens to every session and 1,171 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it D with 2 findings (asks for root, recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.