Migrate Divi to Gutenberg
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.
Converts Divi-built WordPress pages to native Gutenberg blocks. Parses Divi's shortcode-based content from post_content, maps each module to its closest core block equivalent, generates a migration plan for approval, and writes clean block markup to the target pages. Use this skill whenever someone wants to move from Divi to Gutenberg, eliminate the Divi dependency, switch to native blocks, or simplify their WordPress stack by removing Elegant Themes' builder.
What This Skill Does
Divi stores everything as nested shortcodes directly in post_content — a fundamentally different approach from JSON-based builders. The content is a hierarchy of [et_pb_section], [et_pb_row], [et_pb_column], and [et_pb_module] shortcodes with settings as attributes. Converting this to Gutenberg blocks means parsing that shortcode tree, extracting content and settings, and generating the equivalent <!-- wp:block --> markup.
This is one of the more complex migrations because Divi shortcodes often contain escaped HTML, base64-encoded content, and deeply nested attribute strings that need careful parsing.
Handles:
- et_pb_section → Group block with layout settings
- et_pb_row/et_pb_column → Columns and Column blocks
- et_pb_text → Paragraph blocks (with inline HTML preserved)
- et_pb_blurb → Group block with Image + Heading + Paragraph
- et_pb_image → Image block
- et_pb_button → Buttons block
- et_pb_video → Video or Embed block
- et_pb_divider → Separator block
- et_pb_slider/et_pb_slide → Gallery or Group blocks (simplified)
- et_pb_accordion/et_pb_accordion_item → Details blocks (WP 6.3+)
- et_pb_tabs/et_pb_tab → Group with heading blocks
- et_pb_toggle → Details block (WP 6.3+)
- et_pb_code → Custom HTML block
- et_pb_sidebar → Widget block
- et_pb_gallery → Gallery block
- et_pb_counters → HTML approximation
- Fullwidth variants (et_pb_fullwidth_*) → full-width Group blocks
Preserves:
- All text content and inline HTML formatting
- Image URLs, alt text, and links
- Heading text and hierarchy
- Button labels, URLs, and targets
- Video URLs and embed sources
- List content
- Code block contents
- Basic color settings where Gutenberg supports them
What This Skill Does NOT Do
- Divi's visual design layer — Divi applies extensive CSS through its settings (gradient backgrounds, custom fonts from 800+ Google Fonts choices, box shadows with specific blur/spread, text shadow, filters, transforms). Gutenberg supports some of these; many will be simplified or lost.
- Specialty sections — Divi's specialty section layouts (sidebar + content combinations) have no direct Gutenberg equivalent.
- Global modules — Stored as
et_pb_layout post type. These are resolved to inline content during migration; Gutenberg reusable blocks can be created manually afterward.
- Divi Builder plugin modules — Modules added by Divi-specific plugins (Divi Toolbox, Divi Supreme, etc.) are flagged.
- Theme customizer settings — Divi theme customizer values (global fonts, colors, sizing) don't transfer to block themes.
- Dynamic content — Divi's dynamic content features need separate solutions.
- Contact forms — et_pb_contact_form needs a forms plugin (WPForms, etc.).
- Divi Library layouts — Template library layouts stored in et_pb_layout post type are not auto-migrated.
- Advanced design settings — Rounded corners, CSS filters, blend modes, and transforms have limited Gutenberg support.
Requirements
- Respira for WordPress plugin installed and connected
- MCP connection active (desktop or WebMCP)
- Divi theme or Divi Builder plugin active (to read source content)
- WordPress 6.0+ (6.3+ recommended for Details block support)
- A block-compatible theme ready for post-migration (if switching from Divi theme)
- Read access to scan Divi content
- Write access to create duplicates with Gutenberg content
Trigger Phrase
- "migrate divi to gutenberg"
Alternative Triggers
- "convert divi to blocks"
- "switch from divi to gutenberg"
- "remove divi builder"
- "rebuild divi pages with blocks"
- "divi to block editor"
- "decommission divi"
- "get off divi"
Source Builder: Divi
Divi stores content as shortcodes in post_content. The module structure follows a strict hierarchy:
[et_pb_section fb_built="1" _builder_version="4.x"]
[et_pb_row _builder_version="4.x"]
[et_pb_column type="4_4" _builder_version="4.x"]
[et_pb_text _builder_version="4.x"]
<p>Your content here</p>
[/et_pb_text]
[et_pb_image src="image.jpg" alt="Alt text" _builder_version="4.x"][/et_pb_image]
[et_pb_button button_text="Click Me" button_url="https://..." _builder_version="4.x"][/et_pb_button]
[/et_pb_column]
[/et_pb_row]
[/et_pb_section]
Key Divi specifics:
- Section types: regular, fullwidth, specialty (with predefined column layouts)
- Column types: defined by
type attribute — 4_4 (full), 1_2 (half), 1_3 (third), 2_3 (two-thirds), 1_4 (quarter), 3_4 (three-quarters)
- Settings as attributes:
background_color, text_orientation, custom_margin, custom_padding, etc.
- Builder version tracking:
_builder_version attribute on every element
- Content encoding: Text content may contain escaped HTML entities, newline placeholders (
%22, %91, %93), and occasional base64
- Global modules: Referenced via
global_module attribute pointing to an et_pb_layout post
- Custom CSS fields:
custom_css_main_element, custom_css_before, custom_css_after attributes
Read Divi content via respira_extract_builder_content with builder=divi.
Target: Gutenberg (Block Editor)
Gutenberg stores content in post_content as HTML with block comment delimiters:
<!-- wp:group {"layout":{"type":"constrained"}} -->
<div class="wp-block-group">
<!-- wp:heading {"level":2} -->
<h2 class="wp-block-heading">Title Here</h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>Content text.</p>
<!-- /wp:paragraph -->
</div>
<!-- /wp:group -->
Key Gutenberg specifics:
- Block attributes in opening comment JSON
- Layout blocks:
wp:group, wp:columns, wp:column
- Inline styles via
style attribute in block JSON
- Columns use percentage widths
- Everything lives in
post_content — no separate meta
Write Gutenberg content via respira_update_page or respira_update_post targeting the content field.
Execution Workflow
Phase 1: Pre-Migration Audit
- Verify Respira + MCP connection via
respira_get_site_context. If unavailable, stop and show setup guidance.
- Confirm Divi is active (theme or plugin) via
respira_list_plugins and respira_get_site_context.
- Check WordPress version (6.0+ required, 6.3+ ideal).
- Important: If using Divi theme (not just plugin), note that the user will need an alternative theme post-migration.
- Scan and scope all Divi content:
respira_list_pages and respira_list_posts — identify all content
respira_find_builder_targets with builder=divi — inventory the Divi-managed pages to scope the migration
- Confirm the builder per page via
respira_get_builder_info
- For each Divi page, extract content via
respira_extract_builder_content with builder=divi
- Build an inventory:
- Total pages/posts using Divi
- Module types used (frequency count)
- Specialty sections detected (high complexity)
- Global modules referenced
- Third-party Divi modules
- Content encoding issues found
- Complexity per page (simple/moderate/complex)
Phase 2: Migration Plan
Present a plan that sets realistic expectations:
## Divi → Gutenberg Migration Plan
### Important Context
Divi and Gutenberg have very different design philosophies. Divi offers
extensive visual customization through its settings panel; Gutenberg
prioritizes clean, semantic content. Expect simpler but faster-loading pages.
If you are using the Divi theme (not just the plugin), you will need a
block-compatible theme (e.g., Twenty Twenty-Four, Astra, Kadence).
### Site Inventory
- Total Divi pages: X
- Total modules to convert: X
- Direct equivalents: X (Y%)
- Approximate equivalents: X (Y%)
- Manual recreation needed: X (Y%)
### Module Mapping Summary
| Divi Module | Gutenberg Block | Fidelity |
|------------------|-----------------|--------------|
| et_pb_text | wp:paragraph | Exact |
| et_pb_image | wp:image | Exact |
| et_pb_blurb | wp:group combo | Approximate |
| et_pb_slider | wp:group/gallery| Simplified |
| et_pb_contact | — | Manual |
### Shortcode Parsing Notes
- [Any encoding issues found]
- [Specialty sections that need layout interpretation]
- [Global modules that will be inlined]
### Page-by-Page Plan
1. **[Page Title]** — X modules, [complexity]
2. ...
Ask for confirmation:
Divi → Gutenberg is a significant simplification. Pages will be cleaner but less visually elaborate.
- Migrate all pages
- Migrate specific pages
- Start with a test page (strongly recommended)
- Just keep this plan
Phase 3: Page-by-Page Migration
For each approved page:
- Read full Divi content via
respira_extract_builder_content with builder=divi
- Parse the Divi shortcode tree:
- Identify section/row/column hierarchy
- Decode any encoded content (HTML entities, percent-encoding)
- Resolve global module references to inline content
- Map each module:
et_pb_section → <!-- wp:group --> (with full-width if fullwidth section)
et_pb_row + et_pb_column → <!-- wp:columns --> + <!-- wp:column {"width":"X%"} -->
- Column type mapping:
4_4→100%, 1_2→50%, 1_3→33.33%, 2_3→66.66%, 1_4→25%, 3_4→75%
et_pb_text → <!-- wp:paragraph --> (or multiple blocks if content has headings)
et_pb_blurb → Group containing Image + Heading + Paragraph
et_pb_image → <!-- wp:image -->
et_pb_button → <!-- wp:buttons --><!-- wp:button -->
- Map background colors to Group block style attributes
- Flag unmappable modules with
<!-- MIGRATION NOTE: ... -->
- Assemble complete block markup
- Take a
respira_get_snapshot checkpoint of the target before any write, so the page can be restored exactly if the conversion needs unwinding
- Create duplicate via
respira_create_page_duplicate or respira_create_post_duplicate
- Write the block markup to the duplicate via
respira_update_page or respira_update_post
- Surgical fixes (not a rewrite): when a single block lands wrong — a heading, a button label, a column width — locate it with
respira_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.
- Report: modules converted, items flagged, layout changes made
Phase 4: Post-Migration Verification
- Summarize all migrations
- Design tokens registered in the block editor's global styles (token names and counts)
- For each migrated page:
- Link to edit in Gutenberg
- Flagged items
- Layout simplification notes
- Post-migration checklist:
Design Tokens
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.
Safety Model
- Read-only analysis first — full content scan before any changes
- Explicit user confirmation required before creating duplicates
- Original Divi pages are never modified or deleted
- All migrated content goes to draft duplicates only
- Never auto-publishes migrated pages
- Takes a
respira_get_snapshot checkpoint before each write
- Explicit rollback: restore the snapshot via
respira_restore_snapshot, or delete the draft duplicates if they are not wanted
- Warns about theme dependency if using Divi theme
Honest Disclaimer
This skill converts Divi page content to Gutenberg blocks and creates draft duplicates for review.
It cannot:
- Replicate Divi's visual design precision in Gutenberg
- Convert specialty section layouts perfectly
- Migrate contact forms, sliders, or animations
- Handle third-party Divi plugin modules
- Switch your theme for you (if on Divi theme)
- Replace manual review and fine-tuning
It can:
- Convert 60-75% of standard Divi modules to clean blocks
- Extract all text, images, and links from shortcode markup
- Eliminate Divi dependency for simpler pages
- Dramatically improve page load speed
- Parse complex Divi shortcode encoding
- Provide a clear map of manual work needed
- Keep original pages completely safe
Tooling
Core WordPress tools
respira_get_site_context
respira_list_plugins
respira_list_pages
respira_list_posts
respira_read_page
respira_read_post
respira_get_builder_info
respira_extract_builder_content
respira_find_builder_targets
respira_create_page_duplicate
respira_create_post_duplicate
respira_update_page
respira_update_post
respira_get_snapshot
respira_restore_snapshot
respira_find_element
respira_update_element
respira_batch_update
Telemetry
After run completion, send fire-and-forget usage tracking to:
POST https://www.respira.press/api/skills/track-usage
Include:
skill_slug = migrate-divi-to-gutenberg
- site/version context
- duration and success
- pages migrated, blocks created, modules flagged counts
- tools used
Never block user flow on telemetry failure.
Related Skills
- WordPress Site DNA (understand site structure and theme dependency before migrating)
- Internal Link Builder (verify internal links post-migration)
- SEO & AEO Amplifier (verify SEO preservation post-migration)
- Technical Debt Audit (find and clean Divi shortcode remnants)
Built by Respira Team
https://respira.press/skills/migrate-divi-to-gutenberg
1---2name: migrate-divi-to-gutenberg3description: Use when the user says 'migrate divi to gutenberg', 'convert divi to blocks', 'get off divi', or 'decommission divi'. Parses Divi shortcodes, maps modules to core blocks, and creates draft duplicates for review.4license: MIT5---67# Migrate Divi to Gutenberg89**Version:** 2.1.010**Updated:** 2026-08-0411**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.1213Converts Divi-built WordPress pages to native Gutenberg blocks. Parses Divi's shortcode-based content from post_content, maps each module to its closest core block equivalent, generates a migration plan for approval, and writes clean block markup to the target pages. Use this skill whenever someone wants to move from Divi to Gutenberg, eliminate the Divi dependency, switch to native blocks, or simplify their WordPress stack by removing Elegant Themes' builder.1415## What This Skill Does1617Divi stores everything as nested shortcodes directly in `post_content` — a fundamentally different approach from JSON-based builders. The content is a hierarchy of `[et_pb_section]`, `[et_pb_row]`, `[et_pb_column]`, and `[et_pb_module]` shortcodes with settings as attributes. Converting this to Gutenberg blocks means parsing that shortcode tree, extracting content and settings, and generating the equivalent `<!-- wp:block -->` markup.1819This is one of the more complex migrations because Divi shortcodes often contain escaped HTML, base64-encoded content, and deeply nested attribute strings that need careful parsing.2021**Handles:**22- et_pb_section → Group block with layout settings23- et_pb_row/et_pb_column → Columns and Column blocks24- et_pb_text → Paragraph blocks (with inline HTML preserved)25- et_pb_blurb → Group block with Image + Heading + Paragraph26- et_pb_image → Image block27- et_pb_button → Buttons block28- et_pb_video → Video or Embed block29- et_pb_divider → Separator block30- et_pb_slider/et_pb_slide → Gallery or Group blocks (simplified)31- et_pb_accordion/et_pb_accordion_item → Details blocks (WP 6.3+)32- et_pb_tabs/et_pb_tab → Group with heading blocks33- et_pb_toggle → Details block (WP 6.3+)34- et_pb_code → Custom HTML block35- et_pb_sidebar → Widget block36- et_pb_gallery → Gallery block37- et_pb_counters → HTML approximation38- Fullwidth variants (et_pb_fullwidth_*) → full-width Group blocks3940**Preserves:**41- All text content and inline HTML formatting42- Image URLs, alt text, and links43- Heading text and hierarchy44- Button labels, URLs, and targets45- Video URLs and embed sources46- List content47- Code block contents48- Basic color settings where Gutenberg supports them4950## What This Skill Does NOT Do5152- **Divi's visual design layer** — Divi applies extensive CSS through its settings (gradient backgrounds, custom fonts from 800+ Google Fonts choices, box shadows with specific blur/spread, text shadow, filters, transforms). Gutenberg supports some of these; many will be simplified or lost.53- **Specialty sections** — Divi's specialty section layouts (sidebar + content combinations) have no direct Gutenberg equivalent.54- **Global modules** — Stored as `et_pb_layout` post type. These are resolved to inline content during migration; Gutenberg reusable blocks can be created manually afterward.55- **Divi Builder plugin modules** — Modules added by Divi-specific plugins (Divi Toolbox, Divi Supreme, etc.) are flagged.56- **Theme customizer settings** — Divi theme customizer values (global fonts, colors, sizing) don't transfer to block themes.57- **Dynamic content** — Divi's dynamic content features need separate solutions.58- **Contact forms** — et_pb_contact_form needs a forms plugin (WPForms, etc.).59- **Divi Library layouts** — Template library layouts stored in et_pb_layout post type are not auto-migrated.60- **Advanced design settings** — Rounded corners, CSS filters, blend modes, and transforms have limited Gutenberg support.6162## Requirements6364- Respira for WordPress plugin installed and connected65- MCP connection active (desktop or WebMCP)66- Divi theme or Divi Builder plugin active (to read source content)67- WordPress 6.0+ (6.3+ recommended for Details block support)68- A block-compatible theme ready for post-migration (if switching from Divi theme)69- Read access to scan Divi content70- Write access to create duplicates with Gutenberg content7172## Trigger Phrase7374- "migrate divi to gutenberg"7576## Alternative Triggers7778- "convert divi to blocks"79- "switch from divi to gutenberg"80- "remove divi builder"81- "rebuild divi pages with blocks"82- "divi to block editor"83- "decommission divi"84- "get off divi"8586## Source Builder: Divi8788Divi stores content as shortcodes in `post_content`. The module structure follows a strict hierarchy:8990```91[et_pb_section fb_built="1" _builder_version="4.x"]92 [et_pb_row _builder_version="4.x"]93 [et_pb_column type="4_4" _builder_version="4.x"]94 [et_pb_text _builder_version="4.x"]95 <p>Your content here</p>96 [/et_pb_text]97 [et_pb_image src="image.jpg" alt="Alt text" _builder_version="4.x"][/et_pb_image]98 [et_pb_button button_text="Click Me" button_url="https://..." _builder_version="4.x"][/et_pb_button]99 [/et_pb_column]100 [/et_pb_row]101[/et_pb_section]102```103104Key Divi specifics:105- **Section types**: regular, fullwidth, specialty (with predefined column layouts)106- **Column types**: defined by `type` attribute — `4_4` (full), `1_2` (half), `1_3` (third), `2_3` (two-thirds), `1_4` (quarter), `3_4` (three-quarters)107- **Settings as attributes**: `background_color`, `text_orientation`, `custom_margin`, `custom_padding`, etc.108- **Builder version tracking**: `_builder_version` attribute on every element109- **Content encoding**: Text content may contain escaped HTML entities, newline placeholders (`%22`, `%91`, `%93`), and occasional base64110- **Global modules**: Referenced via `global_module` attribute pointing to an `et_pb_layout` post111- **Custom CSS fields**: `custom_css_main_element`, `custom_css_before`, `custom_css_after` attributes112113Read Divi content via `respira_extract_builder_content` with `builder=divi`.114115## Target: Gutenberg (Block Editor)116117Gutenberg stores content in `post_content` as HTML with block comment delimiters:118119```html120<!-- wp:group {"layout":{"type":"constrained"}} -->121<div class="wp-block-group">122 <!-- wp:heading {"level":2} -->123 <h2 class="wp-block-heading">Title Here</h2>124 <!-- /wp:heading -->125 <!-- wp:paragraph -->126 <p>Content text.</p>127 <!-- /wp:paragraph -->128</div>129<!-- /wp:group -->130```131132Key Gutenberg specifics:133- Block attributes in opening comment JSON134- Layout blocks: `wp:group`, `wp:columns`, `wp:column`135- Inline styles via `style` attribute in block JSON136- Columns use percentage widths137- Everything lives in `post_content` — no separate meta138139Write Gutenberg content via `respira_update_page` or `respira_update_post` targeting the `content` field.140141## Execution Workflow142143### Phase 1: Pre-Migration Audit1441451. Verify Respira + MCP connection via `respira_get_site_context`. If unavailable, stop and show setup guidance.1462. Confirm Divi is active (theme or plugin) via `respira_list_plugins` and `respira_get_site_context`.1473. Check WordPress version (6.0+ required, 6.3+ ideal).1484. **Important**: If using Divi theme (not just plugin), note that the user will need an alternative theme post-migration.1495. Scan and scope all Divi content:150 - `respira_list_pages` and `respira_list_posts` — identify all content151 - `respira_find_builder_targets` with `builder=divi` — inventory the Divi-managed pages to scope the migration152 - Confirm the builder per page via `respira_get_builder_info`1536. For each Divi page, extract content via `respira_extract_builder_content` with `builder=divi`1547. Build an inventory:155 - Total pages/posts using Divi156 - Module types used (frequency count)157 - Specialty sections detected (high complexity)158 - Global modules referenced159 - Third-party Divi modules160 - Content encoding issues found161 - Complexity per page (simple/moderate/complex)162163### Phase 2: Migration Plan164165Present a plan that sets realistic expectations:166167```168## Divi → Gutenberg Migration Plan169170### Important Context171Divi and Gutenberg have very different design philosophies. Divi offers172extensive visual customization through its settings panel; Gutenberg173prioritizes clean, semantic content. Expect simpler but faster-loading pages.174175If you are using the Divi theme (not just the plugin), you will need a176block-compatible theme (e.g., Twenty Twenty-Four, Astra, Kadence).177178### Site Inventory179- Total Divi pages: X180- Total modules to convert: X181- Direct equivalents: X (Y%)182- Approximate equivalents: X (Y%)183- Manual recreation needed: X (Y%)184185### Module Mapping Summary186| Divi Module | Gutenberg Block | Fidelity |187|------------------|-----------------|--------------|188| et_pb_text | wp:paragraph | Exact |189| et_pb_image | wp:image | Exact |190| et_pb_blurb | wp:group combo | Approximate |191| et_pb_slider | wp:group/gallery| Simplified |192| et_pb_contact | — | Manual |193194### Shortcode Parsing Notes195- [Any encoding issues found]196- [Specialty sections that need layout interpretation]197- [Global modules that will be inlined]198199### Page-by-Page Plan2001. **[Page Title]** — X modules, [complexity]2012. ...202```203204Ask for confirmation:205> Divi → Gutenberg is a significant simplification. Pages will be cleaner but less visually elaborate.206> 1. Migrate all pages207> 2. Migrate specific pages208> 3. Start with a test page (strongly recommended)209> 4. Just keep this plan210211### Phase 3: Page-by-Page Migration212213For each approved page:2142151. Read full Divi content via `respira_extract_builder_content` with `builder=divi`2162. Parse the Divi shortcode tree:217 - Identify section/row/column hierarchy218 - Decode any encoded content (HTML entities, percent-encoding)219 - Resolve global module references to inline content2203. Map each module:221 - `et_pb_section` → `<!-- wp:group -->` (with full-width if fullwidth section)222 - `et_pb_row` + `et_pb_column` → `<!-- wp:columns -->` + `<!-- wp:column {"width":"X%"} -->`223 - Column type mapping: `4_4`→100%, `1_2`→50%, `1_3`→33.33%, `2_3`→66.66%, `1_4`→25%, `3_4`→75%224 - `et_pb_text` → `<!-- wp:paragraph -->` (or multiple blocks if content has headings)225 - `et_pb_blurb` → Group containing Image + Heading + Paragraph226 - `et_pb_image` → `<!-- wp:image -->`227 - `et_pb_button` → `<!-- wp:buttons --><!-- wp:button -->`228 - Map background colors to Group block style attributes229 - Flag unmappable modules with `<!-- MIGRATION NOTE: ... -->`2304. Assemble complete block markup2315. Take a `respira_get_snapshot` checkpoint of the target before any write, so the page can be restored exactly if the conversion needs unwinding2326. Create duplicate via `respira_create_page_duplicate` or `respira_create_post_duplicate`2337. Write the block markup to the duplicate via `respira_update_page` or `respira_update_post`2348. Surgical fixes (not a rewrite): when a single block lands wrong — a heading, a button label, a column width — locate it with `respira_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.2359. Report: modules converted, items flagged, layout changes made236237### Phase 4: Post-Migration Verification2382391. Summarize all migrations240 - Design tokens registered in the block editor's global styles (token names and counts)2412. For each migrated page:242 - Link to edit in Gutenberg243 - Flagged items244 - Layout simplification notes2453. Post-migration checklist:246 - [ ] Open each duplicate in block editor — verify blocks parse correctly247 - [ ] Check responsive preview248 - [ ] Verify all images and media249 - [ ] Test links and buttons250 - [ ] Recreate forms with a dedicated forms plugin251 - [ ] Recreate sliders if needed (or use a block-based slider)252 - [ ] Plan theme switch if on Divi theme (do this after all pages are verified)253 - [ ] Check page speed improvement254 - [ ] Review for Divi shortcode remnants in content255256## Design Tokens257258Conversion 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.259260## Safety Model261262- Read-only analysis first — full content scan before any changes263- Explicit user confirmation required before creating duplicates264- Original Divi pages are never modified or deleted265- All migrated content goes to draft duplicates only266- Never auto-publishes migrated pages267- Takes a `respira_get_snapshot` checkpoint before each write268- Explicit rollback: restore the snapshot via `respira_restore_snapshot`, or delete the draft duplicates if they are not wanted269- Warns about theme dependency if using Divi theme270271## Honest Disclaimer272273This skill converts Divi page content to Gutenberg blocks and creates draft duplicates for review.274275It cannot:276- Replicate Divi's visual design precision in Gutenberg277- Convert specialty section layouts perfectly278- Migrate contact forms, sliders, or animations279- Handle third-party Divi plugin modules280- Switch your theme for you (if on Divi theme)281- Replace manual review and fine-tuning282283It can:284- Convert 60-75% of standard Divi modules to clean blocks285- Extract all text, images, and links from shortcode markup286- Eliminate Divi dependency for simpler pages287- Dramatically improve page load speed288- Parse complex Divi shortcode encoding289- Provide a clear map of manual work needed290- Keep original pages completely safe291292## Tooling293294**Core WordPress tools**295- `respira_get_site_context`296- `respira_list_plugins`297- `respira_list_pages`298- `respira_list_posts`299- `respira_read_page`300- `respira_read_post`301- `respira_get_builder_info`302- `respira_extract_builder_content`303- `respira_find_builder_targets`304- `respira_create_page_duplicate`305- `respira_create_post_duplicate`306- `respira_update_page`307- `respira_update_post`308- `respira_get_snapshot`309- `respira_restore_snapshot`310- `respira_find_element`311- `respira_update_element`312- `respira_batch_update`313314## Telemetry315316After run completion, send fire-and-forget usage tracking to:317318- `POST https://www.respira.press/api/skills/track-usage`319320Include:321- `skill_slug = migrate-divi-to-gutenberg`322- site/version context323- duration and success324- pages migrated, blocks created, modules flagged counts325- tools used326327Never block user flow on telemetry failure.328329## Related Skills330331- WordPress Site DNA (understand site structure and theme dependency before migrating)332- Internal Link Builder (verify internal links post-migration)333- SEO & AEO Amplifier (verify SEO preservation post-migration)334- Technical Debt Audit (find and clean Divi shortcode remnants)335336---337338Built by Respira Team339https://respira.press/skills/migrate-divi-to-gutenberg