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.
npx agentmods add instructions/mvtandas/wordpress-claude-stack/claude-mdgit clone --depth 1 https://github.com/mvtandas/wordpress-claude-stackWrote 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.
[](https://agentmods.dev/instructions/mvtandas/wordpress-claude-stack/claude-md)<a href="https://agentmods.dev/instructions/mvtandas/wordpress-claude-stack/claude-md"><img src="https://agentmods.dev/badge/instructions/mvtandas/wordpress-claude-stack/claude-md.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.01606 | $0.01606 |
| Opus 5 | $0.00803 | $0.00803 |
| Sonnet 5 | $0.00321 | $0.00321 |
| Haiku 4.5 | $0.00161 | $0.00161 |
Grade A, and why
wordpress-claude-stack CLAUDE.md 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 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.
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.
How it starts
The opening of the file, as written. The whole thing — 167 lines — stays where its author put it; the contents beside it link to each section on GitHub.
WordPress Project — Claude Code Instructions
Stack
- WordPress 6.x
- PHP 8.2+ (strict types)
- MySQL 8.0 / MariaDB 10.6+
- Gutenberg (Block Editor)
- WooCommerce (if e-commerce)
- Advanced Custom Fields PRO (if applicable)
- Tailwind CSS or classic enqueued styles
- Vite for asset bundling (modern themes)
- Composer for PHP dependencies
- npm/pnpm for frontend dependencies
Code Style
PHP
- Always declare
declare(strict_types=1);at top of files - Follow WordPress Coding Standards (WPCS)
- Use type hints for all function parameters and return types
- Prefix all functions, classes, and hooks with project namespace
- Use
snake_casefor functions,UPPER_SNAKE_CASEfor constants - Escape all output:
esc_html(),esc_attr(),esc_url(),wp_kses_post() - Sanitize all input:
sanitize_text_field(),absint(),wp_unslash() - Use
$wpdb->prepare()for ALL database queries — never raw SQL
Theme Development
theme/
├── functions.php # Theme setup, hooks, enqueues
├── inc/
│ ├── setup.php # add_theme_support, menus, sidebars
│ ├── enqueue.php # wp_enqueue_script/style
│ ├── custom-post-types.php
│ ├── taxonomies.php
│ ├── customizer.php
│ ├── acf-fields.php # ACF field group registrations
│ └── template-tags.php # Reusable template functions
├── template-parts/
│ ├── header/
│ ├── footer/
│ ├── content/
│ └── components/
├── templates/ # Full page templates
├── assets/
│ ├── src/ # Source JS/CSS (Vite input)
│ └── dist/ # Built assets
├── blocks/ # Custom Gutenberg blocks
└── woocommerce/ # WooCommerce template overrides
Plugin Development
plugin/
├── plugin-name.php # Main plugin file with header
├── includes/
│ ├── class-plugin-name.php # Main plugin class
│ ├── class-activator.php # Activation hook
│ ├── class-deactivator.php # Deactivation hook
│ ├── class-admin.php # Admin functionality
│ ├── class-public.php # Public functionality
│ └── class-rest-api.php # REST API endpoints
├── admin/
│ ├── views/ # Admin page templates
│ ├── css/
│ └── js/
├── public/
│ ├── views/
│ ├── css/
│ └── js/
├── languages/ # i18n .pot/.po/.mo files
├── tests/
│ └── phpunit/
├── uninstall.php # Cleanup on uninstall
└── composer.json
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.
- 3d ago First seen · 167 lines · 1,606 tokens per session scan A a8003b7abb2b
wordpress-claude-stack CLAUDE.md is an instructions file published in the GitHub repository mvtandas/wordpress-claude-stack (3 stars, last pushed 4mo ago), licensed MIT. It adds 1,606 tokens to every session, about $0.0080 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.
Other instructions, from other repositories
inspecto CLAUDE.md
Instructions for inspecto-dev/inspecto, covering inspecto — claude code development guide, project overview, monorepo structure, development phases (load each file as needed) and key architectural decisions.
skill.color-expert CLAUDE.md
Claude Code instructions for meodai/skill.color-expert, covering claude.md, project overview, architecture, no build/test/lint and editing guidelines.
llm-ide-rules typescript.instructions.md
Instructions for iloveitaly/llm-ide-rules, covering typescript and dates & times.
agenttop CLAUDE.md
Instructions for vicarious11/agenttop, covering agenttop — ai usage dashboard & optimizer, project overview, architecture, layers and key directories.
agentforge CLAUDE.md
Instructions for mrzroot/agentforge, covering claude.md - project directives for claude code, project overview: agentforge, commands & environment, code architecture & philosophy and architectural conventions.
AI-Powered-Coding-Tools CLAUDE.md
Claude Code instructions for dereknguyen269/AI-Powered-Coding-Tools, covering claude.md, what this repo is, maintenance scripts, validate links in a markdown file and fix markdown formatting issues.