Migrate Beaver Builder to Bricks
Version: 2.1.0
Updated: 2026-08-04
Freshly updated: v2.1.0 adds design-token awareness: conversion writes now register the colors and typography they carry as named design tokens in Bricks' own global styles, and converted pages reference those tokens instead of carrying value copies. Reuse registered tokens instead of re-inlining raw values, and report the registration in the migration summary.
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
_fl_builder_data and _fl_builder_data_settings
- Module-based structure with rows → columns → modules hierarchy
- Read via
respira_extract_builder_content with builder=beaver or builder=beaver-builder
- Module types:
rich-text, photo, button, heading, html, video, icon, separator, callout, cta, numbers, content-slider, etc.
Target: Bricks Builder
- Content stored in post_meta key
_bricks_page_content_2 as a JSON array
- Each element is an object with
id, name, parent, settings, children
- Write via
respira_inject_builder_content with builder=bricks
- Elements:
section, container, heading, text, image, button, video, code, divider, icon, etc.
Execution Workflow
Phase 1: Pre-Migration Audit
- Verify Respira + MCP connection via
respira_get_site_context. If unavailable, stop and show setup guidance.
- Detect Beaver Builder presence via
respira_get_builder_info or respira_list_plugins.
- Inventory and scope the source pages first:
respira_find_builder_targets with builder=beaver — a fast, ranked list of every BB-managed page/post before you touch anything
- Fall back to
respira_list_pages / respira_list_posts + respira_get_builder_info to confirm builder per item where needed
- For each BB page, extract content:
respira_extract_builder_content with builder=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
respira_extract_builder_content with builder=beaver
- Map the row/column/module hierarchy to Bricks elements:
- Rows → Bricks
section elements
- Columns → Bricks
container elements with flex layout settings
- Text Editor → Parse into
text and heading elements
- Photo →
image element with src, alt, caption
- Button →
button element with text, link, style
- HTML →
code element
- Map CSS classes and inline styles to Bricks settings
- Preserve text content, image URLs, link targets
- Flag any unmappable modules with comment annotations
- Build the Bricks JSON array structure
- Create a duplicate via
respira_create_page_duplicate or respira_create_post_duplicate
- Before writing, take a snapshot with
respira_get_snapshot so the duplicate's pre-write state can be restored if anything goes wrong
- Inject Bricks content via
respira_inject_builder_content with builder=bricks
- Surgical fix pass — if the injected page has validation issues (column widths that collapsed during the row/column-to-container translation, broken parent refs, a misconverted module), do not re-inject the whole page. Locate the specific element with
respira_find_element and correct it with respira_update_element. For repeated fixes across many elements or several pages, batch them with respira_batch_update
- Log the migration result (success, warnings, manual review items)
Phase 4: Post-Migration Verification
- Summarize all migrated pages with status:
- Design tokens registered in Bricks' global styles (token names and counts)
- 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
Design Tokens
Conversion writes now register the colors and typography they carry as named design tokens in Bricks' own global styles, and the converted pages reference those tokens instead of carrying value copies. When fixing or extending a migrated page, reuse the registered tokens (respira_list_design_tokens shows them) rather than re-inlining raw hex values or font stacks. And say so when you finish: the migration summary should name the tokens that were registered and note that migrated pages reference them.
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
- Snapshot before every write —
respira_get_snapshot captures the duplicate's pre-write state, and respira_restore_snapshot rolls it back if an injection goes wrong
- Two explicit rollback paths: restore the snapshot to revert a bad write, or delete the draft duplicates entirely to undo the migration
- 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
respira_get_site_context
respira_get_builder_info
respira_list_pages
respira_list_posts
respira_list_plugins
respira_find_builder_targets
respira_extract_builder_content
respira_inject_builder_content
respira_create_page_duplicate
respira_create_post_duplicate
respira_read_page
respira_read_post
Safety and surgical-fix tools
respira_get_snapshot
respira_restore_snapshot
respira_find_element
respira_update_element
respira_batch_update
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
1---2name: migrate-beaver-builder-to-bricks3description: Use when the user says 'migrate beaver builder to bricks', 'convert bb to bricks', or 'replace beaver builder with bricks'. Reads the Beaver Builder flat node map, maps each module to its Bricks element, and creates draft duplicates for review.4license: MIT5---67# Migrate Beaver Builder to Bricks89**Version:** 2.1.010**Updated:** 2026-08-0411**Freshly updated:** v2.1.0 adds design-token awareness: conversion writes now register the colors and typography they carry as named design tokens in Bricks' own global styles, and converted pages reference those tokens instead of carrying value copies. Reuse registered tokens instead of re-inlining raw values, and report the registration in the migration summary.1213Full-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.1415## What This Skill Does1617Beaver 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.1819This 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.2021**Handles:**22- Row → Bricks Section mapping23- Column structures → Bricks Container with flex layout24- Text Editor module → Bricks Text / Heading elements25- Photo module → Bricks Image element26- Button module → Bricks Button element27- Video module → Bricks Video element28- HTML module → Bricks Code element29- Heading module → Bricks Heading element30- Separator module → Bricks Divider element31- Icon module → Bricks Icon element32- Call to Action module → Bricks Container + child elements33- Custom CSS classes and inline styles3435## What This Skill Does NOT Do3637- Migrate Beaver Builder's saved rows/modules library — these must be recreated in Bricks38- Convert Beaver Themer layouts (headers, footers, archives) — Bricks templates must be built separately39- Replicate exact Beaver Builder animations/effects — Bricks has its own interaction system40- Migrate third-party Beaver Builder add-on modules (PowerPack, UABB, etc.) — flagged for manual handling41- Convert BB's global rows to Bricks' template system — different architectural concept42- Guarantee pixel-perfect visual parity — different rendering engines produce different output4344## Requirements4546- Respira for WordPress plugin installed and connected47- MCP connection active (desktop or WebMCP)48- Beaver Builder active on the source site49- Bricks Builder installed on the target site (can be the same site)50- Read access to scan Beaver Builder content51- Write access to create duplicates with Bricks content5253## Trigger Phrase5455- "migrate beaver builder to bricks"5657## Alternative Triggers5859- "convert beaver builder to bricks"60- "switch from bb to bricks"61- "move beaver builder pages to bricks"62- "replace beaver builder with bricks"63- "beaver builder to bricks migration"64- "migrate bb to bricks"6566## Builder Technical Context6768**Source: Beaver Builder**69- Content stored in post_meta keys `_fl_builder_data` and `_fl_builder_data_settings`70- Module-based structure with rows → columns → modules hierarchy71- Read via `respira_extract_builder_content` with `builder=beaver` or `builder=beaver-builder`72- Module types: `rich-text`, `photo`, `button`, `heading`, `html`, `video`, `icon`, `separator`, `callout`, `cta`, `numbers`, `content-slider`, etc.7374**Target: Bricks Builder**75- Content stored in post_meta key `_bricks_page_content_2` as a JSON array76- Each element is an object with `id`, `name`, `parent`, `settings`, `children`77- Write via `respira_inject_builder_content` with `builder=bricks`78- Elements: `section`, `container`, `heading`, `text`, `image`, `button`, `video`, `code`, `divider`, `icon`, etc.7980## Execution Workflow8182### Phase 1: Pre-Migration Audit83841. Verify Respira + MCP connection via `respira_get_site_context`. If unavailable, stop and show setup guidance.852. Detect Beaver Builder presence via `respira_get_builder_info` or `respira_list_plugins`.863. Inventory and scope the source pages first:87 - `respira_find_builder_targets` with `builder=beaver` — a fast, ranked list of every BB-managed page/post before you touch anything88 - Fall back to `respira_list_pages` / `respira_list_posts` + `respira_get_builder_info` to confirm builder per item where needed894. For each BB page, extract content:90 - `respira_extract_builder_content` with `builder=beaver`91 - Catalog: module types used, row/column structures, custom CSS, third-party modules, saved rows/modules925. Produce an **Audit Report**:93 - Total pages/posts using Beaver Builder94 - Module type frequency (how many text editors, photos, buttons, etc.)95 - Column layout patterns (common row structures)96 - Complexity flags (third-party modules, Beaver Themer, custom CSS, animations)97 - Estimated migration difficulty per page (simple / moderate / complex)9899### Phase 2: Migration Plan100101Present a structured migration plan:102103```104## Beaver Builder → Bricks Migration Plan105106### Site Overview107- Total Beaver Builder pages: X108- Simple pages (direct mapping): X109- Moderate pages (some manual review needed): X110- Complex pages (significant manual work): X111112### Module-to-Element Mapping113| BB Module | Bricks Element | Notes |114|---|---|---|115| Row | Section | BB row maps to Bricks section |116| Column | Container | Flex-based layout in Bricks |117| Text Editor | Text / Heading | Content parsed into elements |118| Photo | Image | Direct mapping |119| Button | Button | Direct mapping |120| ... | ... | ... |121122### Migration Order1231. [Page Title] — Simple — estimated 2 min1242. [Page Title] — Moderate — estimated 5 min125...126127### Items Requiring Manual Attention128- [Page X] — PowerPack Tabs module (no direct Bricks equivalent)129- [Page Y] — Content slider (needs Bricks slider setup)130- Beaver Themer layouts — must be rebuilt as Bricks templates131```132133Then ask:134135> Here's the migration plan. Would you like me to:136> 1. Migrate all pages (creates duplicates for review)137> 2. Migrate only simple pages first138> 3. Migrate specific pages you choose139> 4. Just keep this as a reference — no changes140141Wait for explicit confirmation before proceeding.142143### Phase 3: Page-by-Page Migration144145For each approved page:1461471. Extract Beaver Builder content via `respira_extract_builder_content` with `builder=beaver`1482. Map the row/column/module hierarchy to Bricks elements:149 - Rows → Bricks `section` elements150 - Columns → Bricks `container` elements with flex layout settings151 - Text Editor → Parse into `text` and `heading` elements152 - Photo → `image` element with src, alt, caption153 - Button → `button` element with text, link, style154 - HTML → `code` element155 - Map CSS classes and inline styles to Bricks settings156 - Preserve text content, image URLs, link targets157 - Flag any unmappable modules with comment annotations1583. Build the Bricks JSON array structure1594. Create a duplicate via `respira_create_page_duplicate` or `respira_create_post_duplicate`1605. Before writing, take a snapshot with `respira_get_snapshot` so the duplicate's pre-write state can be restored if anything goes wrong1616. Inject Bricks content via `respira_inject_builder_content` with `builder=bricks`1627. Surgical fix pass — if the injected page has validation issues (column widths that collapsed during the row/column-to-container translation, broken parent refs, a misconverted module), do not re-inject the whole page. Locate the specific element with `respira_find_element` and correct it with `respira_update_element`. For repeated fixes across many elements or several pages, batch them with `respira_batch_update`1638. Log the migration result (success, warnings, manual review items)164165### Phase 4: Post-Migration Verification1661671. Summarize all migrated pages with status:168 - Design tokens registered in Bricks' global styles (token names and counts)169 - Clean migrations (no issues)170 - Migrations with warnings (flagged items needing review)171 - Failed migrations (if any)1722. List all manual review items:173 - Third-party modules that need manual replacement174 - Content sliders or advanced layouts needing Bricks-native rebuilds175 - Custom CSS that needs to be added to Bricks element styles176 - Beaver Themer layouts that need separate rebuilding in Bricks1773. Provide review instructions:178 - Where to find duplicates in WordPress admin179 - How to preview Bricks pages180 - How to delete duplicates if not wanted181182## Design Tokens183184Conversion writes now register the colors and typography they carry as named design tokens in Bricks' own global styles, and the converted pages reference those tokens instead of carrying value copies. When fixing or extending a migrated page, reuse the registered tokens (`respira_list_design_tokens` shows them) rather than re-inlining raw hex values or font stacks. And say so when you finish: the migration summary should name the tokens that were registered and note that migrated pages reference them.185186## Safety Model187188- Read-only analysis first — full Beaver Builder content audit before any changes189- Explicit user confirmation before creating any duplicates190- Duplicate-first only — never modifies live/published Beaver Builder content191- Never auto-publishes duplicates192- Snapshot before every write — `respira_get_snapshot` captures the duplicate's pre-write state, and `respira_restore_snapshot` rolls it back if an injection goes wrong193- Two explicit rollback paths: restore the snapshot to revert a bad write, or delete the draft duplicates entirely to undo the migration194- Preserves all original Beaver Builder content untouched195196## Honest Disclaimer197198This skill converts Beaver Builder page structures to Bricks format and creates duplicates for review.199200It cannot:201- Guarantee pixel-perfect visual parity between builders202- Migrate Beaver Themer layouts automatically203- Convert third-party BB add-on modules to Bricks equivalents204- Replicate BB animations in Bricks interactions205- Replace a thorough manual QA pass on every page206207It can:208- Map 75-85% of standard Beaver Builder modules to Bricks elements209- Translate row/column grids to Bricks' modern flexbox containers210- Preserve content, images, links, and layout structure211- Move you to a more modern builder architecture212- Save days of manual rebuild work213- Identify exactly what needs manual attention214215## Tooling216217**Core WordPress tools**218- `respira_get_site_context`219- `respira_get_builder_info`220- `respira_list_pages`221- `respira_list_posts`222- `respira_list_plugins`223- `respira_find_builder_targets`224- `respira_extract_builder_content`225- `respira_inject_builder_content`226- `respira_create_page_duplicate`227- `respira_create_post_duplicate`228- `respira_read_page`229- `respira_read_post`230231**Safety and surgical-fix tools**232- `respira_get_snapshot`233- `respira_restore_snapshot`234- `respira_find_element`235- `respira_update_element`236- `respira_batch_update`237238## Telemetry239240After run completion, send fire-and-forget usage tracking to:241242- `POST https://www.respira.press/api/skills/track-usage`243244Include:245- `skill_slug = migrate-beaver-builder-to-bricks`246- site/version context247- duration and success248- pages audited, pages migrated, warnings count249- tools used250251Never block user flow on telemetry failure.252253## Related Skills254255- WordPress Site DNA (understand site structure before migrating)256- Technical Debt Audit (clean up before or after migration)257- SEO & AEO Amplifier (verify SEO preservation post-migration)258259---260261Built by Respira Team262https://respira.press/skills/migrate-beaver-builder-to-bricks