Source profileQuality 97/100

respira-press/agent-skills-wordpress/skills/migrate-wpbakery-to-gutenberg/SKILL.md

migrate-wpbakery-to-gutenberg

Use when the user says 'migrate wpbakery to gutenberg', 'remove wpbakery', 'get rid of visual composer', or 'decommission wpbakery'. Parses WPBakery shortcodes, maps elements to core blocks, and creates draft duplicates for review.

Source repository stars
42
Declared platforms
0
Static risk flags
0
Last source update
2026-08-27
Source checked
2026-08-28

Decision brief

What it does: where it fits

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…

Best for

  • Use when the user says 'migrate wpbakery to gutenberg', 'remove wpbakery', 'get rid of visual composer', or 'decommission wpbakery'.

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/respira-press/agent-skills-wordpress --skill "skills/migrate-wpbakery-to-gutenberg"
Safe inspection promptEditorial

Inspect the Agent Skill "migrate-wpbakery-to-gutenberg" from https://github.com/respira-press/agent-skills-wordpress/blob/5d1da85c853404519229c5514df332b54031304c/skills/migrate-wpbakery-to-gutenberg/SKILL.md at commit 5d1da85c853404519229c5514df332b54031304c. 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

What the source asks the agent to do

  1. 01

    Execution Workflow

    1. Verify Respira + MCP connection via respiragetsitecontext. If unavailable, stop and show setup guidance. 2. Confirm WPBakery is active via respiralistplugins. 3. Check WordPress version (6.0+ required, 6.3+ ideal). 4. Identify active theme — note if it bundles WPBakery and ad…

    Verify Respira + MCP connection via respiragetsitecontext. If unavailable, stop and show setup guidance.Confirm WPBakery is active via respiralistplugins.Check WordPress version (6.0+ required, 6.3+ ideal).
  2. 02

    Phase 1: Pre-Migration Audit

    1. Verify Respira + MCP connection via respiragetsitecontext. If unavailable, stop and show setup guidance. 2. Confirm WPBakery is active via respiralistplugins. 3. Check WordPress version (6.0+ required, 6.3+ ideal). 4. Identify active theme — note if it bundles WPBakery and ad…

    Verify Respira + MCP connection via respiragetsitecontext. If unavailable, stop and show setup guidance.Confirm WPBakery is active via respiralistplugins.Check WordPress version (6.0+ required, 6.3+ ideal).
  3. 03

    Phase 2: Migration Plan

    Review the “Phase 2: Migration Plan” section in the pinned source before continuing.

    Review and apply the “Phase 2: Migration Plan” source section.
  4. 04

    Phase 3: Page-by-Page Migration

    1. Read WPBakery content via respiraextractbuildercontent with builder=wpbakery 2. Parse the shortcode tree: - Identify vcrow → vccolumn → element hierarchy - Decode CSS from Design Options attribute - Decode link URLs from WPBakery's percent-encoding format - Handle vcrowinner/…

    Read WPBakery content via respiraextractbuildercontent with builder=wpbakeryParse the shortcode tree:Identify vcrow → vccolumn → element hierarchy
  5. 05

    Phase 4: Post-Migration Verification

    1. Summarize all migrations - Design tokens registered in the block editor's global styles (token names and counts) 2. For each migrated page: - Link to edit in Gutenberg - Flagged items - Design Options settings that were simplified 3. Post-migration checklist: - [ ] Open each…

    Summarize all migrationsDesign tokens registered in the block editor's global styles (token names and counts)For each migrated page:

Permission review

Static risk signals and limitations

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

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score97/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars42SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
respira-press/agent-skills-wordpress
Skill path
skills/migrate-wpbakery-to-gutenberg/SKILL.md
Commit
5d1da85c853404519229c5514df332b54031304c
License
MIT
Collected
2026-08-28
Default branch
main
View the original SKILL.md

Migrate WPBakery 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 WPBakery Page Builder (formerly Visual Composer) pages to native Gutenberg blocks. Parses WPBakery's shortcode-based content from post_content, maps each element 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 WPBakery to Gutenberg, eliminate the WPBakery dependency, switch to native blocks, or modernize an older WordPress site still running WPBakery.

What This Skill Does

WPBakery is one of the oldest and most widely-installed WordPress page builders — millions of sites still run it. It stores content as shortcodes in post_content using the [vc_*] prefix. The good news: WPBakery's shortcode structure is relatively straightforward compared to Divi's encoding complexities. The challenge: many WPBakery sites are older and may use deprecated elements, custom shortcodes from themes, or VC-specific plugins that add nonstandard elements.

