Migrate 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
_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: Gutenberg (Block Editor)
- Content stored in
post_content as HTML with block comment delimiters
- 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, embed, 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 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
wordpress_extract_builder_content with builder=beaver
- Map the row/column/module hierarchy to Gutenberg blocks:
- Rows →
<!-- wp:group --> blocks
- Columns →
<!-- wp:columns --> with <!-- wp:column --> children
- Text Editor → Parse rich text into
<!-- wp:paragraph --> and <!-- wp:heading --> blocks
- Photo →
<!-- wp:image --> with src, alt, caption
- Button →
<!-- wp:buttons --> wrapper with <!-- wp:button --> child
- HTML →
<!-- wp:html --> block
- Preserve text content, image URLs, link targets, heading levels
- Flag any unmappable modules with
<!-- wp:paragraph --><p>[MIGRATION NOTE: ...]</p><!-- /wp:paragraph -->
- Assemble the complete Gutenberg block markup
- Create a duplicate via
wordpress_create_page_duplicate or wordpress_create_post_duplicate
- Update the duplicate's
post_content with the Gutenberg markup via wordpress_update_page or wordpress_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_context
wordpress_get_builder_info
wordpress_list_pages
wordpress_list_posts
wordpress_list_plugins
wordpress_find_builder_targets
wordpress_extract_builder_content
wordpress_create_page_duplicate
wordpress_create_post_duplicate
wordpress_update_page
wordpress_update_post
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-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
1---2name: migrate-beaver-builder-to-gutenberg3description: Full-site migration from Beaver Builder to the WordPress block editor (Gutenberg). Audits every Beaver Builder page, maps modules to native block equivalents, builds a migration plan for approval, and converts pages to native block markup via duplicates so the live site stays untouched. Use when user says "migrate Beaver Builder to Gutenberg", "switch from Beaver Builder to blocks", "convert Beaver Builder pages to the block editor", or "move from Beaver Builder to native WordPress".4license: MIT5---6
7# Migrate Beaver Builder to Gutenberg
8
9Full-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.
10
11## What This Skill Does
12
13Beaver 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.
14
15This 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.
16
17**Handles:**
18- Row → Group block mapping
19- Column layouts → Columns/Column block mapping
20- Text Editor module → Paragraph/Heading blocks
21- Photo module → Image block
22- Button module → Buttons/Button block
23- Video module → Video/Embed block
24- HTML module → Custom HTML block
25- Heading module → Heading block
26- Icon/Icon Group modules → basic equivalents
27- Separator module → Separator block
28- Content slider → basic markup (flagged for enhancement)
29- Call to Action module → Group + Heading + Paragraph + Button blocks
30
31## What This Skill Does NOT Do
32
33- Migrate Beaver Builder's saved rows/modules library — these are separate entities
34- Convert Beaver Themer layouts (headers, footers, archives, parts) — these must be rebuilt as block template parts or theme templates
35- Replicate exact Beaver Builder animations/effects — Gutenberg has limited animation support
36- Migrate advanced modules from third-party Beaver Builder add-ons (PowerPack, UABB, etc.) — flagged for manual handling
37- Preserve exact column width percentages in all cases — Gutenberg columns have different width constraints
38- Guarantee pixel-perfect visual parity — the block editor renders differently than Beaver Builder
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- Read access to scan Beaver Builder content
46- Write access to create duplicates with Gutenberg content
47
48## Trigger Phrase
49
50- "migrate beaver builder to gutenberg"
51
52## Alternative Triggers
53
54- "convert beaver builder to blocks"
55- "switch from beaver builder to gutenberg"
56- "move beaver builder to block editor"
57- "replace beaver builder with gutenberg"
58- "beaver builder to wordpress blocks"
59- "migrate bb to gutenberg"
60
61## Builder Technical Context
62
63**Source: Beaver Builder**
64- Content stored in post_meta keys `_fl_builder_data` and `_fl_builder_data_settings`
65- Module-based structure with rows → columns → modules hierarchy
66- Read via `wordpress_extract_builder_content` with `builder=beaver` or `builder=beaver-builder`
67- Module types: `rich-text`, `photo`, `button`, `heading`, `html`, `video`, `icon`, `separator`, `callout`, `cta`, `numbers`, `content-slider`, etc.
68
69**Target: Gutenberg (Block Editor)**
70- Content stored in `post_content` as HTML with block comment delimiters
71- Format: `<!-- wp:paragraph --><p>Text</p><!-- /wp:paragraph -->`
72- Write via standard WordPress content tools (`wordpress_update_page` / `wordpress_update_post`)
73- Core blocks: `paragraph`, `heading`, `image`, `buttons`, `columns`, `group`, `html`, `video`, `separator`, `embed`, etc.
74
75## Execution Workflow
76
77### Phase 1: Pre-Migration Audit
78
791. Verify Respira + MCP connection via `wordpress_get_site_context`. If unavailable, stop and show setup guidance.
802. Detect Beaver Builder presence via `wordpress_get_builder_info` or `wordpress_list_plugins`.
813. Inventory all Beaver Builder content:
82 - `wordpress_list_pages` and `wordpress_list_posts` — identify all content
83 - `wordpress_find_builder_targets` with `builder=beaver` — find BB-managed pages
844. For each BB page, extract content:
85 - `wordpress_extract_builder_content` with `builder=beaver`
86 - Catalog: module types used, row/column structures, custom CSS, third-party modules, saved rows/modules referenced
875. Produce an **Audit Report**:
88 - Total pages/posts using Beaver Builder
89 - Module type frequency (how many text editors, photos, buttons, etc.)
90 - Column layout patterns (common row structures)
91 - Complexity flags (third-party modules, Beaver Themer, custom CSS, animations)
92 - Estimated migration difficulty per page (simple / moderate / complex)
93
94### Phase 2: Migration Plan
95
96Present a structured migration plan:
97
98```
99## Beaver Builder → Gutenberg Migration Plan
100
101### Site Overview
102- Total Beaver Builder pages: X
103- Simple pages (direct mapping): X
104- Moderate pages (some manual review needed): X
105- Complex pages (significant manual work): X
106
107### Module Mapping
108| BB Module | Gutenberg Block | Notes |
109|---|---|---|
110| Text Editor | Paragraph / Heading | Content parsed into appropriate blocks |
111| Photo | Image | Direct mapping |
112| Button | Buttons > Button | Wrapped in Buttons container |
113| Row (2 col) | Columns (2 col) | Width ratios preserved where possible |
114| ... | ... | ... |
115
116### Migration Order
1171. [Page Title] — Simple — estimated 2 min
1182. [Page Title] — Moderate — estimated 5 min
119...
120
121### Items Requiring Manual Attention
122- [Page X] — PowerPack module (no core block equivalent)
123- [Page Y] — Content slider (basic fallback only)
124- Beaver Themer layouts — must be rebuilt as block templates
125```
126
127Then ask:
128
129> Here's the migration plan. Would you like me to:
130> 1. Migrate all pages (creates duplicates for review)
131> 2. Migrate only simple pages first
132> 3. Migrate specific pages you choose
133> 4. Just keep this as a reference — no changes
134
135Wait for explicit confirmation before proceeding.
136
137### Phase 3: Page-by-Page Migration
138
139For each approved page:
140
1411. Extract Beaver Builder content via `wordpress_extract_builder_content` with `builder=beaver`
1422. Map the row/column/module hierarchy to Gutenberg blocks:
143 - Rows → `<!-- wp:group -->` blocks
144 - Columns → `<!-- wp:columns -->` with `<!-- wp:column -->` children
145 - Text Editor → Parse rich text into `<!-- wp:paragraph -->` and `<!-- wp:heading -->` blocks
146 - Photo → `<!-- wp:image -->` with src, alt, caption
147 - Button → `<!-- wp:buttons -->` wrapper with `<!-- wp:button -->` child
148 - HTML → `<!-- wp:html -->` block
149 - Preserve text content, image URLs, link targets, heading levels
150 - Flag any unmappable modules with `<!-- wp:paragraph --><p>[MIGRATION NOTE: ...]</p><!-- /wp:paragraph -->`
1513. Assemble the complete Gutenberg block markup
1524. Create a duplicate via `wordpress_create_page_duplicate` or `wordpress_create_post_duplicate`
1535. Update the duplicate's `post_content` with the Gutenberg markup via `wordpress_update_page` or `wordpress_update_post`
1546. Log the migration result (success, warnings, manual review items)
155
156### Phase 4: Post-Migration Verification
157
1581. Summarize all migrated pages with status:
159 - Clean migrations (no issues)
160 - Migrations with warnings (flagged items needing review)
161 - Failed migrations (if any)
1622. List all manual review items:
163 - Third-party modules that need manual replacement
164 - Content sliders or advanced layouts that need enhancement
165 - Custom CSS that needs to be moved to theme/Additional CSS
166 - Beaver Themer layouts that need separate rebuilding
1673. Provide review instructions:
168 - Where to find duplicates in WordPress admin
169 - How to preview pages in the block editor
170 - How to delete duplicates if not wanted
171
172## Safety Model
173
174- Read-only analysis first — full Beaver Builder content audit before any changes
175- Explicit user confirmation before creating any duplicates
176- Duplicate-first only — never modifies live/published Beaver Builder content
177- Never auto-publishes duplicates
178- Provides rollback guidance (delete duplicates if not wanted)
179- Preserves all original Beaver Builder content untouched
180
181## Honest Disclaimer
182
183This skill converts Beaver Builder page structures to Gutenberg block markup and creates duplicates for review.
184
185It cannot:
186- Guarantee pixel-perfect visual parity between builders
187- Migrate Beaver Themer layouts automatically
188- Convert third-party BB add-on modules
189- Replicate animations or advanced effects
190- Replace a thorough manual QA pass on every page
191
192It can:
193- Map 70-85% of standard Beaver Builder modules to core Gutenberg blocks
194- Preserve content, images, links, and basic layout structure
195- Move you off a third-party builder dependency to native WordPress
196- Save days of manual rebuild work
197- Identify exactly what needs manual attention
198
199## Tooling
200
201**Core WordPress tools**
202- `wordpress_get_site_context`
203- `wordpress_get_builder_info`
204- `wordpress_list_pages`
205- `wordpress_list_posts`
206- `wordpress_list_plugins`
207- `wordpress_find_builder_targets`
208- `wordpress_extract_builder_content`
209- `wordpress_create_page_duplicate`
210- `wordpress_create_post_duplicate`
211- `wordpress_update_page`
212- `wordpress_update_post`
213- `wordpress_read_page`
214- `wordpress_read_post`
215
216## Telemetry
217
218After run completion, send fire-and-forget usage tracking to:
219
220- `POST https://www.respira.press/api/skills/track-usage`
221
222Include:
223- `skill_slug = migrate-beaver-builder-to-gutenberg`
224- site/version context
225- duration and success
226- pages audited, pages migrated, warnings count
227- tools used
228
229Never block user flow on telemetry failure.
230
231## Related Skills
232
233- WordPress Site DNA (understand site structure before migrating)
234- Technical Debt Audit (clean up before or after migration)
235- SEO & AEO Amplifier (verify SEO preservation post-migration)
236
237---
238
239Built by Respira Team
240https://respira.press/skills/migrate-beaver-builder-to-gutenberg