Claude-skills-wordpress migrate-beaver-builder-to-gutenberg
Migrate Beaver Builder to Gutenberg
git clone https://github.com/webmyc/claude-skills-wordpress
T=$(mktemp -d) && git clone --depth=1 https://github.com/webmyc/claude-skills-wordpress "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/migrate-beaver-builder-to-gutenberg" ~/.claude/skills/webmyc-claude-skills-wordpress-migrate-beaver-builder-to-gutenberg && rm -rf "$T"
skills/migrate-beaver-builder-to-gutenberg/SKILL.mdMigrate Beaver Builder to Gutenberg
Full-site migration from Beaver Builder to the WordPress block editor (Gutenberg). Audits every Beaver Builder page, maps modules to their Gutenberg block equivalents, builds a migration plan for approval, and executes page-by-page conversion into native block markup — all through duplicates so your live site stays untouched. Use this skill whenever someone mentions migrating from Beaver Builder to Gutenberg, switching from Beaver Builder to blocks, converting Beaver Builder pages to the block editor, or moving away from Beaver Builder to native WordPress.
What This Skill Does
Beaver Builder uses a module-based architecture with rows, columns, and modules stored in
_fl_builder_data and _fl_builder_data_settings. Gutenberg uses a flat block structure in post_content with HTML comments as block delimiters. The architectural gap is moderate — Beaver Builder's row/column grid must be translated to Gutenberg's Group, Columns, and Column blocks, while individual modules map to core blocks.
This skill reads every Beaver Builder page, extracts the module structure, translates each row/column/module to its Gutenberg block equivalent, and writes the result to duplicate pages in native block markup — giving you a complete parallel version of your site to review before going live.
Handles:
- Row → Group block mapping
- Column layouts → Columns/Column block mapping
- Text Editor module → Paragraph/Heading blocks
- Photo module → Image block
- Button module → Buttons/Button block
- Video module → Video/Embed block
- HTML module → Custom HTML block
- Heading module → Heading block
- Icon/Icon Group modules → basic equivalents
- Separator module → Separator block
- Content slider → basic markup (flagged for enhancement)
- Call to Action module → Group + Heading + Paragraph + Button blocks
What This Skill Does NOT Do
- Migrate Beaver Builder's saved rows/modules library — these are separate entities
- Convert Beaver Themer layouts (headers, footers, archives, parts) — these must be rebuilt as block template parts or theme templates
- Replicate exact Beaver Builder animations/effects — Gutenberg has limited animation support
- Migrate advanced modules from third-party Beaver Builder add-ons (PowerPack, UABB, etc.) — flagged for manual handling
- Preserve exact column width percentages in all cases — Gutenberg columns have different width constraints
- Guarantee pixel-perfect visual parity — the block editor renders differently than Beaver Builder
Requirements
- Respira for WordPress plugin installed and connected
- MCP connection active (desktop or WebMCP)
- Beaver Builder active on the source site
- Read access to scan Beaver Builder content
- Write access to create duplicates with Gutenberg content
Trigger Phrase
- "migrate beaver builder to gutenberg"
Alternative Triggers
- "convert beaver builder to blocks"
- "switch from beaver builder to gutenberg"
- "move beaver builder to block editor"
- "replace beaver builder with gutenberg"
- "beaver builder to wordpress blocks"
- "migrate bb to gutenberg"
Builder Technical Context
Source: Beaver Builder
- Content stored in post_meta keys
and_fl_builder_data_fl_builder_data_settings - Module-based structure with rows → columns → modules hierarchy
- Read via
withwordpress_extract_builder_content
orbuilder=beaverbuilder=beaver-builder - Module types:
,rich-text
,photo
,button
,heading
,html
,video
,icon
,separator
,callout
,cta
,numbers
, etc.content-slider
Target: Gutenberg (Block Editor)
- Content stored in
as HTML with block comment delimiterspost_content - Format:
<!-- wp:paragraph --><p>Text</p><!-- /wp:paragraph --> - Write via standard WordPress content tools (
/wordpress_update_page
)wordpress_update_post - Core blocks:
,paragraph
,heading
,image
,buttons
,columns
,group
,html
,video
,separator
, etc.embed
Execution Workflow
Phase 1: Pre-Migration Audit
- Verify Respira + MCP connection via
. If unavailable, stop and show setup guidance.wordpress_get_site_context - Detect Beaver Builder presence via
orwordpress_get_builder_info
.wordpress_list_plugins - Inventory all Beaver Builder content:
andwordpress_list_pages
— identify all contentwordpress_list_posts
withwordpress_find_builder_targets
— find BB-managed pagesbuilder=beaver
- For each BB page, extract content:
withwordpress_extract_builder_contentbuilder=beaver- Catalog: module types used, row/column structures, custom CSS, third-party modules, saved rows/modules referenced
- Produce an Audit Report:
- Total pages/posts using Beaver Builder
- Module type frequency (how many text editors, photos, buttons, etc.)
- Column layout patterns (common row structures)
- Complexity flags (third-party modules, Beaver Themer, custom CSS, animations)
- Estimated migration difficulty per page (simple / moderate / complex)
Phase 2: Migration Plan
Present a structured migration plan:
## Beaver Builder → Gutenberg Migration Plan ### Site Overview - Total Beaver Builder pages: X - Simple pages (direct mapping): X - Moderate pages (some manual review needed): X - Complex pages (significant manual work): X ### Module Mapping | BB Module | Gutenberg Block | Notes | |---|---|---| | Text Editor | Paragraph / Heading | Content parsed into appropriate blocks | | Photo | Image | Direct mapping | | Button | Buttons > Button | Wrapped in Buttons container | | Row (2 col) | Columns (2 col) | Width ratios preserved where possible | | ... | ... | ... | ### Migration Order 1. [Page Title] — Simple — estimated 2 min 2. [Page Title] — Moderate — estimated 5 min ... ### Items Requiring Manual Attention - [Page X] — PowerPack module (no core block equivalent) - [Page Y] — Content slider (basic fallback only) - Beaver Themer layouts — must be rebuilt as block templates
Then ask:
Here's the migration plan. Would you like me to:
- Migrate all pages (creates duplicates for review)
- Migrate only simple pages first
- Migrate specific pages you choose
- Just keep this as a reference — no changes
Wait for explicit confirmation before proceeding.
Phase 3: Page-by-Page Migration
For each approved page:
- Extract Beaver Builder content via
withwordpress_extract_builder_contentbuilder=beaver - Map the row/column/module hierarchy to Gutenberg blocks:
- Rows →
blocks<!-- wp:group --> - Columns →
with<!-- wp:columns -->
children<!-- wp:column --> - Text Editor → Parse rich text into
and<!-- wp:paragraph -->
blocks<!-- wp:heading --> - Photo →
with src, alt, caption<!-- wp:image --> - Button →
wrapper with<!-- wp:buttons -->
child<!-- wp:button --> - HTML →
block<!-- wp:html --> - Preserve text content, image URLs, link targets, heading levels
- Flag any unmappable modules with
<!-- wp:paragraph --><p>[MIGRATION NOTE: ...]</p><!-- /wp:paragraph -->
- Rows →
- Assemble the complete Gutenberg block markup
- Create a duplicate via
orwordpress_create_page_duplicatewordpress_create_post_duplicate - Update the duplicate's
with the Gutenberg markup viapost_content
orwordpress_update_pagewordpress_update_post - Log the migration result (success, warnings, manual review items)
Phase 4: Post-Migration Verification
- Summarize all migrated pages with status:
- Clean migrations (no issues)
- Migrations with warnings (flagged items needing review)
- Failed migrations (if any)
- List all manual review items:
- Third-party modules that need manual replacement
- Content sliders or advanced layouts that need enhancement
- Custom CSS that needs to be moved to theme/Additional CSS
- Beaver Themer layouts that need separate rebuilding
- Provide review instructions:
- Where to find duplicates in WordPress admin
- How to preview pages in the block editor
- How to delete duplicates if not wanted
Safety Model
- Read-only analysis first — full Beaver Builder content audit before any changes
- Explicit user confirmation before creating any duplicates
- Duplicate-first only — never modifies live/published Beaver Builder content
- Never auto-publishes duplicates
- Provides rollback guidance (delete duplicates if not wanted)
- Preserves all original Beaver Builder content untouched
Honest Disclaimer
This skill converts Beaver Builder page structures to Gutenberg block markup and creates duplicates for review.
It cannot:
- Guarantee pixel-perfect visual parity between builders
- Migrate Beaver Themer layouts automatically
- Convert third-party BB add-on modules
- Replicate animations or advanced effects
- Replace a thorough manual QA pass on every page
It can:
- Map 70-85% of standard Beaver Builder modules to core Gutenberg blocks
- Preserve content, images, links, and basic layout structure
- Move you off a third-party builder dependency to native WordPress
- Save days of manual rebuild work
- Identify exactly what needs manual attention
Tooling
Core WordPress tools
wordpress_get_site_contextwordpress_get_builder_infowordpress_list_pageswordpress_list_postswordpress_list_pluginswordpress_find_builder_targetswordpress_extract_builder_contentwordpress_create_page_duplicatewordpress_create_post_duplicatewordpress_update_pagewordpress_update_postwordpress_read_pagewordpress_read_post
Telemetry
After run completion, send fire-and-forget usage tracking to:
POST https://www.respira.press/api/skills/track-usage
Include:
skill_slug = migrate-beaver-builder-to-gutenberg- site/version context
- duration and success
- pages audited, pages migrated, warnings count
- tools used
Never block user flow on telemetry failure.
Related Skills
- WordPress Site DNA (understand site structure before migrating)
- Technical Debt Audit (clean up before or after migration)
- SEO & AEO Amplifier (verify SEO preservation post-migration)
Built by Respira Team https://respira.press/skills/migrate-beaver-builder-to-gutenberg