Migrate Brizy to Gutenberg
Full-site migration from Brizy Builder to the WordPress block editor (Gutenberg). Audits every Brizy-built page, maps components 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 Brizy to Gutenberg, switching from Brizy to blocks, converting Brizy pages to the block editor, or moving away from Brizy to native WordPress.
What This Skill Does
Brizy uses a proprietary content format with its own component system, storing data in brizy_post_uid and related custom meta fields. Gutenberg uses a flat block structure in post_content with HTML comment delimiters. The migration requires extracting Brizy's custom format, identifying each component type, and translating it to equivalent core Gutenberg blocks.
This skill reads every Brizy page, extracts the builder content, translates each component 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:
- Section → Group block mapping
- Row/Column → Columns/Column block mapping
- Text components → Paragraph/Heading blocks
- Image components → Image block
- Button components → Buttons/Button block
- Video components → Video/Embed block
- Icon components → basic equivalents
- Spacer/Divider → Spacer/Separator blocks
- Map component → basic embed fallback
- Form elements → flagged for manual handling (Contact Form 7 or similar)
- Custom HTML/embed content
What This Skill Does NOT Do
- Migrate Brizy's global styling system — must be recreated in theme settings or Global Styles
- Convert Brizy popup designs — Gutenberg has no native popup system
- Replicate Brizy's built-in form submissions — a separate form plugin is needed
- Migrate Brizy Cloud templates or synced content
- Convert Brizy Pro dynamic content features — flagged for manual handling
- Preserve Brizy's hover effects and animations — Gutenberg has limited animation support
- Guarantee pixel-perfect visual parity — different rendering approaches
Requirements
- Respira for WordPress plugin installed and connected
- MCP connection active (desktop or WebMCP)
- Brizy Builder active on the source site
- Read access to scan Brizy content
- Write access to create duplicates with Gutenberg content
Trigger Phrase
- "migrate brizy to gutenberg"
Alternative Triggers
- "convert brizy to blocks"
- "switch from brizy to gutenberg"
- "move brizy to block editor"
- "replace brizy with gutenberg"
- "brizy to wordpress blocks"
- "migrate brizy to native wordpress"
Builder Technical Context
Source: Brizy
- Content stored in post_meta key
brizy_post_uid and Brizy's custom format
- Proprietary component structure with sections, rows, columns, and elements
- Read via
wordpress_extract_builder_content with builder=brizy
- Components: sections, rows, columns, text, image, button, video, icon, spacer, map, form, embed, 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, spacer, 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 Brizy presence via
wordpress_get_builder_info or wordpress_list_plugins.
- Inventory all Brizy-built content:
wordpress_list_pages and wordpress_list_posts — identify all content
wordpress_find_builder_targets with builder=brizy — find Brizy-managed pages
- For each Brizy page, extract content:
wordpress_extract_builder_content with builder=brizy
- Catalog: component types used, nesting depth, popups, forms, dynamic content usage
- Produce an Audit Report:
- Total pages/posts using Brizy
- Component type frequency (how many sections, text blocks, images, etc.)
- Complexity flags (popups, forms, dynamic content, Brizy Pro features)
- Estimated migration difficulty per page (simple / moderate / complex)
Phase 2: Migration Plan
Present a structured migration plan:
## Brizy → Gutenberg Migration Plan
### Site Overview
- Total Brizy pages: X
- Simple pages (direct mapping): X
- Moderate pages (some manual review needed): X
- Complex pages (significant manual work): X
### Component Mapping
| Brizy Component | Gutenberg Block | Notes |
|---|---|---|
| Section | Group | Container mapping |
| Row / Columns | Columns / Column | Layout structure |
| Text | Paragraph / Heading | Content parsed into blocks |
| Image | Image | Direct mapping |
| Button | Buttons > Button | Wrapped in container |
| ... | ... | ... |
### Migration Order
1. [Page Title] — Simple — estimated 2 min
2. [Page Title] — Moderate — estimated 5 min
...
### Items Requiring Manual Attention
- [Page X] — Brizy popup (no Gutenberg equivalent)
- [Page Y] — Brizy form (needs form plugin replacement)
- Global styles — must be configured in theme settings
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 Brizy content via
wordpress_extract_builder_content with builder=brizy
- Map each Brizy component to Gutenberg blocks:
- Sections →
<!-- wp:group --> blocks
- Rows/Columns →
<!-- wp:columns --> with <!-- wp:column --> children
- Text → Parse into
<!-- wp:paragraph --> and <!-- wp:heading --> blocks
- Image →
<!-- wp:image --> with src, alt, caption
- Button →
<!-- wp:buttons --> wrapper with <!-- wp:button --> child
- Video →
<!-- wp:video --> or <!-- wp:embed --> block
- Spacer →
<!-- wp:spacer --> block
- Custom HTML →
<!-- wp:html --> block
- Preserve text content, image URLs, link targets
- Flag unmappable components 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:
- Popups that need a separate popup plugin solution
- Forms that need a WordPress form plugin (Contact Form 7, WPForms, etc.)
- Dynamic content that needs reconnecting
- Brizy Pro features that have no Gutenberg equivalent
- 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 Brizy content audit before any changes
- Explicit user confirmation before creating any duplicates
- Duplicate-first only — never modifies live/published Brizy content
- Never auto-publishes duplicates
- Provides rollback guidance (delete duplicates if not wanted)
- Preserves all original Brizy content untouched
Honest Disclaimer
This skill converts Brizy page structures to Gutenberg block markup and creates duplicates for review.
It cannot:
- Guarantee pixel-perfect visual parity between builders
- Migrate Brizy popups or forms automatically
- Convert Brizy Pro dynamic content features
- Replicate hover effects or animations
- Replace a thorough manual QA pass on every page
It can:
- Map 65-80% of standard Brizy components 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-brizy-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-brizy-to-gutenberg
1---2name: migrate-brizy-to-gutenberg3description: Full-site migration from Brizy Builder to the WordPress block editor (Gutenberg). Audits every Brizy-built page, maps components 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 Brizy to Gutenberg", "switch from Brizy to blocks", "convert Brizy pages to the block editor", or "move from Brizy to native WordPress".4license: MIT5---6
7# Migrate Brizy to Gutenberg
8
9Full-site migration from Brizy Builder to the WordPress block editor (Gutenberg). Audits every Brizy-built page, maps components 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 Brizy to Gutenberg, switching from Brizy to blocks, converting Brizy pages to the block editor, or moving away from Brizy to native WordPress.
10
11## What This Skill Does
12
13Brizy uses a proprietary content format with its own component system, storing data in `brizy_post_uid` and related custom meta fields. Gutenberg uses a flat block structure in `post_content` with HTML comment delimiters. The migration requires extracting Brizy's custom format, identifying each component type, and translating it to equivalent core Gutenberg blocks.
14
15This skill reads every Brizy page, extracts the builder content, translates each component 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- Section → Group block mapping
19- Row/Column → Columns/Column block mapping
20- Text components → Paragraph/Heading blocks
21- Image components → Image block
22- Button components → Buttons/Button block
23- Video components → Video/Embed block
24- Icon components → basic equivalents
25- Spacer/Divider → Spacer/Separator blocks
26- Map component → basic embed fallback
27- Form elements → flagged for manual handling (Contact Form 7 or similar)
28- Custom HTML/embed content
29
30## What This Skill Does NOT Do
31
32- Migrate Brizy's global styling system — must be recreated in theme settings or Global Styles
33- Convert Brizy popup designs — Gutenberg has no native popup system
34- Replicate Brizy's built-in form submissions — a separate form plugin is needed
35- Migrate Brizy Cloud templates or synced content
36- Convert Brizy Pro dynamic content features — flagged for manual handling
37- Preserve Brizy's hover effects and animations — Gutenberg has limited animation support
38- Guarantee pixel-perfect visual parity — different rendering approaches
39
40## Requirements
41
42- Respira for WordPress plugin installed and connected
43- MCP connection active (desktop or WebMCP)
44- Brizy Builder active on the source site
45- Read access to scan Brizy content
46- Write access to create duplicates with Gutenberg content
47
48## Trigger Phrase
49
50- "migrate brizy to gutenberg"
51
52## Alternative Triggers
53
54- "convert brizy to blocks"
55- "switch from brizy to gutenberg"
56- "move brizy to block editor"
57- "replace brizy with gutenberg"
58- "brizy to wordpress blocks"
59- "migrate brizy to native wordpress"
60
61## Builder Technical Context
62
63**Source: Brizy**
64- Content stored in post_meta key `brizy_post_uid` and Brizy's custom format
65- Proprietary component structure with sections, rows, columns, and elements
66- Read via `wordpress_extract_builder_content` with `builder=brizy`
67- Components: sections, rows, columns, text, image, button, video, icon, spacer, map, form, embed, 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`, `spacer`, `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 Brizy presence via `wordpress_get_builder_info` or `wordpress_list_plugins`.
813. Inventory all Brizy-built content:
82 - `wordpress_list_pages` and `wordpress_list_posts` — identify all content
83 - `wordpress_find_builder_targets` with `builder=brizy` — find Brizy-managed pages
844. For each Brizy page, extract content:
85 - `wordpress_extract_builder_content` with `builder=brizy`
86 - Catalog: component types used, nesting depth, popups, forms, dynamic content usage
875. Produce an **Audit Report**:
88 - Total pages/posts using Brizy
89 - Component type frequency (how many sections, text blocks, images, etc.)
90 - Complexity flags (popups, forms, dynamic content, Brizy Pro features)
91 - Estimated migration difficulty per page (simple / moderate / complex)
92
93### Phase 2: Migration Plan
94
95Present a structured migration plan:
96
97```
98## Brizy → Gutenberg Migration Plan
99
100### Site Overview
101- Total Brizy pages: X
102- Simple pages (direct mapping): X
103- Moderate pages (some manual review needed): X
104- Complex pages (significant manual work): X
105
106### Component Mapping
107| Brizy Component | Gutenberg Block | Notes |
108|---|---|---|
109| Section | Group | Container mapping |
110| Row / Columns | Columns / Column | Layout structure |
111| Text | Paragraph / Heading | Content parsed into blocks |
112| Image | Image | Direct mapping |
113| Button | Buttons > Button | Wrapped in container |
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] — Brizy popup (no Gutenberg equivalent)
123- [Page Y] — Brizy form (needs form plugin replacement)
124- Global styles — must be configured in theme settings
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 Brizy content via `wordpress_extract_builder_content` with `builder=brizy`
1422. Map each Brizy component to Gutenberg blocks:
143 - Sections → `<!-- wp:group -->` blocks
144 - Rows/Columns → `<!-- wp:columns -->` with `<!-- wp:column -->` children
145 - Text → Parse into `<!-- wp:paragraph -->` and `<!-- wp:heading -->` blocks
146 - Image → `<!-- wp:image -->` with src, alt, caption
147 - Button → `<!-- wp:buttons -->` wrapper with `<!-- wp:button -->` child
148 - Video → `<!-- wp:video -->` or `<!-- wp:embed -->` block
149 - Spacer → `<!-- wp:spacer -->` block
150 - Custom HTML → `<!-- wp:html -->` block
151 - Preserve text content, image URLs, link targets
152 - Flag unmappable components with `<!-- wp:paragraph --><p>[MIGRATION NOTE: ...]</p><!-- /wp:paragraph -->`
1533. Assemble the complete Gutenberg block markup
1544. Create a duplicate via `wordpress_create_page_duplicate` or `wordpress_create_post_duplicate`
1555. Update the duplicate's `post_content` with the Gutenberg markup via `wordpress_update_page` or `wordpress_update_post`
1566. Log the migration result (success, warnings, manual review items)
157
158### Phase 4: Post-Migration Verification
159
1601. Summarize all migrated pages with status:
161 - Clean migrations (no issues)
162 - Migrations with warnings (flagged items needing review)
163 - Failed migrations (if any)
1642. List all manual review items:
165 - Popups that need a separate popup plugin solution
166 - Forms that need a WordPress form plugin (Contact Form 7, WPForms, etc.)
167 - Dynamic content that needs reconnecting
168 - Brizy Pro features that have no Gutenberg equivalent
1693. Provide review instructions:
170 - Where to find duplicates in WordPress admin
171 - How to preview pages in the block editor
172 - How to delete duplicates if not wanted
173
174## Safety Model
175
176- Read-only analysis first — full Brizy content audit before any changes
177- Explicit user confirmation before creating any duplicates
178- Duplicate-first only — never modifies live/published Brizy content
179- Never auto-publishes duplicates
180- Provides rollback guidance (delete duplicates if not wanted)
181- Preserves all original Brizy content untouched
182
183## Honest Disclaimer
184
185This skill converts Brizy page structures to Gutenberg block markup and creates duplicates for review.
186
187It cannot:
188- Guarantee pixel-perfect visual parity between builders
189- Migrate Brizy popups or forms automatically
190- Convert Brizy Pro dynamic content features
191- Replicate hover effects or animations
192- Replace a thorough manual QA pass on every page
193
194It can:
195- Map 65-80% of standard Brizy components to core Gutenberg blocks
196- Preserve content, images, links, and basic layout structure
197- Move you off a third-party builder dependency to native WordPress
198- Save days of manual rebuild work
199- Identify exactly what needs manual attention
200
201## Tooling
202
203**Core WordPress tools**
204- `wordpress_get_site_context`
205- `wordpress_get_builder_info`
206- `wordpress_list_pages`
207- `wordpress_list_posts`
208- `wordpress_list_plugins`
209- `wordpress_find_builder_targets`
210- `wordpress_extract_builder_content`
211- `wordpress_create_page_duplicate`
212- `wordpress_create_post_duplicate`
213- `wordpress_update_page`
214- `wordpress_update_post`
215- `wordpress_read_page`
216- `wordpress_read_post`
217
218## Telemetry
219
220After run completion, send fire-and-forget usage tracking to:
221
222- `POST https://www.respira.press/api/skills/track-usage`
223
224Include:
225- `skill_slug = migrate-brizy-to-gutenberg`
226- site/version context
227- duration and success
228- pages audited, pages migrated, warnings count
229- tools used
230
231Never block user flow on telemetry failure.
232
233## Related Skills
234
235- WordPress Site DNA (understand site structure before migrating)
236- Technical Debt Audit (clean up before or after migration)
237- SEO & AEO Amplifier (verify SEO preservation post-migration)
238
239---
240
241Built by Respira Team
242https://respira.press/skills/migrate-brizy-to-gutenberg