This skill parses the WPBakery shortcode tree, extracts content and settings, and generates equivalent Gutenberg blocks. The result is clean, modern WordPress content free from shortcode dependencies.

Handles:

  • vc_row/vc_column → Columns and Column blocks
  • vc_column_text → Paragraph blocks (preserving HTML)
  • vc_single_image → Image block
  • vc_btn/vc_button → Buttons block
  • vc_video → Video or Embed block
  • vc_separator/vc_text_separator → Separator block
  • vc_empty_space → Spacer block
  • vc_row_inner/vc_column_inner → nested Columns blocks
  • vc_custom_heading → Heading block
  • vc_gallery/vc_images_carousel → Gallery block
  • vc_toggle → Details block (WP 6.3+)
  • vc_accordion/vc_accordion_tab → Group with Details blocks
  • vc_tabs/vc_tab → Group blocks with headings
  • vc_raw_html/vc_raw_js → Custom HTML block
  • vc_icon → Paragraph with icon (or HTML block)
  • vc_gmaps → Custom HTML block with embed
  • vc_progress_bar → HTML approximation
  • vc_wp_* widgets → corresponding WordPress widget blocks

Preserves:

  • All text content and HTML formatting within vc_column_text
  • Image URLs, alt text, link targets
  • Heading text and hierarchy
  • Button labels, URLs, and basic styles
  • Video embed URLs
  • Gallery image collections
  • Code/HTML block contents
  • CSS classes applied via el_class attribute
  • Custom element IDs via el_id attribute

What This Skill Does NOT Do

  • Theme-bundled WPBakery elements — Many themes add custom WPBakery elements (portfolio grids, team members, testimonial carousels, etc.). These are theme-specific and cannot be auto-mapped. They are flagged for manual recreation.
  • WPBakery addons — Ultimate Addons for WPBakery, Starter Templates, etc. add proprietary shortcodes that are flagged, not converted.
  • vc_grid/vc_masonry_grid — Post grid elements with complex query settings need manual recreation using Query Loop block or a posts plugin.
  • Design options — WPBakery's Design Options panel (accessed via css attribute containing encoded CSS) stores background, border, padding as a single encoded string. Basic properties are extracted; complex combinations may be simplified.
  • Frontend editor layouts — Some WPBakery designs rely on the frontend editor's pixel-precise positioning which has no block equivalent.
  • WooCommerce elements — vc_wp_product, cart, and checkout elements need WooCommerce blocks.
  • Revolution Slider, Layer Slider — Often bundled with WPBakery themes but are separate plugins.
  • Templates — WPBakery saved templates are not migrated as reusable blocks automatically.

Requirements

  • Respira for WordPress plugin installed and connected
  • MCP connection active (desktop or WebMCP)
  • WPBakery Page Builder plugin active (to ensure shortcodes render/parse)
  • WordPress 6.0+ (6.3+ recommended for Details block)
  • A block-compatible theme (often needed since WPBakery sites tend to run older themes)
  • Read access to scan WPBakery content
  • Write access to create duplicates with Gutenberg content

Trigger Phrase

  • "migrate wpbakery to gutenberg"

Alternative Triggers

  • "convert wpbakery to blocks"
  • "switch from wpbakery to gutenberg"
  • "migrate visual composer to gutenberg"
  • "remove wpbakery"
  • "rebuild wpbakery pages with blocks"
  • "wpbakery to block editor"
  • "decommission wpbakery"
  • "get rid of visual composer"

Source Builder: WPBakery

WPBakery stores content as shortcodes in post_content:

[vc_row full_width="stretch_row" css=".vc_custom_123{padding-top:40px}"]
  [vc_column width="1/2" el_class="my-class"]
    [vc_column_text]
      <h2>Welcome</h2>
      <p>Content with <strong>formatting</strong>.</p>
    [/vc_column_text]
    [vc_single_image image="456" img_size="large" alignment="center"]
  [/vc_column]
  [vc_column width="1/2"]
    [vc_btn title="Learn More" style="flat" color="primary" link="url:https%3A%2F%2Fexample.com"]
  [/vc_column]
[/vc_row]

Key WPBakery specifics:

  • Row/column structure: [vc_row][vc_column width="1/2"] → elements
  • Column widths as fractions: 1/1, 1/2, 1/3, 2/3, 1/4, 3/4, 1/6, 5/6
  • Inner rows: [vc_row_inner][vc_column_inner] for nested layouts
  • CSS attribute: Encoded CSS from Design Options panel — e.g., css=".vc_custom_12345{background-color:#f5f5f5;padding:20px}"
  • Link encoding: URLs in button/link elements use percent-encoding — url:https%3A%2F%2F...||target:_blank
  • Full-width modes: full_width attribute: stretch_row, stretch_row_content, stretch_row_content_no_spaces
  • Element classes: el_class for custom CSS classes, el_id for IDs
  • Templates: Saved as separate post type, referenced by ID

