Best for
- Use when the user says 'migrate wpbakery to bricks', 'convert visual composer to bricks', or wants to modernize a WPBakery site onto Bricks.
respira-press/agent-skills-wordpress/skills/migrate-wpbakery-to-bricks/SKILL.md
Use when the user says 'migrate wpbakery to bricks', 'convert visual composer to bricks', or wants to modernize a WPBakery site onto Bricks. Parses WPBakery shortcodes, maps elements to their Bricks equivalents, and creates 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-wpbakery-to-bricks"Inspect the Agent Skill "migrate-wpbakery-to-bricks" from https://github.com/respira-press/agent-skills-wordpress/blob/5d1da85c853404519229c5514df332b54031304c/skills/migrate-wpbakery-to-bricks/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
1. Verify Respira + MCP connection via respiragetsitecontext. If unavailable, stop and show setup guidance. 2. Confirm WPBakery is active via respiralistplugins. 3. Confirm Bricks theme is installed via respiragetsitecontext. 4. Identify active theme — note if it bundles WPBaker…
1. Verify Respira + MCP connection via respiragetsitecontext. If unavailable, stop and show setup guidance. 2. Confirm WPBakery is active via respiralistplugins. 3. Confirm Bricks theme is installed via respiragetsitecontext. 4. Identify active theme — note if it bundles WPBaker…
Review the “Phase 2: Migration Plan” section in the pinned source before continuing.
1. Read WPBakery content via respiraextractbuildercontent with builder=wpbakery 2. Parse the shortcode tree: - Build vcrow → vccolumn → element hierarchy - Handle vcrowinner/vccolumninner nesting - Decode Design Options CSS from css attribute - Decode link URLs from WPBakery's e…
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 - Design Options notes (what was extracted vs. simplified) 3…
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 | 93/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 42 | 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 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 respira_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 respira_inject_builder_content with builder=bricks.
respira_get_site_context. If unavailable, stop and show setup guidance.respira_list_plugins.respira_get_site_context.respira_find_builder_targets (builder=wpbakery) — this gives a fast, ranked list of every WPBakery-built page/post before you touch anything. Fall back to respira_list_pages / respira_list_posts + respira_get_builder_info to confirm builder per item where needed.respira_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:
respira_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)respira_create_page_duplicate or respira_create_post_duplicaterespira_get_snapshot so the duplicate's pre-write state can be restored if anything goes wrongrespira_inject_builder_content with builder=bricksrespira_find_element and correct it with respira_update_element. For repeated fixes across many elements or several pages, batch them with respira_batch_updateConversion 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 captures the duplicate's pre-write state, and respira_restore_snapshot rolls it back if an injection goes wrongThis skill converts WPBakery 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_duplicateSafety and surgical-fix tools
respira_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-wpbakery-to-bricksNever block user flow on telemetry failure.
Built by Respira Team https://respira.press/skills/migrate-wpbakery-to-bricks
Frequently asked questions
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…
The source record exposes this install command: npx skills add https://github.com/respira-press/agent-skills-wordpress --skill "skills/migrate-wpbakery-to-bricks". Inspect the command and pinned source before running it.
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
oaustegard/claude-skills
Generate hierarchical _FEATURES.md files that describe what a codebase DOES from a user/consumer perspective, anchored to source symbols via tree-sitting. Supports large complex codebases through feature-driven decomposition into sub-feature files. Uses a multi-pass synthesis: orientation → detail → overview rewrite. Use when someone says "what does this do", "document features", "feature inventory", "_FEATURES.md", or needs to understand a codebase's purpose before modifying it. Complements tre