Best for
- Use when the user says 'migrate brizy to gutenberg', 'convert brizy to blocks', or 'replace brizy with native wordpress'.
respira-press/agent-skills-wordpress/skills/migrate-brizy-to-gutenberg/SKILL.md
Use when the user says 'migrate brizy to gutenberg', 'convert brizy to blocks', or 'replace brizy with native wordpress'. Parses the Brizy JSON data, maps elements to core blocks, and creates draft duplicates for review.
Decision brief
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 the block editor's own global styles, and converted pages reference those tokens instead of carry…
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/respira-press/agent-skills-wordpress --skill "skills/migrate-brizy-to-gutenberg"Inspect the Agent Skill "migrate-brizy-to-gutenberg" from https://github.com/respira-press/agent-skills-wordpress/blob/10821eaabe362fe9052f6ee81ecdd62e5d2f2980/skills/migrate-brizy-to-gutenberg/SKILL.md at commit 10821eaabe362fe9052f6ee81ecdd62e5d2f2980. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
1. Verify Respira + MCP connection via respiragetsitecontext. If unavailable, stop and show setup guidance. 2. Detect Brizy presence via respiragetbuilderinfo or respiralistplugins. 3. Inventory all Brizy-built content: - respiralistpages and respiralistposts — identify all cont…
1. Verify Respira + MCP connection via respiragetsitecontext. If unavailable, stop and show setup guidance. 2. Detect Brizy presence via respiragetbuilderinfo or respiralistplugins. 3. Inventory all Brizy-built content: - respiralistpages and respiralistposts — identify all cont…
Present a structured migration plan:
1. Extract Brizy content via respiraextractbuildercontent with builder=brizy 2. Map each Brizy component to Gutenberg blocks: - Sections → blocks - Rows/Columns → with children - Text → Parse into and blocks - Image → with src, alt, caption - Button → wrapper with child - Video…
1. Summarize all migrated pages with status: - Design tokens registered in the block editor's global styles (token names and counts) - Clean migrations (no issues) - Migrations with warnings (flagged items needing review) - Failed migrations (if any) 2. List all manual review it…
Permission review
No configured static risk pattern was detected
This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.
Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 95/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 40 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
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 the block editor's 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 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.
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:
Source: Brizy
brizy_post_uid and Brizy's custom formatrespira_extract_builder_content with builder=brizyTarget: Gutenberg (Block Editor)
post_content as HTML with block comment delimiters<!-- wp:paragraph --><p>Text</p><!-- /wp:paragraph -->respira_update_page / respira_update_post)paragraph, heading, image, buttons, columns, group, html, video, separator, spacer, embed, etc.respira_get_site_context. If unavailable, stop and show setup guidance.respira_get_builder_info or respira_list_plugins.respira_list_pages and respira_list_posts — identify all contentrespira_find_builder_targets with builder=brizy — find Brizy-managed pagesrespira_extract_builder_content with builder=brizyPresent 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.
For each approved page:
respira_extract_builder_content with builder=brizy<!-- wp:group --> blocks<!-- wp:columns --> with <!-- wp:column --> children<!-- wp:paragraph --> and <!-- wp:heading --> blocks<!-- wp:image --> with src, alt, caption<!-- wp:buttons --> wrapper with <!-- wp:button --> child<!-- wp:video --> or <!-- wp:embed --> block<!-- wp:spacer --> block<!-- wp:html --> block<!-- wp:paragraph --><p>[MIGRATION NOTE: ...]</p><!-- /wp:paragraph -->respira_get_snapshot checkpoint of the target before any write, so the page can be restored exactly if the conversion needs unwindingrespira_create_page_duplicate or respira_create_post_duplicatepost_content via respira_update_page or respira_update_postrespira_find_element and correct it in place with respira_update_element. For repeated corrections across many blocks or several migrated pages, batch them with respira_batch_update rather than regenerating and re-writing whole pages.Conversion writes now register the colors and typography they carry as named design tokens in the block editor's 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.
respira_get_snapshot captures the target so it can be returned to its exact prior staterespira_restore_snapshot, or delete the draft duplicates, to undo a migration cleanlyThis skill converts Brizy page structures to Gutenberg block markup and creates duplicates for review.
It cannot:
It can:
Core WordPress tools
respira_get_site_contextrespira_get_builder_inforespira_list_pagesrespira_list_postsrespira_list_pluginsrespira_find_builder_targetsrespira_extract_builder_contentrespira_get_snapshotrespira_restore_snapshotrespira_find_elementrespira_update_elementrespira_batch_updaterespira_create_page_duplicaterespira_create_post_duplicaterespira_update_pagerespira_update_postrespira_read_pagerespira_read_postAfter run completion, send fire-and-forget usage tracking to:
POST https://www.respira.press/api/skills/track-usageInclude:
skill_slug = migrate-brizy-to-gutenbergNever block user flow on telemetry failure.
Built by Respira Team https://respira.press/skills/migrate-brizy-to-gutenberg
Alternatives
respira-press/agent-skills-wordpress
Use when the user says 'migrate elementor to gutenberg', 'convert elementor to blocks', 'remove the elementor dependency', or 'go back to native wordpress'. Maps Elementor widgets to core blocks and creates draft duplicates for review.
respira-press/agent-skills-wordpress
Use when the user says 'migrate thrive architect to gutenberg', 'convert thrive to blocks', or 'replace thrive architect with native wordpress'. Parses Thrive Architect content, maps elements to core blocks, and creates draft duplicates for review.
elementalsouls/Claude-BugHunter
Hunting skill for auth bypass vulnerabilities. Built from 12 public bug bounty reports across SAML XSW / parser-differential (GitHub Enterprise CVE-2025-25291/25292), SAML signature stripping (Uber, Rocket.Chat, samlify CVE-2025-47949), SAML domain enforcement bypass via control characters (HackerOne 2024), partner-portal cross-IdP assertion reuse (Slack), WordPress XMLRPC bypassing SSO (Uber), JWT alg-confusion HS256/RS256 (Jitsi), JWT signature-validation skip (Linktree, Newspack), and token-a
respira-press/agent-skills-wordpress
Use when asked to audit, score, or health-check a WordPress site or page. Runs SEO, AEO, readability, accessibility, performance, RankMath, and Core Web Vitals analyzers and presents a unified report with prioritised fixes.