hooks — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited hooks (Hook) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A Claude Code plugin (and standalone skill) for converting any HTML/CSS/JavaScript project into a production-ready WordPress Block Theme (Full Site Editing).
Author: Md Siddiqur Rahman Version: 2.0.0 License: MIT
Converts static HTML/CSS/JavaScript projects into complete, production-ready WordPress block themes that are:
| Command | Purpose |
|---|---|
/convert-to-wp-theme | Full conversion of HTML/CSS/JS project to complete block theme |
/scaffold-wp-theme | Create empty block theme scaffold (no source needed) |
/wp-pattern | Convert single HTML section into a registered block pattern |
/wp-theme-json | Generate theme.json from CSS custom properties / design tokens |
/wp-template | Convert single HTML page into FSE template |
/wp-block | Scaffold a custom block (block.json, edit.js, save.js/render.php, CSS) |
/wp-migrate | Migrate existing WP content (Classic Editor, ACF, widgets, CPTs, shortcodes) to block theme |
/wp-plugin-theme | Declare plugin dependencies and generate plugin-specific CSS / compatibility code |
/wp-variation | Generate a style variation (styles/*.json) — dark mode, color palette swap, font swap |
/wp-classic-to-fse | Convert an existing WordPress classic theme (PHP templates) to FSE block theme |
/wp-debug | Diagnose and fix FSE/block-theme failures — block validation errors, theme.json issues, patterns not showing, DB template overrides, PHP warnings, and more |
This repository is also a Claude Code plugin marketplace. Install it directly from GitHub:
# Run these inside Claude Code:
/plugin marketplace add siddik-web/wp-block-theme-converter
/plugin install wp-block-theme-converter@siddik-webInstalling the plugin registers everything at once:
/convert-to-wp-theme, /wp-debug, …)Manage or disable it any time with /plugin.
~/.claude/skills/wp-block-theme-converter/claude reloadwp-block-theme-converter.skillPlace the wp-block-theme-converter/ folder in your skills directory. Path varies by environment:
~/skills/CLAUDE_SKILLS_DIR environment variable/convert-to-wp-theme
I have a 3-page landing site for "Acme Co".
Use Vite 6, no WooCommerce.
[paste HTML/CSS/JS]/convert-to-wp-theme
Convert my Northaven Co. eCommerce design system to a WooCommerce block theme.
Include all six aesthetics as style variations.
[attach HTML files]/wp-pattern
Convert this hero section into a WP block pattern:
<section class="hero">
<h1>Welcome</h1>
<p>Subheading</p>
<a href="#" class="btn">CTA</a>
</section>/wp-block
Scaffold a "Testimonial Slider" custom block with server-side rendering,
an edit.js with InspectorControls, and per-block CSS./wp-classic-to-fse
Convert my existing classic PHP theme to a full FSE block theme.
The theme uses a custom page builder and ACF fields.wp-block-theme-converter/ # Plugin root (also a marketplace)
├── .claude-plugin/
│ ├── plugin.json # Plugin manifest
│ └── marketplace.json # Marketplace entry (installable)
│
├── SKILL.md # The bundled skill (auto-triggers)
├── README.md # This file
│
├── commands/ # 11 slash command definitions
│ ├── convert-to-wp-theme.md
│ ├── scaffold-wp-theme.md
│ ├── wp-block.md
│ ├── wp-classic-to-fse.md
│ ├── wp-debug.md
│ ├── wp-migrate.md
│ ├── wp-pattern.md
│ ├── wp-plugin-theme.md
│ ├── wp-template.md
│ ├── wp-theme-json.md
│ └── wp-variation.md
│
├── agents/ # Subagents
│ └── wp-theme-reviewer.md # Audits a generated block theme
│
├── hooks/
│ └── hooks.json # PostToolUse theme.json validation
│
├── references/ # Detailed reference docs
│ ├── defaults.md # Default values for placeholders
│ ├── methodology.md # 10-phase conversion methodology
│ ├── modern-blocks.md # WordPress 6.5+ features (Interactivity API, Block Bindings, etc.)
│ ├── file-structure.md # Required output directory layout
│ ├── block-conversion-map.md # HTML → WP block lookup table
│ ├── theme-json-schema.md # theme.json v3 reference
│ ├── quality-rules.md # Non-negotiable do's and don'ts
│ ├── multi-turn-strategy.md # Splitting large projects
│ ├── woocommerce.md # WC-specific theming
│ ├── validation-checklist.md # Post-generation checks
│ ├── custom-blocks.md # Custom block development (block.json, edit.js, render.php)
│ ├── content-migration.md # Classic-to-block, WP-CLI, ACF, CPTs, page builder migration
│ ├── asset-optimization.md # Fonts, images, WebP, lazy load, Core Web Vitals
│ ├── plugin-compatibility.md # Plugin detection, CSS conflicts, caching compat
│ ├── interactivity-api-advanced.md # Shared store, server hydration, async, focus traps
│ ├── accessibility.md # WCAG 2.1 AA, ARIA, skip links, screen reader testing
│ ├── ci-cd.md # GitHub Actions, PHPCS, ESLint, Stylelint, deployment
│ ├── backward-compatibility.md # Feature availability by WP version, conditional loading
│ ├── e2e-testing.md # Playwright, visual regression, a11y scans, CI integration
│ └── i18n.md # i18n functions, plural forms, JS translations, RTL
│
├── templates/ # Reusable boilerplate
│ ├── style.css.tpl
│ ├── theme.json.tpl
│ ├── functions.php.tpl
│ ├── pattern-header.php.tpl
│ ├── template-skeleton.html.tpl
│ ├── package.json.tpl
│ ├── vite.config.js.tpl
│ ├── github-actions-ci.yml.tpl
│ └── patterns/
│ ├── hero.php.tpl
│ ├── features-grid.php.tpl
│ ├── testimonials.php.tpl
│ ├── pricing-table.php.tpl
│ ├── cta-section.php.tpl
│ ├── faq-accordion.php.tpl
│ ├── team-grid.php.tpl
│ └── stats-row.php.tpl
│
├── examples/ # Worked examples
│ ├── northaven-ecommerce.md # Multi-aesthetic WooCommerce theme
│ └── landing-page-simple.md # Simple SaaS landing page
│
└── scripts/ # Validation + packaging tooling
├── doctor.mjs # Runs all four theme-quality checks
├── validate-skill.mjs # Skill integrity linter
├── validate-plugin.mjs # Plugin packaging linter
└── hooks/
└── theme-json-postwrite.mjs # theme.json validation hook runnerThe skill uses Claude's three-level loading:
This means Claude doesn't load the WooCommerce reference for a simple landing page conversion — it only loads what's relevant to the task.
Every conversion follows the same proven phases:
The skill automatically detects large projects and splits delivery across 3 turns:
Triggered when source has 10+ HTML pages OR WooCommerce OR multiple style variations.
Every output is governed by four non-negotiable principles:
Every theme generated follows these non-negotiable rules:
<style> or <script> tagsstyle="" attributes (use block attributes)tagNamewp_enqueue_block_style()Every theme generated by this skill can be verified using the bundled scripts:
# Run all checks at once — exits 0 only if everything passes
node scripts/doctor.mjs path/to/your-theme
# Or run individual checks
node scripts/validate-theme-json.mjs path/to/your-theme # theme.json schema + token checks
node scripts/lint-block-markup.mjs path/to/your-theme # inline styles/scripts, block delimiter integrity
node scripts/check-patterns.mjs path/to/your-theme # pattern headers, slugs, duplicates
node scripts/check-i18n.mjs path/to/your-theme # i18n coverage + anti-patternsThe skill's Step 5 (Verify) instructs Claude to run doctor.mjs and loop until it passes before declaring a theme complete. No npm install required — pure Node stdlib.
If something looks wrong after generation, use /wp-debug:
/wp-debug
My pattern doesn't appear in the inserter and I can't figure out why.Claude will run through a decision tree, identify the root cause (missing category registration, theme.json conflict, etc.), and offer to apply the fix. See references/troubleshooting.md for the full symptom → cause → fix reference.
Moving off Elementor, Divi, WPBakery, or Beaver Builder? Use /wp-migrate — it now includes full builder-detection and per-builder playbooks. See references/page-builder-migration.md for element-to-block mapping tables, WP-CLI extraction commands, and a worked Elementor example in examples/elementor-to-block-theme.md.
The plugin ships with:
evals/README.md).skill zip artifact/convert-to-wp-theme) — provides maximum context window for large outputs/wp-classic-to-fse which handles ACF, CPTs, and page builder contenthttps://schemas.wp.org/trunk/theme.json before deploying/skills/scaffold-wp-theme first, then /wp-pattern per sectionversion: 3 (not 1 or 2)fontFace.src paths actually existhttps://schemas.wp.org/trunk/theme.json/wp-migrate with the ACF field group export (JSON) attachedreferences/content-migration.md documents all supported field types and Block Bindings strategies/wp-migrate — it detects your page builder and applies the correct strategyreferences/page-builder-migration.md for per-builder element→block mapping tablesexamples/elementor-to-block-theme.md for a complete worked migration example/wp-debug — describe your symptom and Claude will identify the root causereferences/troubleshooting.md for the full 18-symptom reference with WP-CLI cheat sheetblock.json is in the correct directory and registered via register_block_type()edit.jsnpm run build if using a build step — the editor loads the compiled assetsTo improve this skill:
MIT License — free to use, modify, and distribute.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.