Best for
- Use when the user says 'migrate divi to bricks', 'convert divi to bricks', or 'rebuild divi pages in bricks'.
respira-press/agent-skills-wordpress/skills/migrate-divi-to-bricks/SKILL.md
Use when the user says 'migrate divi to bricks', 'convert divi to bricks', or 'rebuild divi pages in bricks'. Parses Divi shortcode content, maps modules to Bricks elements, and generates 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 Bricks' own global styles, and converted pages reference those tokens instead of carrying value c…
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-divi-to-bricks"Inspect the Agent Skill "migrate-divi-to-bricks" from https://github.com/respira-press/agent-skills-wordpress/blob/10821eaabe362fe9052f6ee81ecdd62e5d2f2980/skills/migrate-divi-to-bricks/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. Confirm Divi is active via respiralistplugins and respiragetsitecontext. 3. Confirm Bricks theme is installed via respiragetsitecontext. 4. Important: If using Divi the…
1. Verify Respira + MCP connection via respiragetsitecontext. If unavailable, stop and show setup guidance. 2. Confirm Divi is active via respiralistplugins and respiragetsitecontext. 3. Confirm Bricks theme is installed via respiragetsitecontext. 4. Important: If using Divi the…
Review the “Phase 2: Migration Plan” section in the pinned source before continuing.
1. Read Divi content via respiraextractbuildercontent with builder=divi 2. Parse the shortcode tree: - Identify section → row → column → module hierarchy - Decode encoded content (HTML entities, percent-encoding) - Resolve global modules to inline content - Map column types to p…
1. Summarize migrations: - Design tokens registered in Bricks' global styles (token names and counts) - Pages migrated, elements created, items flagged 2. For each migrated page: - Link to Bricks editor - Flagged items - Layout notes (specialty sections, encoded content) 3. Post…
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 | 92/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 Bricks' 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 Bricks Builder. Parses Divi's shortcode-based content from post_content, maps each module to its Bricks element equivalent, generates a migration plan for approval, and writes clean Bricks JSON to the target pages. Use this skill whenever someone wants to move from Divi to Bricks, replace the Divi Builder with Bricks, or rebuild Divi pages in Bricks.
This is a cross-format migration — Divi stores content as nested shortcodes in post_content, while Bricks uses a JSON array in _bricks_page_content_2. The skill must parse Divi's shortcode hierarchy, understand each module's purpose and settings, then reconstruct that intent as Bricks elements with proper parent-child relationships and settings.
The format gap makes this complex, but both builders are feature-rich visual editors, so most Divi modules have strong Bricks equivalents. The result is cleaner, faster-rendering content in Bricks' modern architecture.
Handles:
Preserves:
et_pb_layout post type) are resolved to inline content. Bricks templates must be set up separately.et_pb_layout post type; not auto-migrated to Bricks templates.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>Content here</p>
[/et_pb_text]
[/et_pb_column]
[/et_pb_row]
[/et_pb_section]
Key Divi specifics:
4_4, 1_2, 1_3, 2_3, 1_4, 3_4background_color, custom_margin, custom_padding, text_orientationglobal_module attribute → et_pb_layout post typecustom_css_main_element, custom_css_before, custom_css_afterRead Divi content via respira_extract_builder_content with builder=divi.
Bricks stores content in _bricks_page_content_2 as a JSON array:
[
{ "id": "abc123", "name": "section", "parent": 0, "settings": {...} },
{ "id": "def456", "name": "container", "parent": "abc123", "settings": {...} },
{ "id": "ghi789", "name": "heading", "parent": "def456", "settings": { "tag": "h2", "text": "..." } }
]
Key Bricks specifics:
name field: section, container, heading, text-basic, image, buttonparent field referencing id_breakpoints within settingsWrite Bricks content via respira_inject_builder_content with builder=bricks.
respira_get_site_context. If unavailable, stop and show setup guidance.respira_list_plugins and respira_get_site_context.respira_get_site_context.respira_list_pages and respira_list_posts — identify all contentrespira_find_builder_targets with builder=divi — inventory the Divi-managed pages to scope the migrationrespira_get_builder_inforespira_extract_builder_content with builder=divi## Divi → Bricks Migration Plan
### Theme Transition Note
[If Divi theme is active]: This migration involves switching from the Divi
theme to the Bricks theme. Headers, footers, and global templates will need
to be recreated in Bricks' template system.
### Site Inventory
- Total Divi pages: X
- Total modules to convert: X
- Auto-convertible: X (Y%)
- Manual attention: X (Y%)
### Module → Element Mapping
| Divi Module | Bricks Element | Status |
|-------------------|----------------|----------|
| et_pb_text | text-basic | Auto |
| et_pb_image | image | Auto |
| et_pb_blurb | icon-box | Auto |
| et_pb_button | button | Auto |
| et_pb_slider | slider | Auto |
| et_pb_tabs | tabs | Auto |
| et_pb_accordion | accordion | Auto |
| et_pb_contact | — | Manual |
| [divi addon] | — | Manual |
### Shortcode Parsing Complexity
- Pages with clean shortcodes: X
- Pages with encoded content: X (will decode during migration)
- Pages with specialty sections: X (layout approximation needed)
### Page-by-Page Plan
1. **[Page Title]** — X modules, [complexity]
2. ...
Ask for confirmation:
Bricks offers a modern replacement for Divi with cleaner output. Your originals stay safe.
- Migrate all pages
- Migrate specific pages
- Start with a test page (recommended)
- Just keep this plan
For each approved page:
respira_extract_builder_content with builder=divisection element for each et_pb_sectioncontainer elements for rows/columns with flex layout4_4→100%, 1_2→50%, 1_3→33.33%, etc.et_pb_text → text-basic (preserve inner HTML)et_pb_blurb → icon-box or container with childrenet_pb_image → image (map src, alt, title attributes)et_pb_button → button (map text, URL, style)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_duplicaterespira_inject_builder_content with builder=bricksrespira_find_element and correct it in place with respira_update_element. For repeated corrections across many elements or several migrated pages, batch them with respira_batch_update rather than re-injecting whole pages.Conversion writes now register the colors and typography they carry as named design tokens in Bricks' 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 checkpoint before each writerespira_restore_snapshot, or delete the draft duplicates if they are not wantedThis skill converts Divi page content to Bricks format and creates draft duplicates for review.
It cannot:
It can:
Core WordPress tools
respira_get_site_contextrespira_list_pluginsrespira_list_pagesrespira_list_postsrespira_read_pagerespira_read_postrespira_get_builder_inforespira_extract_builder_contentrespira_inject_builder_contentrespira_find_builder_targetsrespira_create_page_duplicaterespira_create_post_duplicaterespira_get_snapshotrespira_restore_snapshotrespira_find_elementrespira_update_elementrespira_batch_updateAfter run completion, send fire-and-forget usage tracking to:
POST https://www.respira.press/api/skills/track-usageInclude:
skill_slug = migrate-divi-to-bricksNever block user flow on telemetry failure.
Built by Respira Team https://respira.press/skills/migrate-divi-to-bricks
Alternatives
coreyhaines31/marketingskills
When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," "how long should I run this test," "growth experiments," "experiment velocity," "experiment backlog," "ICE score," "experimentation program
coreyhaines31/marketingskills
When the user wants to reduce churn, build cancellation flows, set up save offers, recover failed payments, or implement retention strategies. Also use when the user mentions 'churn,' 'cancel flow,' 'offboarding,' 'save offer,' 'dunning,' 'failed payment recovery,' 'win-back,' 'retention,' 'exit survey,' 'pause subscription,' 'involuntary churn,' 'people keep canceling,' 'churn rate is too high,' 'how do I keep users,' or 'customers are leaving.' Use this whenever someone is losing subscribers o
prowler-cloud/prowler
PostgreSQL indexing best practices for Prowler: index design, partial indexes, partitioned table indexing, EXPLAIN ANALYZE validation, concurrent operations, monitoring, and maintenance. Trigger: When creating or modifying PostgreSQL indexes, analyzing query performance with EXPLAIN, debugging slow queries, reviewing index usage statistics, reindexing, dropping indexes, or working with partitioned table indexes. Also trigger when discussing index strategies, partial indexes, or index maintenance
JasonColapietro/suede-creator-skills
Suede-owned experimentation discipline for hypotheses, sample sizing, test duration, significance, and repeatable experiment programs. Use when comparing variants, deciding whether a result is reliable, or building an experiment backlog and cadence. NOT FOR: analytics instrumentation (use suede-analytics), post-click conversion diagnosis (use suede-site-alchemy), or writing the variant copy itself (use suede-copy).