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 skills add yojahny55/claude-wp-builder --skill wp-environmentsgit clone --depth 1 https://github.com/yojahny55/claude-wp-builderWrote 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/skills/yojahny55/claude-wp-builder/wp-environments)<a href="https://agentmods.dev/skills/yojahny55/claude-wp-builder/wp-environments"><img src="https://agentmods.dev/badge/skills/yojahny55/claude-wp-builder/wp-environments/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/yojahny55/claude-wp-builder/wp-environments"><img src="https://agentmods.dev/badge/skills/yojahny55/claude-wp-builder/wp-environments.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00020 | $0.02980 |
| Opus 5 | $0.00010 | $0.01490 |
| Sonnet 5 | $0.00004 | $0.00596 |
| Haiku 4.5 | $0.00002 | $0.00298 |
Grade B, and why
wp-environments scanned grade B 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 9d 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.
| Fedora/RHEL | `dnf` | `sudo dnf install php8.3 php8.3-fpm php8.3-mysql php8.3-mbstring php8.3-xml php8.3-gd php8.3-zip php8.3-intl` | Update PHP-FPM pool and restart service | Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
"extensions": ["mysql", "curl", "mbstring", "xml", "gd", "zip", "intl"] How it starts
The opening of the file, as written. The whole thing — 347 lines — stays where its author put it; the contents beside it link to each section on GitHub.
WordPress Environment Detection & Configuration
This skill teaches how to detect the local development environment, read project configuration, select the correct WP-CLI wrapper, generate config files from templates, and manage PHP versions. It applies whenever a user requests environment setup or when a .wp-create.json manifest is present in the project root.
When This Skill Applies
- User requests WordPress environment setup, creation, or configuration
- A
.wp-create.jsonfile exists in the project root - User asks about Docker, native server, DDEV, Lando, or wp-env setup
- User asks about PHP version management or web server configuration
1. Environment Detection
Run the detection script to discover what tools are available on the system:
bin/wp-env-setup.sh detect
This outputs JSON to stdout. Parse it to understand what is available. The full output structure:
{
"os": "fedora",
"package_manager": "dnf",
"web_servers": {
"nginx": { "installed": true, "version": "1.24.0", "running": true },
"apache": { "installed": true, "version": "2.4.58", "running": false },
"caddy": { "installed": false }
},
"php": {
"versions": ["8.2", "8.3"],
"active": "8.3",
"extensions": ["mysql", "curl", "mbstring", "xml", "gd", "zip", "intl"]
},
"docker": {
"installed": true,
"version": "24.0.7",
"compose": true
},
"tools": {
"ddev": { "installed": false },
"lando": { "installed": false },
"wp-env": { "installed": false },
"wp-cli": { "installed": true, "version": "2.9.0" }
},
"database": {
"mariadb": { "installed": true, "version": "10.11", "running": true },
"mysql": { "installed": false }
}
}
Use this output to:
- Present available environment options to the user
- Auto-select the best environment type when the user does not specify
- Determine which web servers, PHP versions, and database engines are ready
2. Project Manifest: .wp-create.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.
- 9d ago First seen · 347 lines · 20 tokens per session scan B b0da0a01ef96
wp-environments is a skill published in the GitHub repository yojahny55/claude-wp-builder (6 stars, last pushed today), licensed MIT. It adds 20 tokens to every session and 2,980 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 2 findings (asks for root, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
list-connections
Lists Power Platform connections in the current environment. Use when you need a connection ID before adding a connector to a code app.
tidewave-integration
Tidewave MCP runtime tools — debugging, smoke testing, live state inspection, SQL queries, hex docs. Use when evaluating code in a running Phoenix app.
bun-http-server
Use when building HTTP servers with Bun.serve, handling requests/responses, implementing routing, creating REST APIs, or configuring fetch handlers.
api-testing
HTTP API testing for TypeScript (Supertest) and Python (httpx, pytest). Test REST APIs, GraphQL, request/response validation, authentication, and error handling.
Website Audit
Comprehensive website auditing skill using Lighthouse, PageSpeed Insights, and web performance APIs to audit performance, accessibility, SEO, best practices, and security.
api-gateway-configuration
Configures API gateways for routing, authentication, rate limiting, and request transformation in microservice architectures. Use when setting up Kong, Nginx, AWS API Gateway, or Traefik for centralized API management.