Migrates WPBakery Page Builder pages to Bricks Builder by parsing vc_* shortcodes from post_content, mapping elements to Bricks JSON equivalents, generating a migration plan, and writing to target pages.
npx claudepluginhub respira-press/agent-skills-wordpressThis skill uses the workspace's default tool permissions.
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...
Migrates Elementor-built WordPress pages to Bricks Builder by reading JSON widget trees from post meta, mapping widgets to Bricks equivalents, generating approval plans, and writing Bricks JSON to target pages.
Edit Elementor pages on WordPress sites: WP-CLI for text/image updates, browser automation for styling, layouts, sections, and templates.
Converts React/HTML/Next.js codebases into pixel-perfect WordPress themes with preserved SEO, dynamic CMS features, and strict UI audits. Use for high-fidelity frontend-to-WP migrations.
Share bugs, ideas, or general feedback.
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.
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:
Preserves:
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:
1/1, 1/2, 1/3, 2/3, 1/4, 3/4, 1/6, 5/6[vc_row_inner][vc_column_inner] for nesting.vc_custom_XXXXX{property:value;...}url:https%3A%2F%2F...|title:...|target:_blank|rel:nofollowfull_width attribute controls row stretchingRead WPBakery content via wordpress_extract_builder_content with builder=wpbakery.
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:
section, container, heading, text-basic, image, button, video, iconparent field_breakpointsWrite Bricks content via wordpress_inject_builder_content with builder=bricks.
wordpress_get_site_context. If unavailable, stop and show setup guidance.wordpress_list_plugins.wordpress_get_site_context.wordpress_list_pages and wordpress_list_postswordpress_get_builder_infowordpress_extract_builder_content with builder=wpbakery## 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_toggle | accordion | Auto |
| vc_grid | — | Manual |
| [theme element] | — | Manual |
### Design Options Extraction
- Simple Design Options (color + padding): X pages — fully extracted
- Complex Design Options (gradients, borders): X pages — partially extracted
### Page-by-Page Plan
1. **[Page Title]** — X elements, [complexity]
2. ...
Ask for confirmation:
Ready to modernize? Your WPBakery pages stay untouched — I'll create Bricks duplicates.
- Migrate all pages
- Migrate specific pages
- Start with a test page (recommended for theme-bundled WPBakery sites)
- Just keep this plan
For each approved page:
wordpress_extract_builder_content with builder=wpbakerycss attributevc_row → section element (check full_width for layout mode)vc_column → container element with flex width
1/2→50%, 1/3→33.33%, 2/3→66.66%, 1/4→25%, etc.vc_column_text → text-basic (preserve HTML, or split into heading + text-basic)vc_single_image → image (resolve attachment ID to URL, map alt, size)vc_btn → button (decode URL, map label, style, color)vc_custom_heading → heading (map text, tag, alignment)vc_gallery → gallery (resolve image IDs)vc_accordion → accordion (map items with titles and content)vc_tabs → tabs (map tab titles and content)wordpress_create_page_duplicate or wordpress_create_post_duplicatewordpress_inject_builder_content with builder=bricksThis skill converts WPBakery page content to Bricks format and creates draft duplicates for review.
It cannot:
It can:
Core WordPress tools
wordpress_get_site_contextwordpress_list_pluginswordpress_list_pageswordpress_list_postswordpress_read_pagewordpress_read_postwordpress_get_builder_infowordpress_extract_builder_contentwordpress_inject_builder_contentwordpress_find_builder_targetswordpress_create_page_duplicatewordpress_create_post_duplicateAfter run completion, send fire-and-forget usage tracking to:
POST https://www.respira.press/api/skills/track-usageInclude:
skill_slug = migrate-wpbakery-to-bricksNever block user flow on telemetry failure.
Built by Respira Team https://respira.press/skills/migrate-wpbakery-to-bricks