Migrate 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
_fl_builder_data and _fl_builder_data_settings
- Module-based structure with rows → columns → modules hierarchy
- Read via
wordpress_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
wordpress_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
wordpress_get_site_context. If unavailable, stop and show setup guidance.
- Detect Beaver Builder presence via
wordpress_get_builder_info or wordpress_list_plugins.
- Inventory all Beaver Builder content:
wordpress_list_pages and wordpress_list_posts — identify all content
wordpress_find_builder_targets with builder=beaver — find BB-managed pages
- For each BB page, extract content:
wordpress_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
wordpress_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
wordpress_create_page_duplicate or wordpress_create_post_duplicate
- Inject Bricks content via
wordpress_inject_builder_content with builder=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_context
wordpress_get_builder_info
wordpress_list_pages
wordpress_list_posts
wordpress_list_plugins
wordpress_find_builder_targets
wordpress_extract_builder_content
wordpress_inject_builder_content
wordpress_create_page_duplicate
wordpress_create_post_duplicate
wordpress_read_page
wordpress_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
1---2name: migrate-beaver-builder-to-bricks3description: Full-site migration from Beaver Builder to Bricks Builder. Audits every Beaver Builder page, maps modules to Bricks equivalents, builds a migration plan for approval, and converts pages to Bricks JSON via duplicates so the live site stays untouched. Use when user says "migrate Beaver Builder to Bricks", "switch from BB to Bricks", "convert Beaver Builder pages to Bricks", or "replace Beaver Builder with Bricks".4license: MIT5---6
7# Migrate Beaver Builder to Bricks
8
9Full-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.
10
11## What This Skill Does
12
13Beaver 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.
14
15This 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.
16
17**Handles:**
18- Row → Bricks Section mapping
19- Column structures → Bricks Container with flex layout
20- Text Editor module → Bricks Text / Heading elements
21- Photo module → Bricks Image element
22- Button module → Bricks Button element
23- Video module → Bricks Video element
24- HTML module → Bricks Code element
25- Heading module → Bricks Heading element
26- Separator module → Bricks Divider element
27- Icon module → Bricks Icon element
28- Call to Action module → Bricks Container + child elements
29- Custom CSS classes and inline styles
30
31## What This Skill Does NOT Do
32
33- Migrate Beaver Builder's saved rows/modules library — these must be recreated in Bricks
34- Convert Beaver Themer layouts (headers, footers, archives) — Bricks templates must be built separately
35- Replicate exact Beaver Builder animations/effects — Bricks has its own interaction system
36- Migrate third-party Beaver Builder add-on modules (PowerPack, UABB, etc.) — flagged for manual handling
37- Convert BB's global rows to Bricks' template system — different architectural concept
38- Guarantee pixel-perfect visual parity — different rendering engines produce different output
39
40## Requirements
41
42- Respira for WordPress plugin installed and connected
43- MCP connection active (desktop or WebMCP)
44- Beaver Builder active on the source site
45- Bricks Builder installed on the target site (can be the same site)
46- Read access to scan Beaver Builder content
47- Write access to create duplicates with Bricks content
48
49## Trigger Phrase
50
51- "migrate beaver builder to bricks"
52
53## Alternative Triggers
54
55- "convert beaver builder to bricks"
56- "switch from bb to bricks"
57- "move beaver builder pages to bricks"
58- "replace beaver builder with bricks"
59- "beaver builder to bricks migration"
60- "migrate bb to bricks"
61
62## Builder Technical Context
63
64**Source: Beaver Builder**
65- Content stored in post_meta keys `_fl_builder_data` and `_fl_builder_data_settings`
66- Module-based structure with rows → columns → modules hierarchy
67- Read via `wordpress_extract_builder_content` with `builder=beaver` or `builder=beaver-builder`
68- Module types: `rich-text`, `photo`, `button`, `heading`, `html`, `video`, `icon`, `separator`, `callout`, `cta`, `numbers`, `content-slider`, etc.
69
70**Target: Bricks Builder**
71- Content stored in post_meta key `_bricks_page_content_2` as a JSON array
72- Each element is an object with `id`, `name`, `parent`, `settings`, `children`
73- Write via `wordpress_inject_builder_content` with `builder=bricks`
74- Elements: `section`, `container`, `heading`, `text`, `image`, `button`, `video`, `code`, `divider`, `icon`, etc.
75
76## Execution Workflow
77
78### Phase 1: Pre-Migration Audit
79
801. Verify Respira + MCP connection via `wordpress_get_site_context`. If unavailable, stop and show setup guidance.
812. Detect Beaver Builder presence via `wordpress_get_builder_info` or `wordpress_list_plugins`.
823. Inventory all Beaver Builder content:
83 - `wordpress_list_pages` and `wordpress_list_posts` — identify all content
84 - `wordpress_find_builder_targets` with `builder=beaver` — find BB-managed pages
854. For each BB page, extract content:
86 - `wordpress_extract_builder_content` with `builder=beaver`
87 - Catalog: module types used, row/column structures, custom CSS, third-party modules, saved rows/modules
885. Produce an **Audit Report**:
89 - Total pages/posts using Beaver Builder
90 - Module type frequency (how many text editors, photos, buttons, etc.)
91 - Column layout patterns (common row structures)
92 - Complexity flags (third-party modules, Beaver Themer, custom CSS, animations)
93 - Estimated migration difficulty per page (simple / moderate / complex)
94
95### Phase 2: Migration Plan
96
97Present a structured migration plan:
98
99```
100## Beaver Builder → Bricks Migration Plan
101
102### Site Overview
103- Total Beaver Builder pages: X
104- Simple pages (direct mapping): X
105- Moderate pages (some manual review needed): X
106- Complex pages (significant manual work): X
107
108### Module-to-Element Mapping
109| BB Module | Bricks Element | Notes |
110|---|---|---|
111| Row | Section | BB row maps to Bricks section |
112| Column | Container | Flex-based layout in Bricks |
113| Text Editor | Text / Heading | Content parsed into elements |
114| Photo | Image | Direct mapping |
115| Button | Button | Direct mapping |
116| ... | ... | ... |
117
118### Migration Order
1191. [Page Title] — Simple — estimated 2 min
1202. [Page Title] — Moderate — estimated 5 min
121...
122
123### Items Requiring Manual Attention
124- [Page X] — PowerPack Tabs module (no direct Bricks equivalent)
125- [Page Y] — Content slider (needs Bricks slider setup)
126- Beaver Themer layouts — must be rebuilt as Bricks templates
127```
128
129Then ask:
130
131> Here's the migration plan. Would you like me to:
132> 1. Migrate all pages (creates duplicates for review)
133> 2. Migrate only simple pages first
134> 3. Migrate specific pages you choose
135> 4. Just keep this as a reference — no changes
136
137Wait for explicit confirmation before proceeding.
138
139### Phase 3: Page-by-Page Migration
140
141For each approved page:
142
1431. Extract Beaver Builder content via `wordpress_extract_builder_content` with `builder=beaver`
1442. Map the row/column/module hierarchy to Bricks elements:
145 - Rows → Bricks `section` elements
146 - Columns → Bricks `container` elements with flex layout settings
147 - Text Editor → Parse into `text` and `heading` elements
148 - Photo → `image` element with src, alt, caption
149 - Button → `button` element with text, link, style
150 - HTML → `code` element
151 - Map CSS classes and inline styles to Bricks settings
152 - Preserve text content, image URLs, link targets
153 - Flag any unmappable modules with comment annotations
1543. Build the Bricks JSON array structure
1554. Create a duplicate via `wordpress_create_page_duplicate` or `wordpress_create_post_duplicate`
1565. Inject Bricks content via `wordpress_inject_builder_content` with `builder=bricks`
1576. Log the migration result (success, warnings, manual review items)
158
159### Phase 4: Post-Migration Verification
160
1611. Summarize all migrated pages with status:
162 - Clean migrations (no issues)
163 - Migrations with warnings (flagged items needing review)
164 - Failed migrations (if any)
1652. List all manual review items:
166 - Third-party modules that need manual replacement
167 - Content sliders or advanced layouts needing Bricks-native rebuilds
168 - Custom CSS that needs to be added to Bricks element styles
169 - Beaver Themer layouts that need separate rebuilding in Bricks
1703. Provide review instructions:
171 - Where to find duplicates in WordPress admin
172 - How to preview Bricks pages
173 - How to delete duplicates if not wanted
174
175## Safety Model
176
177- Read-only analysis first — full Beaver Builder content audit before any changes
178- Explicit user confirmation before creating any duplicates
179- Duplicate-first only — never modifies live/published Beaver Builder content
180- Never auto-publishes duplicates
181- Provides rollback guidance (delete duplicates if not wanted)
182- Preserves all original Beaver Builder content untouched
183
184## Honest Disclaimer
185
186This skill converts Beaver Builder page structures to Bricks format and creates duplicates for review.
187
188It cannot:
189- Guarantee pixel-perfect visual parity between builders
190- Migrate Beaver Themer layouts automatically
191- Convert third-party BB add-on modules to Bricks equivalents
192- Replicate BB animations in Bricks interactions
193- Replace a thorough manual QA pass on every page
194
195It can:
196- Map 75-85% of standard Beaver Builder modules to Bricks elements
197- Translate row/column grids to Bricks' modern flexbox containers
198- Preserve content, images, links, and layout structure
199- Move you to a more modern builder architecture
200- Save days of manual rebuild work
201- Identify exactly what needs manual attention
202
203## Tooling
204
205**Core WordPress tools**
206- `wordpress_get_site_context`
207- `wordpress_get_builder_info`
208- `wordpress_list_pages`
209- `wordpress_list_posts`
210- `wordpress_list_plugins`
211- `wordpress_find_builder_targets`
212- `wordpress_extract_builder_content`
213- `wordpress_inject_builder_content`
214- `wordpress_create_page_duplicate`
215- `wordpress_create_post_duplicate`
216- `wordpress_read_page`
217- `wordpress_read_post`
218
219## Telemetry
220
221After run completion, send fire-and-forget usage tracking to:
222
223- `POST https://www.respira.press/api/skills/track-usage`
224
225Include:
226- `skill_slug = migrate-beaver-builder-to-bricks`
227- site/version context
228- duration and success
229- pages audited, pages migrated, warnings count
230- tools used
231
232Never block user flow on telemetry failure.
233
234## Related Skills
235
236- WordPress Site DNA (understand site structure before migrating)
237- Technical Debt Audit (clean up before or after migration)
238- SEO & AEO Amplifier (verify SEO preservation post-migration)
239
240---
241
242Built by Respira Team
243https://respira.press/skills/migrate-beaver-builder-to-bricks