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-bricks" ~/.claude/skills/webmyc-claude-skills-wordpress-migrate-beaver-builder-to-bricks && rm -rf "$T"
skills/migrate-beaver-builder-to-bricks/SKILL.mdMigrate Beaver Builder to Bricks
Full-site migration from Beaver Builder to Bricks Builder. Audits every Beaver Builder page, maps modules to their Bricks equivalents, builds a migration plan for approval, and executes page-by-page conversion into Bricks' JSON format — all through duplicates so your live site stays untouched. Use this skill whenever someone mentions migrating from Beaver Builder to Bricks, switching from BB to Bricks, converting Beaver Builder pages to Bricks, or replacing Beaver Builder with Bricks.
What This Skill Does
Beaver Builder and Bricks are both visual page builders, but they differ significantly in architecture. Beaver Builder uses a module-based system with rows, columns, and modules stored in
_fl_builder_data. Bricks uses a more modern, flexbox-first approach with sections, containers, and elements stored as a JSON array in _bricks_page_content_2. The migration requires translating BB's row/column grid into Bricks' container model and mapping each module to its Bricks element equivalent.
This skill reads every Beaver Builder page, extracts the module structure, translates each row/column/module to its Bricks equivalent, and writes the result to duplicate pages in Bricks format — giving you a complete parallel version of your site to review before going live.
Handles:
- Row → Bricks Section mapping
- Column structures → Bricks Container with flex layout
- Text Editor module → Bricks Text / Heading elements
- Photo module → Bricks Image element
- Button module → Bricks Button element
- Video module → Bricks Video element
- HTML module → Bricks Code element
- Heading module → Bricks Heading element
- Separator module → Bricks Divider element
- Icon module → Bricks Icon element
- Call to Action module → Bricks Container + child elements
- Custom CSS classes and inline styles
What This Skill Does NOT Do
- Migrate Beaver Builder's saved rows/modules library — these must be recreated in Bricks
- Convert Beaver Themer layouts (headers, footers, archives) — Bricks templates must be built separately
- Replicate exact Beaver Builder animations/effects — Bricks has its own interaction system
- Migrate third-party Beaver Builder add-on modules (PowerPack, UABB, etc.) — flagged for manual handling
- Convert BB's global rows to Bricks' template system — different architectural concept
- Guarantee pixel-perfect visual parity — different rendering engines produce different output
Requirements
- Respira for WordPress plugin installed and connected
- MCP connection active (desktop or WebMCP)
- Beaver Builder active on the source site
- Bricks Builder installed on the target site (can be the same site)
- Read access to scan Beaver Builder content
- Write access to create duplicates with Bricks content
Trigger Phrase
- "migrate beaver builder to bricks"
Alternative Triggers
- "convert beaver builder to bricks"
- "switch from bb to bricks"
- "move beaver builder pages to bricks"
- "replace beaver builder with bricks"
- "beaver builder to bricks migration"
- "migrate bb to bricks"
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: Bricks Builder
- Content stored in post_meta key
as a JSON array_bricks_page_content_2 - Each element is an object with
,id
,name
,parent
,settingschildren - Write via
withwordpress_inject_builder_contentbuilder=bricks - Elements:
,section
,container
,heading
,text
,image
,button
,video
,code
,divider
, etc.icon
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
- 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 → Bricks 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-to-Element Mapping | BB Module | Bricks Element | Notes | |---|---|---| | Row | Section | BB row maps to Bricks section | | Column | Container | Flex-based layout in Bricks | | Text Editor | Text / Heading | Content parsed into elements | | Photo | Image | Direct mapping | | Button | Button | Direct mapping | | ... | ... | ... | ### Migration Order 1. [Page Title] — Simple — estimated 2 min 2. [Page Title] — Moderate — estimated 5 min ... ### Items Requiring Manual Attention - [Page X] — PowerPack Tabs module (no direct Bricks equivalent) - [Page Y] — Content slider (needs Bricks slider setup) - Beaver Themer layouts — must be rebuilt as Bricks 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 Bricks elements:
- Rows → Bricks
elementssection - Columns → Bricks
elements with flex layout settingscontainer - Text Editor → Parse into
andtext
elementsheading - Photo →
element with src, alt, captionimage - Button →
element with text, link, stylebutton - HTML →
elementcode - Map CSS classes and inline styles to Bricks settings
- Preserve text content, image URLs, link targets
- Flag any unmappable modules with comment annotations
- Rows → Bricks
- Build the Bricks JSON array structure
- Create a duplicate via
orwordpress_create_page_duplicatewordpress_create_post_duplicate - Inject Bricks content via
withwordpress_inject_builder_contentbuilder=bricks - 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 needing Bricks-native rebuilds
- Custom CSS that needs to be added to Bricks element styles
- Beaver Themer layouts that need separate rebuilding in Bricks
- Provide review instructions:
- Where to find duplicates in WordPress admin
- How to preview Bricks pages
- 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 Bricks format 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 to Bricks equivalents
- Replicate BB animations in Bricks interactions
- Replace a thorough manual QA pass on every page
It can:
- Map 75-85% of standard Beaver Builder modules to Bricks elements
- Translate row/column grids to Bricks' modern flexbox containers
- Preserve content, images, links, and layout structure
- Move you to a more modern builder architecture
- 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_inject_builder_contentwordpress_create_page_duplicatewordpress_create_post_duplicatewordpress_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-bricks- 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-bricks