Read WPBakery content via respira_extract_builder_content with builder=wpbakery.

Target: Gutenberg (Block Editor)

Gutenberg stores content in post_content as HTML with block delimiters:

<!-- wp:columns -->
<div class="wp-block-columns">
  <!-- wp:column {"width":"50%"} -->
  <div class="wp-block-column" style="flex-basis:50%">
    <!-- wp:heading {"level":2} -->
    <h2 class="wp-block-heading">Welcome</h2>
    <!-- /wp:heading -->
    <!-- wp:paragraph -->
    <p>Content with <strong>formatting</strong>.</p>
    <!-- /wp:paragraph -->
  </div>
  <!-- /wp:column -->
</div>
<!-- /wp:columns -->

Key Gutenberg specifics:

  • Block attributes in opening comment JSON
  • Column widths as percentages
  • Inline styles via style attribute
  • Everything in post_content

Write Gutenberg content via respira_update_page or respira_update_post targeting the content field.

Execution Workflow

Phase 1: Pre-Migration Audit

  1. Verify Respira + MCP connection via respira_get_site_context. If unavailable, stop and show setup guidance.
  2. Confirm WPBakery is active via respira_list_plugins.
  3. Check WordPress version (6.0+ required, 6.3+ ideal).
  4. Identify active theme — note if it bundles WPBakery and adds custom elements.
  5. Scan and scope all WPBakery content:
    • respira_list_pages and respira_list_posts — identify all content
    • respira_find_builder_targets with builder=wpbakery — inventory the WPBakery-managed pages to scope the migration
    • Confirm the builder per page via respira_get_builder_info
  6. Extract WPBakery content via respira_extract_builder_content with builder=wpbakery
  7. Build inventory:
    • Total pages/posts using WPBakery
    • Element types used (frequency count)
    • Theme-specific custom elements (flagged)
    • Third-party addon elements (flagged)
    • vc_grid/masonry elements (flagged)
    • Design Options CSS complexity
    • Complexity per page (simple/moderate/complex)
    • Encoded links that need decoding

Phase 2: Migration Plan

## WPBakery → Gutenberg Migration Plan

### Site Context
WPBakery sites are often older WordPress installations. Consider this migration
as a modernization opportunity — not just a builder swap.

### Theme Note
[If theme bundles WPBakery]: Your theme ([theme name]) bundles WPBakery
and likely adds custom elements. These theme-specific elements (X found)
will need manual recreation. Consider whether this theme should also
be updated to a modern block theme.

### Site Inventory
- Total WPBakery pages: X
- Total elements to convert: X
- Direct block equivalents: X (Y%)
- Approximate equivalents: X (Y%)
- Manual recreation needed: X (Y%)

### Element Mapping Summary
| WPBakery Element    | Gutenberg Block  | Fidelity  |
|--------------------|-----------------|-----------|
| vc_column_text     | wp:paragraph    | Exact     |
| vc_single_image    | wp:image        | Exact     |
| vc_custom_heading  | wp:heading      | Exact     |
| vc_btn             | wp:buttons      | Close     |
| vc_row/vc_column   | wp:columns      | Close     |
| vc_gallery         | wp:gallery      | Close     |
| vc_toggle          | wp:details      | Close     |
| vc_grid            | wp:query        | Manual    |
| [theme element]    | —               | Manual    |

### Design Options Analysis
- Pages with simple Design Options: X (colors and padding — auto-mapped)
- Pages with complex Design Options: X (gradients, borders — partially mapped)

### Page-by-Page Plan
1. **[Page Title]** — X elements, [complexity]
2. ...

Ask for confirmation:

WPBakery → Gutenberg is a modernization step. Pages will be cleaner and faster.

  1. Migrate all pages
  2. Migrate specific pages
  3. Start with a test page (recommended for sites with theme-bundled elements)
  4. Just keep this plan

Phase 3: Page-by-Page Migration

