speckit.wordpress

speckit.wordpress is a skill for Claude Code, Codex from wedabro/bro-skills. It costs 47 tokens per session (1,379 once invoked), scanned A, original, MIT.

A guide for building WordPress themes, Gutenberg blocks, plugins, REST endpoints, and related WordPress code. It also covers container-based setup, security, performance, and database work.

In plain words
What is it for?
Use it to create or modify themes, plugins, blocks, REST API endpoints, and WP-CLI automation, including work inside Docker with WordPress and a database.
Why use it?
It gives development work a consistent structure based on WordPress core guidelines and helps identify the kind of project before changes begin.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

Good fit Use it to create or modify themes, plugins, blocks, REST API endpoints, and WP-CLI automation, including work inside Docker with WordPress and a database.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/wedabro/bro-skills/speckit.wordpress
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.

Any agent
npx skills add wedabro/bro-skills --skill speckit.wordpress
Clone the repo
git clone --depth 1 https://github.com/wedabro/bro-skills

Made for: Claude Code, Codex.

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 speckit.wordpress

README.md
[![agentmods](https://agentmods.dev/badge/skills/wedabro/bro-skills/speckit.wordpress.svg)](https://agentmods.dev/skills/wedabro/bro-skills/speckit.wordpress)
Your own site
<a href="https://agentmods.dev/skills/wedabro/bro-skills/speckit.wordpress"><img src="https://agentmods.dev/badge/skills/wedabro/bro-skills/speckit.wordpress.svg" alt="Measured on agentmods" height="20"></a>
Per session 47 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,379 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00047 $0.01379
Opus 5 $0.00023 $0.00690
Sonnet 5 $0.00009 $0.00276
Haiku 4.5 $0.00005 $0.00138

Measured 8d ago against content hash 2354f60ccb80, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

speckit.wordpress 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 8d 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.

.agents/skills/speckit.wordpress/SKILL.md · 71 lines

How it starts

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

🎯 Mission

Build industrial-grade, secure, performant, and highly interactive WordPress products (Themes/Plugins/Blocks), strictly adhering to official core developer guidelines and Spec-Driven Development.

📋 Protocol

1. Project Triage & Environment

  • Docker-First Environment: Always build/run WordPress inside a containerized setup (WordPress + MySQL/MariaDB).
  • Core Triage: Detect project type (theme vs. plugin vs. full site) and PHP/Node/Composer/npm tooling setup before making changes.
  • Theme Pathing: Place theme code under wp-content/themes/[theme-slug]/.
  • Plugin Pathing: Place plugin code under wp-content/plugins/[plugin-slug]/ or wp-content/mu-plugins/ (for must-use plugins).

2. Plugin Development Protocol

  • Architecture: Keep a single main plugin bootstrap file containing standard headers. Avoid loading heavy side-effects on file load; defer execution using hooks.
  • Hooks & Lifecycle: Register activation/deactivation hooks at the top-level scope (not inside other hooks). Implement safe uninstallation using uninstall.php or register_uninstall_hook.
  • Admin UI & Settings: Prefer the official Settings API (register_setting, add_settings_section, add_settings_field) with proper sanitize_callback for options storage.

3. Block (Gutenberg) Development Protocol

  • Metadata-Driven: Define blocks using block.json with apiVersion: 3 (WordPress 6.9+ standard) to ensure correct block iframe behavior.
  • Edit/Save/Render Patterns:
    • In the Editor: Wrap component markup with useBlockProps().
    • Static blocks (markup saved in database): Use useBlockProps.save() in save().
    • Dynamic blocks (server-rendered): Set "render": "file:./render.php" in block.json (or use PHP render_callback) and keep save() returning null. Use get_block_wrapper_attributes() in PHP.
  • Block Composition: Use useInnerBlocksProps() for container-like blocks.
  • Deprecations & Migrations: If modifying saved markup/attributes, add a deprecated array (newest to oldest) in the client script to avoid "Invalid block" errors.

Read the full file on GitHub · 71 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. 8d ago First seen · 71 lines · 47 tokens per session scan A 2354f60ccb80

Subscribe to this mod's changes

speckit.wordpress is a skill published in the GitHub repository wedabro/bro-skills (2 stars, last pushed 12d ago), licensed MIT. It adds 47 tokens to every session and 1,379 once invoked, about $0.0002 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 skills, from other repositories

yida-canvas-data-binding

A method for connecting a YidaCodeCanvas page to real data from Yida forms, connectors, or same-site APIs. YidaCodeCanvas is the component used to run custom React pages inside Yida.

openyida/openyida · 134 tokens

openyida

A skill for creating and changing applications on 宜搭 (Yida), a Chinese low-code platform for building business apps with less hand-written code. It first checks the available tools, login status, project folder, and target application before making changes.

openyida/openyida · 197 tokens

azure-maps

Expert knowledge for Azure Maps development including best practices, decision making, architecture & design patterns, limits & quotas, security, configuration, and integrations & coding patterns. Use when using web/REST/Power BI SDKs, geocoding/routing/weather APIs, tiles/rendering, or multi-stop route optimization…

MicrosoftDocs/Agent-Skills · 117 tokens

azure-fluid-relay

Expert knowledge for Azure Fluid Relay development including troubleshooting, best practices, limits & quotas, security, configuration, integrations & coding patterns, and deployment. Use when using AzureClient, audience APIs, JWT auth tokens, container recovery, or Static Web Apps hosting, and other Azure Fluid Relay…

MicrosoftDocs/Agent-Skills · 109 tokens

nextjs

Use when building Next.js applications with the App Router. Covers server and client component boundaries, data fetching and caching, server actions, streaming, and rendering strategy.

nimadorostkar/Claude-Skills-collection · 35 tokens

email-validate-post-email

Validates a single email address and returns a full breakdown of syntax validity, MX record status, disposable domain check, normalized form, and any typo suggestion.

bobadilla-tech/requiems-api-skills · 37 tokens