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-brizy-to-gutenberg" ~/.claude/skills/webmyc-claude-skills-wordpress-migrate-brizy-to-gutenberg && rm -rf "$T"
skills/migrate-brizy-to-gutenberg/SKILL.mdMigrate 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
and Brizy's custom formatbrizy_post_uid - Proprietary component structure with sections, rows, columns, and elements
- Read via
withwordpress_extract_builder_contentbuilder=brizy - Components: sections, rows, columns, text, image, button, video, icon, spacer, map, form, embed, etc.
Target: Gutenberg (Block Editor)
- Content stored in
as HTML with block comment delimiterspost_content - 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
, etc.embed
Execution Workflow
Phase 1: Pre-Migration Audit
- Verify Respira + MCP connection via
. If unavailable, stop and show setup guidance.wordpress_get_site_context - Detect Brizy presence via
orwordpress_get_builder_info
.wordpress_list_plugins - Inventory all Brizy-built content:
andwordpress_list_pages
— identify all contentwordpress_list_posts
withwordpress_find_builder_targets
— find Brizy-managed pagesbuilder=brizy
- For each Brizy page, extract content:
withwordpress_extract_builder_contentbuilder=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
withwordpress_extract_builder_contentbuilder=brizy - Map each Brizy component to Gutenberg blocks:
- Sections →
blocks<!-- wp:group --> - Rows/Columns →
with<!-- wp:columns -->
children<!-- wp:column --> - Text → Parse into
and<!-- wp:paragraph -->
blocks<!-- wp:heading --> - Image →
with src, alt, caption<!-- wp:image --> - Button →
wrapper with<!-- wp:buttons -->
child<!-- wp:button --> - Video →
or<!-- wp:video -->
block<!-- wp:embed --> - Spacer →
block<!-- wp:spacer --> - Custom HTML →
block<!-- wp:html --> - Preserve text content, image URLs, link targets
- Flag unmappable components with
<!-- wp:paragraph --><p>[MIGRATION NOTE: ...]</p><!-- /wp:paragraph -->
- Sections →
- Assemble the complete Gutenberg block markup
- Create a duplicate via
orwordpress_create_page_duplicatewordpress_create_post_duplicate - Update the duplicate's
with the Gutenberg markup viapost_content
orwordpress_update_pagewordpress_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_contextwordpress_get_builder_infowordpress_list_pageswordpress_list_postswordpress_list_pluginswordpress_find_builder_targetswordpress_extract_builder_contentwordpress_create_page_duplicatewordpress_create_post_duplicatewordpress_update_pagewordpress_update_postwordpress_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-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