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/copilot-instructionsgit clone --depth 1 https://github.com/mvtandas/wordpress-claude-stackWhat 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.00278 | $0.00278 |
| Opus 5 | $0.00139 | $0.00139 |
| Sonnet 5 | $0.00056 | $0.00056 |
| Haiku 4.5 | $0.00028 | $0.00028 |
Grade A, and why
wordpress-claude-stack copilot-instructions.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 2d 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.
What it actually says
Copilot Instructions — WordPress Project
Framework
- WordPress 6.x with PHP 8.2+ (strict types)
- Follow WordPress Coding Standards (WPCS)
- Gutenberg for blocks, ACF for custom fields
- WooCommerce for e-commerce features
Generate code that:
- Uses
declare(strict_types=1)at top of PHP files - Escapes all output:
esc_html(),esc_attr(),esc_url() - Sanitizes all input:
sanitize_text_field(),absint() - Uses
$wpdb->prepare()for ALL database queries - Verifies nonces:
wp_verify_nonce() - Checks capabilities:
current_user_can() - Uses
WP_Queryfor queries, neverquery_posts() - Prefixes all functions/hooks with project namespace
- Uses WordPress APIs:
get_option(),get_post_meta(),get_transient() - Registers REST routes with
register_rest_route()and permission callbacks
Never generate:
- Raw SQL without
$wpdb->prepare() - Unescaped output
query_posts()callsextract()oreval()- Hardcoded URLs (use
home_url(),admin_url()) - Short PHP tags
<? - Code without nonce verification on forms
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.
- 2d ago First seen · 29 lines · 278 tokens per session scan A 01abc3c9d06c
wordpress-claude-stack copilot-instructions.md is an instructions file published in the GitHub repository mvtandas/wordpress-claude-stack (3 stars, last pushed 4mo ago), licensed MIT. It adds 278 tokens to every session, about $0.0014 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
memorix GEMINI.md
Instructions for AVIDS2/memorix, covering memorix - cross-agent memory rules, session start - bind project, then load context, during session - capture important context, architecture & decisions and bug fixes & problem solving.
Ctxo CLAUDE.md
Instructions for alperhankendi/Ctxo, covering claude.md — ctxo, project overview, quick reference, dev (pnpm workspace) and usage (consumer).
awesome-reviewers CLAUDE.md
Instructions for baz-scm/awesome-reviewers, covering awesome reviewers — repository guidelines, what this project is, source of truth, site layer and machine interface.
llm-ide-rules AGENTS.md
Instructions for iloveitaly/llm-ide-rules, covering code comments, important workflow rules, alembic migrations, default content for new non-nullable columns and 1. add the column as nullable (no default needed).
llm-ide-rules pytest-integration-tests.instructions.md
Instructions for iloveitaly/llm-ide-rules, covering pytest integration tests and example integration test.
llm-ide-rules pytest-tests.instructions.md
Instructions for iloveitaly/llm-ide-rules, covering pytest tests, example test and file structure.