Migrate Oxygen to Breakdance
Full-site migration from Oxygen Builder to Breakdance. Audits every Oxygen-built page, maps components to their Breakdance equivalents, builds a migration plan for approval, and executes page-by-page conversion — all through duplicates so your live site stays untouched. Use this skill whenever someone mentions migrating from Oxygen to Breakdance, switching from Oxygen to Breakdance, converting Oxygen pages to Breakdance, or replacing Oxygen with Breakdance.
What This Skill Does
Oxygen and Breakdance share the same developer lineage (Soflyy), which makes this one of the smoothest builder migrations available. Many component concepts, naming conventions, and architectural decisions carry over directly. However, the underlying storage formats are completely different — Oxygen uses JSON shortcodes in ct_builder_shortcodes while Breakdance uses its own post_meta format — so content must still be extracted, mapped, and re-encoded.
This skill reads every Oxygen page, extracts the builder content, translates each component to its Breakdance equivalent, and writes the result to duplicate pages in Breakdance format — giving you a complete parallel version of your site to review before going live.
Handles:
- Section → Breakdance Section mapping
- Container/Div → Breakdance Div mapping
- Heading, Text, Image, Button, Video, Icon components
- Flexbox layout settings (direction, alignment, gap, wrap)
- Column/grid structures
- Custom CSS classes and inline styles
- Link elements and CTAs
- Code blocks and custom HTML
What This Skill Does NOT Do
- Migrate Oxygen's Global Styles or Style Sheets — Breakdance uses its own global styling system
- Convert Oxygen conditions (visibility rules) — Breakdance has its own conditions system that must be configured separately
- Migrate Oxygen's custom PHP/code block logic — flagged for manual porting
- Recreate Oxygen templates (headers, footers, archives) — Breakdance templates must be rebuilt using its template system
- Transfer WooCommerce builder templates — product/shop templates need separate handling
- Guarantee pixel-perfect visual parity — some spacing/sizing will need fine-tuning
Requirements
- Respira for WordPress plugin installed and connected
- MCP connection active (desktop or WebMCP)
- Oxygen Builder active on the source site
- Breakdance installed on the target site (can be the same site)
- Read access to scan Oxygen content
- Write access to create duplicates with Breakdance content
Trigger Phrase
- "migrate oxygen to breakdance"
Alternative Triggers
- "convert oxygen to breakdance"
- "switch from oxygen to breakdance"
- "move oxygen pages to breakdance"
- "replace oxygen with breakdance"
- "oxygen to breakdance migration"
- "upgrade oxygen to breakdance"
Builder Technical Context
Source: Oxygen Builder
- Content stored in post_meta key
ct_builder_shortcodes
- JSON-based structure encoding nested components
- Read via
wordpress_extract_builder_content with builder=oxygen
- Components:
ct_section, ct_div, ct_headline, ct_text_block, ct_image, ct_link_button, etc.
Target: Breakdance
- Content stored in post_meta
- Write via
wordpress_inject_builder_content with builder=breakdance
- Elements:
EssentialElements\Section, EssentialElements\Div, EssentialElements\Heading, EssentialElements\Text, EssentialElements\Image, EssentialElements\Button, etc.
Execution Workflow
Phase 1: Pre-Migration Audit
- Verify Respira + MCP connection via
wordpress_get_site_context. If unavailable, stop and show setup guidance.
- Detect Oxygen presence via
wordpress_get_builder_info or wordpress_list_plugins.
- Inventory all Oxygen-built content:
wordpress_list_pages and wordpress_list_posts — identify all content
wordpress_find_builder_targets with builder=oxygen — find Oxygen-managed pages
- For each Oxygen page, extract content:
wordpress_extract_builder_content with builder=oxygen
- Catalog: component types used, nesting depth, custom CSS, dynamic data usage, code blocks
- Produce an Audit Report:
- Total pages/posts using Oxygen
- Component type frequency (how many sections, headings, images, etc.)
- Complexity flags (custom PHP, conditions, dynamic data, WooCommerce templates)
- Estimated migration difficulty per page (simple / moderate / complex)
Phase 2: Migration Plan
Present a structured migration plan:
## Oxygen → Breakdance Migration Plan
### Site Overview
- Total Oxygen pages: X
- Simple pages (direct mapping): X
- Moderate pages (some manual review needed): X
- Complex pages (significant manual work): X
### Component Mapping
| Oxygen Component | Breakdance Equivalent | Notes |
|---|---|---|
| ct_section | Section | Direct mapping — same developer lineage |
| ct_div | Div | Direct mapping |
| ct_headline | Heading | Direct mapping |
| ... | ... | ... |
### Migration Order
1. [Page Title] — Simple — estimated 2 min
2. [Page Title] — Moderate — estimated 5 min
...
### Items Requiring Manual Attention
- [Page X] — Custom PHP code block
- [Page Y] — Oxygen condition logic
- Global Styles — must be recreated in Breakdance Global Settings
Then ask:
Here's the migration plan. Would you like me to:
- Migrate all pages (creates duplicates for review)
- Migrate only simple pages first
- Migrate specific pages you choose
- Just keep this as a reference — no changes
Wait for explicit confirmation before proceeding.
Phase 3: Page-by-Page Migration
For each approved page:
- Extract Oxygen content via
wordpress_extract_builder_content with builder=oxygen
- Map each Oxygen component to its Breakdance equivalent:
- Translate component types (ct_section → Section, ct_div → Div, etc.)
- Convert layout properties (flexbox settings, spacing, sizing)
- Map CSS classes and inline styles
- Preserve text content, image URLs, link targets
- Flag any unmappable components (custom PHP, conditions) with inline comments
- Build the Breakdance content structure
- Create a duplicate via
wordpress_create_page_duplicate or wordpress_create_post_duplicate
- Inject Breakdance content via
wordpress_inject_builder_content with builder=breakdance
- Log the migration result (success, warnings, manual review items)
Phase 4: Post-Migration Verification
- Summarize all migrated pages with status:
- Clean migrations (no issues)
- Migrations with warnings (flagged items needing review)
- Failed migrations (if any)
- List all manual review items:
- Custom PHP code blocks that need porting
- Dynamic data references that need reconnecting
- Oxygen conditions that need rebuilding in Breakdance
- Provide review instructions:
- Where to find duplicates in WordPress admin
- How to preview Breakdance pages
- How to delete duplicates if not wanted
Safety Model
- Read-only analysis first — full Oxygen content audit before any changes
- Explicit user confirmation before creating any duplicates
- Duplicate-first only — never modifies live/published Oxygen content
- Never auto-publishes duplicates
- Provides rollback guidance (delete duplicates if not wanted)
- Preserves all original Oxygen content untouched
Honest Disclaimer
This skill converts Oxygen page structures to Breakdance format and creates duplicates for review.
It cannot:
- Guarantee pixel-perfect visual parity between builders
- Migrate Oxygen Global Styles or conditions automatically
- Convert custom PHP code blocks to Breakdance equivalents
- Handle WooCommerce template migrations
- Replace a thorough manual QA pass on every page
It can:
- Leverage the shared developer lineage for high-fidelity component mapping
- Map 85-95% of standard Oxygen components to Breakdance equivalents
- Preserve content, images, links, and layout structure
- Save days of manual rebuild work
- Identify exactly what needs manual attention
Tooling
Core WordPress tools
wordpress_get_site_context
wordpress_get_builder_info
wordpress_list_pages
wordpress_list_posts
wordpress_list_plugins
wordpress_find_builder_targets
wordpress_extract_builder_content
wordpress_inject_builder_content
wordpress_create_page_duplicate
wordpress_create_post_duplicate
wordpress_read_page
wordpress_read_post
Telemetry
After run completion, send fire-and-forget usage tracking to:
POST https://www.respira.press/api/skills/track-usage
Include:
skill_slug = migrate-oxygen-to-breakdance
- site/version context
- duration and success
- pages audited, pages migrated, warnings count
- tools used
Never block user flow on telemetry failure.
Related Skills
- WordPress Site DNA (understand site structure before migrating)
- Technical Debt Audit (clean up before or after migration)
- SEO & AEO Amplifier (verify SEO preservation post-migration)
Built by Respira Team
https://respira.press/skills/migrate-oxygen-to-breakdance
1---2name: migrate-oxygen-to-breakdance3description: Full-site migration from Oxygen Builder to Breakdance (same Soflyy lineage, smoothest possible builder swap). Audits every Oxygen page, maps components to Breakdance equivalents, builds a migration plan for approval, and converts pages via duplicates so the live site stays untouched. Use when user says "migrate Oxygen to Breakdance", "switch from Oxygen to Breakdance", or "replace Oxygen with Breakdance".4license: MIT5---6
7# Migrate Oxygen to Breakdance
8
9Full-site migration from Oxygen Builder to Breakdance. Audits every Oxygen-built page, maps components to their Breakdance equivalents, builds a migration plan for approval, and executes page-by-page conversion — all through duplicates so your live site stays untouched. Use this skill whenever someone mentions migrating from Oxygen to Breakdance, switching from Oxygen to Breakdance, converting Oxygen pages to Breakdance, or replacing Oxygen with Breakdance.
10
11## What This Skill Does
12
13Oxygen and Breakdance share the same developer lineage (Soflyy), which makes this one of the smoothest builder migrations available. Many component concepts, naming conventions, and architectural decisions carry over directly. However, the underlying storage formats are completely different — Oxygen uses JSON shortcodes in `ct_builder_shortcodes` while Breakdance uses its own post_meta format — so content must still be extracted, mapped, and re-encoded.
14
15This skill reads every Oxygen page, extracts the builder content, translates each component to its Breakdance equivalent, and writes the result to duplicate pages in Breakdance format — giving you a complete parallel version of your site to review before going live.
16
17**Handles:**
18- Section → Breakdance Section mapping
19- Container/Div → Breakdance Div mapping
20- Heading, Text, Image, Button, Video, Icon components
21- Flexbox layout settings (direction, alignment, gap, wrap)
22- Column/grid structures
23- Custom CSS classes and inline styles
24- Link elements and CTAs
25- Code blocks and custom HTML
26
27## What This Skill Does NOT Do
28
29- Migrate Oxygen's Global Styles or Style Sheets — Breakdance uses its own global styling system
30- Convert Oxygen conditions (visibility rules) — Breakdance has its own conditions system that must be configured separately
31- Migrate Oxygen's custom PHP/code block logic — flagged for manual porting
32- Recreate Oxygen templates (headers, footers, archives) — Breakdance templates must be rebuilt using its template system
33- Transfer WooCommerce builder templates — product/shop templates need separate handling
34- Guarantee pixel-perfect visual parity — some spacing/sizing will need fine-tuning
35
36## Requirements
37
38- Respira for WordPress plugin installed and connected
39- MCP connection active (desktop or WebMCP)
40- Oxygen Builder active on the source site
41- Breakdance installed on the target site (can be the same site)
42- Read access to scan Oxygen content
43- Write access to create duplicates with Breakdance content
44
45## Trigger Phrase
46
47- "migrate oxygen to breakdance"
48
49## Alternative Triggers
50
51- "convert oxygen to breakdance"
52- "switch from oxygen to breakdance"
53- "move oxygen pages to breakdance"
54- "replace oxygen with breakdance"
55- "oxygen to breakdance migration"
56- "upgrade oxygen to breakdance"
57
58## Builder Technical Context
59
60**Source: Oxygen Builder**
61- Content stored in post_meta key `ct_builder_shortcodes`
62- JSON-based structure encoding nested components
63- Read via `wordpress_extract_builder_content` with `builder=oxygen`
64- Components: `ct_section`, `ct_div`, `ct_headline`, `ct_text_block`, `ct_image`, `ct_link_button`, etc.
65
66**Target: Breakdance**
67- Content stored in post_meta
68- Write via `wordpress_inject_builder_content` with `builder=breakdance`
69- Elements: `EssentialElements\Section`, `EssentialElements\Div`, `EssentialElements\Heading`, `EssentialElements\Text`, `EssentialElements\Image`, `EssentialElements\Button`, etc.
70
71## Execution Workflow
72
73### Phase 1: Pre-Migration Audit
74
751. Verify Respira + MCP connection via `wordpress_get_site_context`. If unavailable, stop and show setup guidance.
762. Detect Oxygen presence via `wordpress_get_builder_info` or `wordpress_list_plugins`.
773. Inventory all Oxygen-built content:
78 - `wordpress_list_pages` and `wordpress_list_posts` — identify all content
79 - `wordpress_find_builder_targets` with `builder=oxygen` — find Oxygen-managed pages
804. For each Oxygen page, extract content:
81 - `wordpress_extract_builder_content` with `builder=oxygen`
82 - Catalog: component types used, nesting depth, custom CSS, dynamic data usage, code blocks
835. Produce an **Audit Report**:
84 - Total pages/posts using Oxygen
85 - Component type frequency (how many sections, headings, images, etc.)
86 - Complexity flags (custom PHP, conditions, dynamic data, WooCommerce templates)
87 - Estimated migration difficulty per page (simple / moderate / complex)
88
89### Phase 2: Migration Plan
90
91Present a structured migration plan:
92
93```
94## Oxygen → Breakdance Migration Plan
95
96### Site Overview
97- Total Oxygen pages: X
98- Simple pages (direct mapping): X
99- Moderate pages (some manual review needed): X
100- Complex pages (significant manual work): X
101
102### Component Mapping
103| Oxygen Component | Breakdance Equivalent | Notes |
104|---|---|---|
105| ct_section | Section | Direct mapping — same developer lineage |
106| ct_div | Div | Direct mapping |
107| ct_headline | Heading | Direct mapping |
108| ... | ... | ... |
109
110### Migration Order
1111. [Page Title] — Simple — estimated 2 min
1122. [Page Title] — Moderate — estimated 5 min
113...
114
115### Items Requiring Manual Attention
116- [Page X] — Custom PHP code block
117- [Page Y] — Oxygen condition logic
118- Global Styles — must be recreated in Breakdance Global Settings
119```
120
121Then ask:
122
123> Here's the migration plan. Would you like me to:
124> 1. Migrate all pages (creates duplicates for review)
125> 2. Migrate only simple pages first
126> 3. Migrate specific pages you choose
127> 4. Just keep this as a reference — no changes
128
129Wait for explicit confirmation before proceeding.
130
131### Phase 3: Page-by-Page Migration
132
133For each approved page:
134
1351. Extract Oxygen content via `wordpress_extract_builder_content` with `builder=oxygen`
1362. Map each Oxygen component to its Breakdance equivalent:
137 - Translate component types (ct_section → Section, ct_div → Div, etc.)
138 - Convert layout properties (flexbox settings, spacing, sizing)
139 - Map CSS classes and inline styles
140 - Preserve text content, image URLs, link targets
141 - Flag any unmappable components (custom PHP, conditions) with inline comments
1423. Build the Breakdance content structure
1434. Create a duplicate via `wordpress_create_page_duplicate` or `wordpress_create_post_duplicate`
1445. Inject Breakdance content via `wordpress_inject_builder_content` with `builder=breakdance`
1456. Log the migration result (success, warnings, manual review items)
146
147### Phase 4: Post-Migration Verification
148
1491. Summarize all migrated pages with status:
150 - Clean migrations (no issues)
151 - Migrations with warnings (flagged items needing review)
152 - Failed migrations (if any)
1532. List all manual review items:
154 - Custom PHP code blocks that need porting
155 - Dynamic data references that need reconnecting
156 - Oxygen conditions that need rebuilding in Breakdance
1573. Provide review instructions:
158 - Where to find duplicates in WordPress admin
159 - How to preview Breakdance pages
160 - How to delete duplicates if not wanted
161
162## Safety Model
163
164- Read-only analysis first — full Oxygen content audit before any changes
165- Explicit user confirmation before creating any duplicates
166- Duplicate-first only — never modifies live/published Oxygen content
167- Never auto-publishes duplicates
168- Provides rollback guidance (delete duplicates if not wanted)
169- Preserves all original Oxygen content untouched
170
171## Honest Disclaimer
172
173This skill converts Oxygen page structures to Breakdance format and creates duplicates for review.
174
175It cannot:
176- Guarantee pixel-perfect visual parity between builders
177- Migrate Oxygen Global Styles or conditions automatically
178- Convert custom PHP code blocks to Breakdance equivalents
179- Handle WooCommerce template migrations
180- Replace a thorough manual QA pass on every page
181
182It can:
183- Leverage the shared developer lineage for high-fidelity component mapping
184- Map 85-95% of standard Oxygen components to Breakdance equivalents
185- Preserve content, images, links, and layout structure
186- Save days of manual rebuild work
187- Identify exactly what needs manual attention
188
189## Tooling
190
191**Core WordPress tools**
192- `wordpress_get_site_context`
193- `wordpress_get_builder_info`
194- `wordpress_list_pages`
195- `wordpress_list_posts`
196- `wordpress_list_plugins`
197- `wordpress_find_builder_targets`
198- `wordpress_extract_builder_content`
199- `wordpress_inject_builder_content`
200- `wordpress_create_page_duplicate`
201- `wordpress_create_post_duplicate`
202- `wordpress_read_page`
203- `wordpress_read_post`
204
205## Telemetry
206
207After run completion, send fire-and-forget usage tracking to:
208
209- `POST https://www.respira.press/api/skills/track-usage`
210
211Include:
212- `skill_slug = migrate-oxygen-to-breakdance`
213- site/version context
214- duration and success
215- pages audited, pages migrated, warnings count
216- tools used
217
218Never block user flow on telemetry failure.
219
220## Related Skills
221
222- WordPress Site DNA (understand site structure before migrating)
223- Technical Debt Audit (clean up before or after migration)
224- SEO & AEO Amplifier (verify SEO preservation post-migration)
225
226---
227
228Built by Respira Team
229https://respira.press/skills/migrate-oxygen-to-breakdance