wp-hooks-ref

A quick reference for WordPress and WooCommerce hooks. Hooks are named points where code can run or modify data while WordPress or the WooCommerce online-store system is working.

In plain words
What is it for?
Use it to look up an exact hook, find hooks by partial name, or search for hooks related to topics such as authentication, login, or media.
Why use it?
It saves time when you need to understand an unfamiliar hook instead of searching documentation and source files manually.

Command

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/iwritec0de/wp-dev/wp-hooks-ref
Clone the repo
git clone --depth 1 https://github.com/iwritec0de/wp-dev
Per session 10 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 526 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 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.00010 $0.00526
Opus 5 $0.00005 $0.00263
Sonnet 5 $0.00002 $0.00105
Haiku 4.5 $0.00001 $0.00053

Measured yesterday against content hash 2f201667bca2, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

wp-hooks-ref scanned grade A with 0 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 yesterday.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

commands/wp-hooks-ref.md · 66 lines

How it starts

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

/wp-hooks-ref

Look up WordPress and WooCommerce hooks by name or topic.

Instructions

Load the wp-hooks skill for hook documentation methodology.

The user provides a hook name, partial name, or topic after /wp-hooks-ref. For example:

  • /wp-hooks-ref save_post — Show the save_post hook details
  • /wp-hooks-ref woocommerce_checkout — List hooks matching "woocommerce_checkout"
  • /wp-hooks-ref auth — Search for authentication-related hooks

Behavior

  1. Exact match: If the argument matches a known hook name exactly, provide:

    • Hook type (action or filter)
    • Function signature with parameters and types
    • When it fires (context)
    • Common use cases with code examples
    • Related hooks
  2. Partial match / prefix: If the argument is a prefix (e.g., woocommerce_), list all matching hooks from the plugin's reference files, grouped by category.

  3. Topic search: If the argument is a general topic (e.g., "auth", "login", "media"), search for related hooks and present them organized by relevance.

Reference Sources

First check the plugin's built-in references:

  • skills/woocommerce/references/woo-hooks.md for WooCommerce hooks
  • skills/wordpress-patterns/SKILL.md for common WordPress patterns

For hooks not covered in the local references, use your built-in knowledge of the WordPress hook system. Only use WebSearch as a last resort for very specific or rarely-used hooks.

Output Format

For each hook, provide:

## hook_name (action|filter)

**Signature:** `do_action( 'hook_name', $param1, $param2 )` or `apply_filters( 'hook_name', $value, $context )`

**Parameters:**
- `$param1` (type) — Description
- `$param2` (type) — Description

**Fires:** Description of when this hook fires.

**Example:**
\`\`\`php
add_action( 'hook_name', function ( $param1, $param2 ): void {
    // Usage example
}, 10, 2 );
\`\`\`

**Related:** `other_hook`, `another_hook`

If no arguments are provided, ask the user what hook they want to look up.

Read the full file on GitHub · 66 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. yesterday First seen · 66 lines · 10 tokens per session scan A 2f201667bca2

Subscribe to this mod's changes

wp-hooks-ref is a command published in the GitHub repository iwritec0de/wp-dev (1 stars, last pushed 4mo ago), licensed MIT. It adds 10 tokens to every session and 526 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other commands, from other repositories