From agent-harness
Converts React/HTML/Next.js codebases into pixel-perfect, SEO-optimized WordPress themes using phased forensic audits and strict UI lock rules.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agent-harness:codebase-to-wordpress-converterThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill is designed for the high-fidelity conversion of static or React-based frontends into fully functional, CMS-driven WordPress themes. It acts as a **Senior WordPress Architect**, **React Expert**, and **QA Engineer** to ensure a 100% pixel-perfect match while integrating deep WordPress functionality like ACF, dynamic menus, and technical SEO preservation.
This skill is designed for the high-fidelity conversion of static or React-based frontends into fully functional, CMS-driven WordPress themes. It acts as a Senior WordPress Architect, React Expert, and QA Engineer to ensure a 100% pixel-perfect match while integrating deep WordPress functionality like ACF, dynamic menus, and technical SEO preservation.
The skill follows a strict 4-phase forensic process:
Strict enforcement of non-negotiable rules:
Start by identifying all components in the source code. Create a UI Comparison table comparing the original source output against the target WordPress output.
Map static React/HTML content to dynamic WordPress functions:
the_title(), get_field(), or the_content().get_template_directory_uri().Ensure every theme includes the foundational WordPress hooks correctly:
header.php / footer.php): Must include wp_head() before </head> and wp_footer() before </body>.get_header() and get_footer().register_nav_menus() for dynamic navigation without breaking original HTML structure.Maintain a live tracker of Total Issues, Fixed, and Remaining. Every fix must be followed by a confirmation:
// WRONG: Static replacement that adds wrappers
wp_nav_menu(['theme_location' => 'primary']);
// CORRECT: Preserving original Tailwind classes and structure
wp_nav_menu([
'theme_location' => 'primary',
'container' => false,
'items_wrap' => '<ul class="flex space-x-8">%3$s</ul>',
'walker' => new Custom_Tailwind_Walker()
]);
// Source: <img src="/images/logo.png" />
// WP Conversion:
<img src="<?php echo get_template_directory_uri(); ?>/assets/images/logo.png" alt="Logo" />
get_page_by_path() for robust internal linking.functions.php.header.php to ensure global styles are active.npx claudepluginhub ghosteken/agent-harness --plugin agent-harness10plugins reuse this skill
First indexed Jun 3, 2026
Showing the 6 earliest of 10 plugins
Converts React/HTML/Next.js codebases into pixel-perfect, SEO-optimized WordPress themes using phased forensic audits and strict UI lock rules.
Converts HTML/CSS/JS projects into WordPress Block Themes with Full Site Editing, theme.json, block patterns, and WooCommerce compatibility. Scaffolds themes from scratch or migrates static sites to FSE.
Converts WPBakery Page Builder shortcode content into native Gutenberg blocks, preserving text, images, buttons, videos, galleries, and CSS classes. Use when migrating a WordPress site from WPBakery to Gutenberg.