Migrate WPBakery to Bricks
Converts WPBakery Page Builder pages to Bricks Builder. Parses WPBakery's shortcode-based content from post_content, maps each element to its Bricks 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 WPBakery to Bricks, modernize an older WPBakery site with Bricks, or switch page builders from WPBakery/Visual Composer to Bricks.
What This Skill Does
WPBakery is one of the most common legacy page builders — it comes bundled with thousands of ThemeForest themes and millions of sites still use it. Moving to Bricks is a significant modernization: from shortcode-based content in post_content to clean JSON in _bricks_page_content_2, from heavy frontend CSS/JS to Bricks' lightweight rendering, and from an aging interface to a modern visual editor.
This skill handles the format translation — parsing WPBakery's [vc_*] shortcodes, decoding its URL encoding and Design Options CSS, and generating proper Bricks JSON with correct element hierarchies and settings.
Handles:
- vc_row/vc_column → Bricks Section/Container elements
- vc_column_text → Bricks Text Basic element (parsed for headings, paragraphs)
- vc_single_image → Bricks Image element
- vc_btn/vc_button → Bricks Button element
- vc_video → Bricks Video element
- vc_separator → Bricks Divider element
- vc_empty_space → Bricks spacing (via container padding or dedicated spacer)
- vc_custom_heading → Bricks Heading element
- vc_gallery/vc_images_carousel → Bricks Gallery/Carousel element
- vc_toggle → Bricks Accordion item
- vc_accordion → Bricks Accordion element
- vc_tabs → Bricks Tabs element
- vc_raw_html/vc_raw_js → Bricks Code element
- vc_icon → Bricks Icon element
- vc_gmaps → Bricks Map element
- vc_progress_bar → Bricks Progress Bar element
- vc_row_inner/vc_column_inner → nested Bricks containers
- Design Options CSS → Bricks settings (background, padding, border)
- el_class/el_id → Bricks custom CSS classes and attributes
Preserves:
- All text content and HTML formatting
- Image URLs, alt text, captions
- Typography where explicitly set
- Color values from Design Options
- Spacing from Design Options
- Background colors and images
- Button labels, URLs, targets
- Video embed URLs
- Gallery image sets
- CSS classes (el_class) and IDs (el_id)
What This Skill Does NOT Do
- Theme-bundled custom elements — Many ThemeForest themes add custom WPBakery elements (team member, portfolio, testimonial, pricing, etc.). These are theme-specific shortcodes with no Bricks equivalent. They are flagged for manual recreation.
- WPBakery addons — Ultimate Addons for WPBakery, Starter Templates, Starter Sites, and other addon plugins add proprietary elements that cannot be auto-mapped.
- vc_grid/vc_masonry_grid — Post grid elements with complex queries. These need Bricks' Query Loop or posts element configured manually.
- Revolution Slider / Layer Slider — Often bundled with WPBakery themes but are separate plugins outside migration scope.
- Complex Design Options — WPBakery encodes CSS in a single attribute string. Background gradients, complex border configurations, and CSS filters may be partially extracted.
- Frontend editor positioning — Pixel-precise layouts from WPBakery's frontend editor may need spacing adjustment.
- Templates — WPBakery saved templates are not auto-converted to Bricks templates.
Requirements
- Respira for WordPress plugin installed and connected
- MCP connection active (desktop or WebMCP)
- WPBakery Page Builder plugin active (to ensure shortcodes are parseable)
- Bricks theme installed and active (to write target content)
- Read access to scan WPBakery content
- Write access to create duplicates with Bricks content
Trigger Phrase
- "migrate wpbakery to bricks"
Alternative Triggers
- "convert wpbakery to bricks"
- "switch from wpbakery to bricks"
- "migrate visual composer to bricks"
- "rebuild wpbakery pages in bricks"
- "move from wpbakery to bricks"
- "replace wpbakery with bricks"
- "modernize visual composer site"
Source Builder: WPBakery
WPBakery stores content as shortcodes in post_content:
[vc_row full_width="stretch_row" css=".vc_custom_123{padding:40px;background:#f5f5f5}"]
[vc_column width="1/2" el_class="custom-class"]
[vc_column_text]
<h2>Heading</h2>
<p>Paragraph content.</p>
[/vc_column_text]
[vc_single_image image="456" img_size="large"]
[/vc_column]
[vc_column width="1/2"]
[vc_btn title="Click" style="flat" link="url:https%3A%2F%2Fexample.com||target:_blank"]
[/vc_column]
[/vc_row]
Key WPBakery specifics:
- 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 nesting - CSS attribute: Encoded Design Options —
.vc_custom_XXXXX{property:value;...} - Link encoding:
url:https%3A%2F%2F...|title:...|target:_blank|rel:nofollow - Full-width:
full_widthattribute controls row stretching - el_class / el_id: Custom CSS class and ID attributes
- Image references: By attachment ID (not URL)
Read WPBakery content via wordpress_extract_builder_content with builder=wpbakery.
Target Builder: Bricks
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": "text-basic", "parent": "def456", "settings": { "text": "<p>...</p>" } }
]
Key Bricks specifics:
- Elements:
section,container,heading,text-basic,image,button,video,icon - Parent-child via
parentfield - IDs are short alphanumeric strings
- Responsive via
_breakpoints
Write Bricks content via wordpress_inject_builder_content with builder=bricks.
Execution Workflow
Phase 1: Pre-Migration Audit
- Verify Respira + MCP connection via
wordpress_get_site_context. If unavailable, stop and show setup guidance. - Confirm WPBakery is active via
wordpress_list_plugins. - Confirm Bricks theme is installed via
wordpress_get_site_context. - Identify active theme — note if it bundles WPBakery and adds custom elements.
- Scan all content for WPBakery usage:
wordpress_list_pagesandwordpress_list_posts- Check builder via
wordpress_get_builder_info
- Extract content via
wordpress_extract_builder_contentwithbuilder=wpbakery - Build inventory:
- Total WPBakery pages/posts
- Element types (frequency count)
- Theme-bundled custom elements (flagged)
- Addon elements (flagged)
- Grid/masonry elements (flagged)
- Design Options complexity
- Inner row nesting depth
- Complexity per page
Phase 2: Migration Plan
## WPBakery → Bricks Migration Plan
### Modernization Context
This migration moves your site from legacy shortcode-based content to Bricks'
modern JSON format. Expect significantly faster page loads and a much better
editing experience. Bricks also means switching your theme — plan for header,
footer, and template setup.
### Theme-Bundled Elements
[If applicable]: Your theme ([name]) bundles WPBakery and adds X custom
elements. These cannot be auto-migrated and are flagged below.
### Site Inventory
- Total WPBakery pages: X
- Total elements to convert: X
- Auto-convertible: X (Y%)
- Manual attention: X (Y%)
### Element → Bricks Mapping
| WPBakery Element | Bricks Element | Status |
|--------------------|---------------|--------|
| vc_column_text | text-basic | Auto |
| vc_single_image | image | Auto |
| vc_custom_heading | heading | Auto |
| vc_btn | button | Auto |
| vc_gallery | gallery | Auto |
| vc_accordion | accordion | Auto |
| vc_tabs | tabs | Auto |
| vc_