For each approved page:

  1. Read WPBakery content via respira_extract_builder_content with builder=wpbakery
  2. Parse the shortcode tree:
    • Identify vc_row → vc_column → element hierarchy
    • Decode CSS from Design Options attribute
    • Decode link URLs from WPBakery's percent-encoding format
    • Handle vc_row_inner/vc_column_inner nesting
  3. Map each element:
    • vc_row<!-- wp:columns --> (check full_width for alignment)
    • vc_column<!-- wp:column {"width":"X%"} --> (convert fractions: 1/2→50%, 1/3→33.33%, etc.)
    • vc_column_text → Parse inner HTML, split into appropriate blocks:
      • <h2><!-- wp:heading {"level":2} -->
      • <p><!-- wp:paragraph -->
      • <ul>/<ol><!-- wp:list -->
    • vc_single_image<!-- wp:image {"id":N,"sizeSlug":"large"} -->
    • vc_btn<!-- wp:buttons --> (decode URL, map style/color)
    • vc_custom_heading<!-- wp:heading --> (extract tag, text, alignment)
    • Map Design Options CSS to block style attributes where possible
    • Apply el_class as className in block attributes
    • Apply el_id as anchor in block attributes
    • Flag unmappable elements with <!-- MIGRATION NOTE: ... -->
  4. Assemble block markup
  5. Take a respira_get_snapshot checkpoint of the target before any write, so the page can be restored exactly if the conversion needs unwinding
  6. Create duplicate via respira_create_page_duplicate or respira_create_post_duplicate
  7. Write the block markup to the duplicate via respira_update_page or respira_update_post
  8. 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.
  9. Report: elements converted, flagged, layout notes

Phase 4: Post-Migration Verification

  1. Summarize all migrations
    • Design tokens registered in the block editor's global styles (token names and counts)
  2. For each migrated page:
    • Link to edit in Gutenberg
    • Flagged items
    • Design Options settings that were simplified
  3. Post-migration checklist:
    • Open each duplicate in block editor — verify all blocks are valid
    • Check that vc_column_text HTML parsed into correct block types
    • Verify images (check that image IDs still resolve)
    • Test all buttons (decoded URLs working correctly)
    • Check responsive preview
    • Recreate theme-bundled custom elements manually
    • Set up any needed block patterns for repeated layouts
    • Consider theme modernization if using an older WPBakery-bundled theme
    • Test page speed (expect significant improvement)
    • Search for any remaining vc_ shortcode remnants

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 WPBakery 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-bundled element dependencies

Honest Disclaimer

This skill converts WPBakery page content to Gutenberg blocks and creates draft duplicates for review.

It cannot:

  • Convert theme-specific custom WPBakery elements
  • Migrate WPBakery addon plugin elements
  • Perfectly translate complex Design Options CSS
  • Convert post grids (vc_grid) to Query Loop automatically
  • Handle Revolution Slider or other bundled plugins
  • Replace visual review and manual adjustment

It can:

  • Convert 70-85% of standard WPBakery elements to clean blocks
  • Parse and decode WPBakery's URL encoding and CSS attributes
  • Handle nested row/column structures including inner rows
  • Split vc_column_text HTML into proper individual blocks
  • Dramatically reduce page weight and load time
  • Modernize older WordPress sites
  • 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-wpbakery-to-gutenberg
  • site/version context
  • duration and success
  • pages migrated, blocks created, elements flagged counts
  • tools used

Never block user flow on telemetry failure.

Related Skills

  • WordPress Site DNA (audit site structure and theme before modernizing)
  • Internal Link Builder (verify links post-migration)
  • SEO & AEO Amplifier (verify SEO post-migration)
  • Technical Debt Audit (find WPBakery shortcode remnants and outdated theme code)

Built by Respira Team https://respira.press/skills/migrate-wpbakery-to-gutenberg

Frequently asked questions

What to verify before installation and use

What does the migrate-wpbakery-to-gutenberg source document cover?

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…

How do I install migrate-wpbakery-to-gutenberg?

The source record exposes this install command: npx skills add https://github.com/respira-press/agent-skills-wordpress --skill "skills/migrate-wpbakery-to-gutenberg". Inspect the command and pinned source before running it.

Alternatives

Compare before choosing

Computed 10045,960

coreyhaines31/marketingskills

ab-testing

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

Computed 10045,960

coreyhaines31/marketingskills

churn-prevention

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

Computed 10014,706

prowler-cloud/prowler

postgresql-indexing

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

Computed 1008

narrative-io/narrative-skills-marketplace

design-analysis

Translate a fuzzy analytical question into a rigorous investigation plan. Interrogates the ask, grounds the plan in the available data dictionary, applies analytical best practices, and produces a structured brief of query specifications for a downstream query-writing skill. Plans, does not write SQL. Use when: "why did X drop", "is there a relationship between A and B", "who are our highest-value customers", "what's driving the change in Y", "investigate this trend", "design an analysis for", "