@respira/wordpress-mcp-server 8.2.2 → 8.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/dist/__tests__/invoke-ability-required-args.test.d.ts +2 -0
  3. package/dist/__tests__/invoke-ability-required-args.test.d.ts.map +1 -0
  4. package/dist/__tests__/invoke-ability-required-args.test.js +53 -0
  5. package/dist/__tests__/invoke-ability-required-args.test.js.map +1 -0
  6. package/dist/__tests__/oq-put-fallback-callRestV2-integration.test.d.ts +24 -0
  7. package/dist/__tests__/oq-put-fallback-callRestV2-integration.test.d.ts.map +1 -0
  8. package/dist/__tests__/oq-put-fallback-callRestV2-integration.test.js +135 -0
  9. package/dist/__tests__/oq-put-fallback-callRestV2-integration.test.js.map +1 -0
  10. package/dist/__tests__/transport-mode-observability.test.d.ts +2 -0
  11. package/dist/__tests__/transport-mode-observability.test.d.ts.map +1 -0
  12. package/dist/__tests__/transport-mode-observability.test.js +201 -0
  13. package/dist/__tests__/transport-mode-observability.test.js.map +1 -0
  14. package/dist/__tests__/woo-card-tools-forward-fse-params.test.js +2 -2
  15. package/dist/__tests__/woo-card-tools-forward-fse-params.test.js.map +1 -1
  16. package/dist/config.d.ts +102 -0
  17. package/dist/config.d.ts.map +1 -1
  18. package/dist/config.js +229 -0
  19. package/dist/config.js.map +1 -1
  20. package/dist/server.d.ts +42 -0
  21. package/dist/server.d.ts.map +1 -1
  22. package/dist/server.js +218 -24
  23. package/dist/server.js.map +1 -1
  24. package/dist/wordpress-client.d.ts +17 -0
  25. package/dist/wordpress-client.d.ts.map +1 -1
  26. package/dist/wordpress-client.js +43 -0
  27. package/dist/wordpress-client.js.map +1 -1
  28. package/package.json +1 -1
  29. package/skills/design-system-synthesizer/SKILL.md +30 -9
  30. package/skills/design-system-synthesizer/metadata.json +6 -3
  31. package/skills/figma-to-elementor/SKILL.md +14 -2
  32. package/skills/html-to-bricks/SKILL.md +16 -2
  33. package/skills/html-to-bricks/metadata.json +4 -3
  34. package/skills/migrate-beaver-builder-to-bricks/SKILL.md +20 -3
  35. package/skills/migrate-beaver-builder-to-gutenberg/SKILL.md +20 -3
  36. package/skills/migrate-brizy-to-gutenberg/SKILL.md +20 -3
  37. package/skills/migrate-divi-to-breakdance/SKILL.md +20 -3
  38. package/skills/migrate-divi-to-bricks/SKILL.md +20 -3
  39. package/skills/migrate-divi-to-gutenberg/SKILL.md +20 -3
  40. package/skills/migrate-elementor-to-breakdance/SKILL.md +21 -4
  41. package/skills/migrate-elementor-to-bricks/SKILL.md +21 -4
  42. package/skills/migrate-elementor-to-gutenberg/SKILL.md +21 -4
  43. package/skills/migrate-elementor-to-oxygen/SKILL.md +21 -4
  44. package/skills/migrate-oxygen-to-breakdance/SKILL.md +20 -3
  45. package/skills/migrate-oxygen-to-bricks/SKILL.md +20 -3
  46. package/skills/migrate-thrive-architect-to-gutenberg/SKILL.md +20 -3
  47. package/skills/migrate-visual-composer-to-gutenberg/SKILL.md +20 -3
  48. package/skills/migrate-wpbakery-to-bricks/SKILL.md +20 -3
  49. package/skills/migrate-wpbakery-to-gutenberg/SKILL.md +20 -3
  50. package/skills/prime-the-agent/SKILL.md +35 -13
  51. package/skills/prime-the-agent/metadata.json +6 -5
  52. package/skills/respira-setup/SKILL.md +0 -72
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@respira/wordpress-mcp-server",
3
- "version": "8.2.2",
3
+ "version": "8.2.4",
4
4
  "mcpName": "io.github.webmyc/respira-wordpress",
5
5
  "description": "WordPress MCP server with MCP 2026-07-28 and legacy-client support. 198 tools, 303 with WooCommerce, across 17 page builders and the Site Editor.",
6
6
  "main": "dist/index.js",
@@ -1,8 +1,20 @@
1
+ ---
2
+ name: design-system-synthesizer
3
+ description: "Use when the user says 'build a design system for my site', 'extract design tokens', 'capture my brand', or 'build my style guide', or after a rebrand. Reads representative pages, theme files, and media to extract logo, colors, typography, spacing, and components, then writes a visible style-guide page."
4
+ license: MIT
5
+ metadata:
6
+ author: Respira for WordPress
7
+ author_url: https://respira.press
8
+ version: 1.3.0
9
+ mcp-server: respira-wordpress
10
+ category: intelligence
11
+ ---
12
+
1
13
  # Design System Synthesizer
2
14
 
3
- **Version:** 1.2.0
4
- **Updated:** 2026-06-30
5
- **Freshly updated:** v1.2.0 makes the synthesis safe and source-traceable end to end. Reads tokens from the actual builder content (`respira_extract_builder_content`) and theme files (`respira_read_theme_file` on style.css / theme.json) rather than guessing. Persists the design_system JSON via `respira_get_option` (diff first) + `respira_update_option`, and takes a `respira_get_snapshot` checkpoint before building the visible style-guide page with `respira_build_page` so the write is explicitly reversible (restore the snapshot, delete the draft). Applying tokens to a builder's global colors and typography is described in plain words since there is no confirmed MCP tool name for that path yet.
15
+ **Version:** 1.3.0
16
+ **Updated:** 2026-08-04
17
+ **Freshly updated:** v1.3.0 catches up with the design-token surface. Builder global palettes and typography are now written through first-class token tools (`respira_list_design_tokens`, `respira_create_design_token`, `respira_update_design_token`, `respira_delete_design_token`), replacing v1.2.0's describe-it-in-plain-words guidance. HTML/design conversions register the colors and typography they carry as named tokens in the builder's own global styles automatically, and converted pages reference those tokens instead of carrying value copies so the synthesizer reads what is already registered before synthesizing, reuses those names instead of re-inlining values, and reports token registration in its summary.
6
18
  **Category:** intelligence
7
19
  **Status:** stable
8
20
  **Requires:** Respira for WordPress plugin 7.1+ + MCP server
@@ -316,6 +328,8 @@ After page creation, output:
316
328
 
317
329
  **Human view:** {page_url} · status: private (editors only)
318
330
 
331
+ **Builder tokens:** {n} tokens registered or aligned in {builder}'s global styles (`respira_list_design_tokens` to inspect), or "none — {builder} has no global token store"
332
+
319
333
  **Open it now:** [{page_title} in the editor]({builder_edit_url})
320
334
 
321
335
  **Promote to public:** call `respira_update_page(id={page_id}, status='publish')` if you want this visible on your site as a /design-system/ landing.
@@ -338,13 +352,15 @@ Once persisted, future skills (Page Template Library, Brand Voice Synthesizer, f
338
352
 
339
353
  ### Applying tokens to the builder's own global colors / typography
340
354
 
341
- Some builders (Bricks, Elementor, Divi, Oxygen) keep their own global color palette and global typography settings, separate from the page-level styles. Pushing the synthesized tokens into those global settings means future hand-edits in the builder also snap to the brand.
355
+ Builders with a global store — the block editor family, Elementor, Divi, Bricks, Beaver, Breakdance, Oxygen keep their own global color palette and typography settings, separate from the page-level styles. Pushing the synthesized tokens into that store means future hand-edits in the builder also snap to the brand.
342
356
 
343
- There is **no confirmed MCP tool name** for writing a builder's global palette today, so do not invent one (e.g. do not assume a `respira_*` design-system tool exists). The real path is the plugin's design-token import layer on the WordPress side (`includes/bricks-intelligence/class-design-token-import.php` and the design-system REST handler in `includes/class-respira-bricks-tools.php`), reached through the site, not a named MCP tool. In practice:
357
+ That path is now first-class: `respira_list_design_tokens`, `respira_create_design_token`, `respira_update_design_token`, `respira_delete_design_token`. And HTML/design conversions register the colors and typography they carry as named tokens in that store automatically, with converted pages referencing the tokens instead of carrying value copies. In practice:
344
358
 
345
- - Persist the `respira_design_system` option (Step 8) that is the canonical, tool-confirmed write.
346
- - Build the visible style-guide page (Step 9) so the tokens are visible and editable.
347
- - For pushing tokens into a builder's *global* palette/typography, describe the change to the user in plain words and let them apply it (or trigger the plugin's design-token import). Only reference a builder-token tool by name once you have grepped `includes/` and confirmed the exact registered name.
359
+ - Start with `respira_list_design_tokens` conversions may already have registered tokens on this site. Reuse those names rather than re-inlining raw values or inventing a parallel palette.
360
+ - Persist the `respira_design_system` option (Step 8) that stays the canonical machine artifact.
361
+ - With the user's confirmation, register or align the synthesized tokens in the builder's global store via `respira_create_design_token` / `respira_update_design_token`.
362
+ - Builders without a global store (Brizy, Thrive Architect, WPBakery, Visual Composer, Flatsome, SeedProd) register nothing — page-level values are the only surface there; say so instead of pretending.
363
+ - Mention the token registration — names and counts — in the completion summary.
348
364
 
349
365
  This is the foundation. Every other content skill stands on it.
350
366
 
@@ -378,7 +394,12 @@ This is the foundation. Every other content skill stands on it.
378
394
  - `respira_build_page` — render the visible style-guide page in the active builder
379
395
  - `respira_restore_snapshot` + `respira_delete_page` — explicit rollback of the build
380
396
 
381
- Applying tokens to a builder's *global* colors/typography has **no confirmed MCP tool name** — describe it in plain words (see "Applying tokens to the builder's own global colors / typography" above). Never invent a builder-token tool name.
397
+ **Builder global tokens**
398
+ - `respira_list_design_tokens` — see what conversions already registered; always read before writing
399
+ - `respira_create_design_token` / `respira_update_design_token` — register or align the synthesized tokens in the builder's global store (with user confirmation)
400
+ - `respira_delete_design_token` — remove a token the user has retired
401
+
402
+ No-store builders (Brizy, Thrive Architect, WPBakery, Visual Composer, Flatsome, SeedProd) have no global surface to write; skip token registration there and say so.
382
403
 
383
404
  ---
384
405
 
@@ -12,8 +12,8 @@
12
12
  "requires_accessibility_addon": false,
13
13
  "is_read_only": false,
14
14
  "is_duplicate_first": false,
15
- "version": "1.1.0",
16
- "last_updated": "2026-05-24",
15
+ "version": "1.3.0",
16
+ "last_updated": "2026-08-04",
17
17
  "tools_used": [
18
18
  "respira_get_active_site",
19
19
  "respira_get_site_context",
@@ -26,7 +26,10 @@
26
26
  "respira_get_builder_info",
27
27
  "respira_get_builder_inline_schemas",
28
28
  "respira_build_page",
29
- "respira_update_page"
29
+ "respira_update_page",
30
+ "respira_list_design_tokens",
31
+ "respira_create_design_token",
32
+ "respira_update_design_token"
30
33
  ],
31
34
  "detects": [
32
35
  "logo_url",
@@ -1,3 +1,15 @@
1
+ ---
2
+ name: figma-to-elementor
3
+ description: "Use when the user says 'figma to elementor', 'build this figma design in elementor', or hands over a Figma frame to rebuild in WordPress. Maps the Figma node tree to Elementor widgets and containers and writes clean Elementor JSON into a draft duplicate, so nothing live is touched."
4
+ license: MIT
5
+ metadata:
6
+ author: Respira for WordPress
7
+ author_url: https://respira.press
8
+ version: 1.1.0
9
+ mcp-server: respira-wordpress
10
+ category: migration
11
+ ---
12
+
1
13
  # Figma to Elementor
2
14
 
3
15
  Rebuilds a Figma frame as a real, editable Elementor page on your WordPress site. Reads the Figma node tree (layers, auto-layout, text, colors, images), maps each node to its closest Elementor widget or container, generates a build plan for approval, and writes clean Elementor JSON to a draft duplicate so nothing live is touched. Use this skill whenever someone wants to turn a Figma design into an Elementor page, build a Figma mockup in Elementor, or hand a design off to WordPress without rebuilding it by hand.
@@ -99,7 +111,7 @@ Respira writes Elementor as a simplified tree of `{ type, widget, settings, elem
99
111
 
100
112
  **Images:** collect IMAGE fills, export from Figma, sideload with `respira_sideload_image`, and set the resulting media on the Elementor image widget/background.
101
113
 
102
- **Design system:** map the frame's distinct fill colors to Elementor global colors (primary/secondary/accent/text) so later edits stay on-brand.
114
+ **Design system:** map the frame's distinct fill colors to Elementor global colors (primary/secondary/accent/text) so later edits stay on-brand. Conversion writes register these colors and the frame's typography as named design tokens in Elementor's own global styles, and the built page references the tokens instead of carrying value copies — when refining afterwards, reuse the registered tokens (`respira_list_design_tokens` shows them) rather than re-inlining raw values.
103
115
 
104
116
  ## Execution Workflow
105
117
 
@@ -130,7 +142,7 @@ For the approved frame:
130
142
  6. Report status for the frame before moving on.
131
143
 
132
144
  ### Phase 4: Verify
133
- 1. Summarize: sections/widgets built, images imported, items flagged.
145
+ 1. Summarize: sections/widgets built, images imported, design tokens registered in Elementor's global styles (names and counts), items flagged.
134
146
  2. Provide the wp-admin/Elementor editor link to the draft.
135
147
  3. Give a checklist: open in the Elementor editor, check tablet/mobile, confirm images load, test links/buttons, review flagged items, compare against the Figma frame.
136
148
 
@@ -1,7 +1,19 @@
1
+ ---
2
+ name: html-to-bricks
3
+ description: "Use when the user says 'convert this html to bricks' or 'paste html into bricks', or has a Webflow, Framer, CodePen, or old static export to bring into a Bricks site. Converts raw HTML and CSS into native Bricks elements, mapping colors, type, and spacing to design tokens, plus ACSS classes when installed."
4
+ license: MIT
5
+ metadata:
6
+ author: Respira for WordPress
7
+ author_url: https://respira.press
8
+ version: 1.1.0
9
+ mcp-server: respira-wordpress
10
+ category: migration
11
+ ---
12
+
1
13
  # HTML to Bricks Builder
2
14
 
3
- **Version:** 1.0.0
4
- **Updated:** 2026-05-24
15
+ **Version:** 1.1.0
16
+ **Updated:** 2026-08-04
5
17
  **Category:** migration
6
18
  **Status:** stable
7
19
  **Requires:** Respira for WordPress plugin 7.1+ + Bricks Builder active + MCP server
@@ -71,6 +83,8 @@ Call `respira_convert_html_to_builder` with `builder=bricks`, the HTML, the CSS,
71
83
 
72
84
  The MCP tool returns a Bricks element tree. Each element has a `name` (Bricks element type — `section`, `block`, `container`, `heading`, `text-basic`, `button`, `image`, etc.) and `settings` matching the Bricks schema.
73
85
 
86
+ The conversion also registers the colors and typography it carries as named design tokens in Bricks' own global styles, and the converted elements reference those tokens instead of carrying value copies. When refining afterwards, reuse the registered tokens (`respira_list_design_tokens` shows them) rather than re-inlining raw hex values or font stacks — and mention the registration, token names and counts, when you report the conversion done.
87
+
74
88
  ### Step 6 — Map raw values to design system tokens
75
89
 
76
90
  For each element in the tree:
@@ -12,8 +12,8 @@
12
12
  "requires_accessibility_addon": false,
13
13
  "is_read_only": false,
14
14
  "is_duplicate_first": true,
15
- "version": "1.0.0",
16
- "last_updated": "2026-05-24",
15
+ "version": "1.1.0",
16
+ "last_updated": "2026-08-04",
17
17
  "tools_used": [
18
18
  "respira_get_active_site",
19
19
  "respira_get_builder_info",
@@ -21,7 +21,8 @@
21
21
  "respira_convert_html_to_builder",
22
22
  "respira_build_page",
23
23
  "respira_create_page_duplicate",
24
- "respira_inject_builder_content"
24
+ "respira_inject_builder_content",
25
+ "respira_list_design_tokens"
25
26
  ],
26
27
  "detects": [
27
28
  "active_bricks_version",
@@ -1,8 +1,20 @@
1
+ ---
2
+ name: migrate-beaver-builder-to-bricks
3
+ description: "Use when the user says 'migrate beaver builder to bricks', 'convert bb to bricks', or 'replace beaver builder with bricks'. Reads the Beaver Builder flat node map, maps each module to its Bricks element, and creates draft duplicates for review."
4
+ license: MIT
5
+ metadata:
6
+ author: Respira for WordPress
7
+ author_url: https://respira.press
8
+ version: 2.1.0
9
+ mcp-server: respira-wordpress
10
+ category: migration
11
+ ---
12
+
1
13
  # Migrate Beaver Builder to Bricks
2
14
 
3
- **Version:** 2.0.0
4
- **Updated:** 2026-06-30
5
- **Freshly updated:** v2.0.0 wires in current Respira safety and precision. Pre-migration now inventories source pages with `respira_find_builder_targets`. Every write is preceded by a `respira_get_snapshot`, and the existing draft-duplicate path is kept. After the first `respira_inject_builder_content`, validation issues (collapsed column widths from the row/column-to-container translation, broken parent refs, a misconverted module) are corrected surgically with `respira_find_element` + `respira_update_element` (and `respira_batch_update` for multi-element or multi-page fixes) instead of re-injecting whole pages. Snapshot restore and draft deletion are now explicit rollback paths. Reflects the current 16 supported builders.
15
+ **Version:** 2.1.0
16
+ **Updated:** 2026-08-04
17
+ **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.
6
18
 
7
19
  Full-site migration from Beaver Builder to Bricks Builder. Audits every Beaver Builder page, maps modules to their Bricks equivalents, builds a migration plan for approval, and executes page-by-page conversion into Bricks' JSON format — all through duplicates so your live site stays untouched. Use this skill whenever someone mentions migrating from Beaver Builder to Bricks, switching from BB to Bricks, converting Beaver Builder pages to Bricks, or replacing Beaver Builder with Bricks.
8
20
 
@@ -159,6 +171,7 @@ For each approved page:
159
171
  ### Phase 4: Post-Migration Verification
160
172
 
161
173
  1. Summarize all migrated pages with status:
174
+ - Design tokens registered in Bricks' global styles (token names and counts)
162
175
  - Clean migrations (no issues)
163
176
  - Migrations with warnings (flagged items needing review)
164
177
  - Failed migrations (if any)
@@ -172,6 +185,10 @@ For each approved page:
172
185
  - How to preview Bricks pages
173
186
  - How to delete duplicates if not wanted
174
187
 
188
+ ## Design Tokens
189
+
190
+ Conversion 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.
191
+
175
192
  ## Safety Model
176
193
 
177
194
  - Read-only analysis first — full Beaver Builder content audit before any changes
@@ -1,8 +1,20 @@
1
+ ---
2
+ name: migrate-beaver-builder-to-gutenberg
3
+ description: "Use when the user says 'migrate beaver builder to gutenberg', 'convert beaver builder to blocks', or 'move beaver builder to the block editor'. Reads the Beaver Builder flat node map, maps modules to core blocks, and creates draft duplicates for review."
4
+ license: MIT
5
+ metadata:
6
+ author: Respira for WordPress
7
+ author_url: https://respira.press
8
+ version: 2.1.0
9
+ mcp-server: respira-wordpress
10
+ category: migration
11
+ ---
12
+
1
13
  # Migrate Beaver Builder to Gutenberg
2
14
 
3
- **Version:** 2.0.0
4
- **Updated:** 2026-06-30
5
- **Freshly updated:** v2.0.0 wires in current Respira safety and precision. Pre-migration now inventories source pages with `respira_find_builder_targets`. Every write is preceded by a `respira_get_snapshot`, and the existing draft-duplicate path is kept. After the initial block-markup write (`respira_update_page` / `respira_update_post`), validation issues (collapsed column widths, malformed block markup, a misconverted module) are corrected surgically with `respira_find_element` + `respira_update_element` (and `respira_batch_update` for multi-block or multi-page fixes) instead of rewriting whole pages. Snapshot restore and draft deletion are now explicit rollback paths. Reflects the current 16 supported builders.
15
+ **Version:** 2.1.0
16
+ **Updated:** 2026-08-04
17
+ **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.
6
18
 
7
19
  Full-site migration from Beaver Builder to the WordPress block editor (Gutenberg). Audits every Beaver Builder page, maps modules to their Gutenberg block equivalents, builds a migration plan for approval, and executes page-by-page conversion into native block markup — all through duplicates so your live site stays untouched. Use this skill whenever someone mentions migrating from Beaver Builder to Gutenberg, switching from Beaver Builder to blocks, converting Beaver Builder pages to the block editor, or moving away from Beaver Builder to native WordPress.
8
20
 
@@ -156,6 +168,7 @@ For each approved page:
156
168
  ### Phase 4: Post-Migration Verification
157
169
 
158
170
  1. Summarize all migrated pages with status:
171
+ - Design tokens registered in the block editor's global styles (token names and counts)
159
172
  - Clean migrations (no issues)
160
173
  - Migrations with warnings (flagged items needing review)
161
174
  - Failed migrations (if any)
@@ -169,6 +182,10 @@ For each approved page:
169
182
  - How to preview pages in the block editor
170
183
  - How to delete duplicates if not wanted
171
184
 
185
+ ## Design Tokens
186
+
187
+ 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.
188
+
172
189
  ## Safety Model
173
190
 
174
191
  - Read-only analysis first — full Beaver Builder content audit before any changes
@@ -1,8 +1,20 @@
1
+ ---
2
+ name: migrate-brizy-to-gutenberg
3
+ description: "Use when the user says 'migrate brizy to gutenberg', 'convert brizy to blocks', or 'replace brizy with native wordpress'. Parses the Brizy JSON data, maps elements to core blocks, and creates draft duplicates for review."
4
+ license: MIT
5
+ metadata:
6
+ author: Respira for WordPress
7
+ author_url: https://respira.press
8
+ version: 2.1.0
9
+ mcp-server: respira-wordpress
10
+ category: migration
11
+ ---
12
+
1
13
  # Migrate Brizy to Gutenberg
2
14
 
3
- **Version:** 2.0.0
4
- **Updated:** 2026-06-30
5
- **Freshly updated:** v2.0.0 weaves in the current Respira safety and precision flow `respira_find_builder_targets` to inventory and scope source pages up front, a `respira_get_snapshot` checkpoint before any write, and surgical fixes via `respira_find_element` + `respira_update_element` (and `respira_batch_update` for multi-element or multi-page corrections) instead of rewriting whole pages. Rollback is now explicit (restore the snapshot, delete the draft duplicates). Reflects the current 16 supported builders.
15
+ **Version:** 2.1.0
16
+ **Updated:** 2026-08-04
17
+ **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.
6
18
 
7
19
  Full-site migration from Brizy Builder to the WordPress block editor (Gutenberg). Audits every Brizy-built page, maps components to their Gutenberg block equivalents, builds a migration plan for approval, and executes page-by-page conversion into native block markup — all through duplicates so your live site stays untouched. Use this skill whenever someone mentions migrating from Brizy to Gutenberg, switching from Brizy to blocks, converting Brizy pages to the block editor, or moving away from Brizy to native WordPress.
8
20
 
@@ -158,6 +170,7 @@ For each approved page:
158
170
  ### Phase 4: Post-Migration Verification
159
171
 
160
172
  1. Summarize all migrated pages with status:
173
+ - Design tokens registered in the block editor's global styles (token names and counts)
161
174
  - Clean migrations (no issues)
162
175
  - Migrations with warnings (flagged items needing review)
163
176
  - Failed migrations (if any)
@@ -171,6 +184,10 @@ For each approved page:
171
184
  - How to preview pages in the block editor
172
185
  - How to delete duplicates if not wanted
173
186
 
187
+ ## Design Tokens
188
+
189
+ 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.
190
+
174
191
  ## Safety Model
175
192
 
176
193
  - Read-only analysis first — full Brizy content audit before any changes
@@ -1,8 +1,20 @@
1
+ ---
2
+ name: migrate-divi-to-breakdance
3
+ description: "Use when the user says 'migrate divi to breakdance', 'convert divi to breakdance', or 'rebuild divi pages in breakdance'. Parses Divi shortcodes, maps modules to Breakdance elements, and creates draft duplicates for review."
4
+ license: MIT
5
+ metadata:
6
+ author: Respira for WordPress
7
+ author_url: https://respira.press
8
+ version: 2.1.0
9
+ mcp-server: respira-wordpress
10
+ category: migration
11
+ ---
12
+
1
13
  # Migrate Divi to Breakdance
2
14
 
3
- **Version:** 2.0.0
4
- **Updated:** 2026-06-30
5
- **Freshly updated:** v2.0.0 weaves in the current Respira safety and precision flow — `respira_find_builder_targets` to inventory and scope the Divi source pages up front, a `respira_get_snapshot` checkpoint before any write, and surgical fixes via `respira_find_element` + `respira_update_element` (and `respira_batch_update` for multi-element or multi-page corrections) instead of re-injecting whole pages. Rollback is now explicit (restore the snapshot, delete the draft duplicates). Reflects the current 16 supported builders.
15
+ **Version:** 2.1.0
16
+ **Updated:** 2026-08-04
17
+ **Freshly updated:** v2.1.0 adds design-token awareness: conversion writes now register the colors and typography they carry as named design tokens in Breakdance'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.
6
18
 
7
19
  Converts Divi-built WordPress pages to Breakdance Builder. Parses Divi's shortcode-based content from post_content, maps each module to its Breakdance element equivalent, generates a migration plan for approval, and writes Breakdance content to the target pages. Use this skill whenever someone wants to move from Divi to Breakdance, switch builders from Divi to Breakdance, or rebuild Divi pages in Breakdance.
8
20
 
@@ -213,6 +225,7 @@ For each approved page:
213
225
  ### Phase 4: Post-Migration Verification
214
226
 
215
227
  1. Summarize migrations:
228
+ - Design tokens registered in Breakdance's global styles (token names and counts)
216
229
  - Pages migrated, elements created, items flagged
217
230
  2. For each migrated page:
218
231
  - Link to Breakdance editor
@@ -231,6 +244,10 @@ For each approved page:
231
244
  - [ ] Compare with Divi original
232
245
  - [ ] Check for Divi shortcode remnants
233
246
 
247
+ ## Design Tokens
248
+
249
+ Conversion writes now register the colors and typography they carry as named design tokens in Breakdance'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.
250
+
234
251
  ## Safety Model
235
252
 
236
253
  - Read-only analysis first — full content scan before any changes
@@ -1,8 +1,20 @@
1
+ ---
2
+ name: migrate-divi-to-bricks
3
+ description: "Use when the user says 'migrate divi to bricks', 'convert divi to bricks', or 'rebuild divi pages in bricks'. Parses Divi shortcode content, maps modules to Bricks elements, and generates draft duplicates for review."
4
+ license: MIT
5
+ metadata:
6
+ author: Respira for WordPress
7
+ author_url: https://respira.press
8
+ version: 2.1.0
9
+ mcp-server: respira-wordpress
10
+ category: migration
11
+ ---
12
+
1
13
  # Migrate Divi to Bricks
2
14
 
3
- **Version:** 2.0.0
4
- **Updated:** 2026-06-30
5
- **Freshly updated:** v2.0.0 weaves in the current Respira safety and precision flow — `respira_find_builder_targets` to inventory and scope the Divi source pages up front, a `respira_get_snapshot` checkpoint before any write, and surgical fixes via `respira_find_element` + `respira_update_element` (and `respira_batch_update` for multi-element or multi-page corrections) instead of re-injecting whole pages. Rollback is now explicit (restore the snapshot, delete the draft duplicates). Reflects the current 16 supported builders.
15
+ **Version:** 2.1.0
16
+ **Updated:** 2026-08-04
17
+ **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.
6
18
 
7
19
  Converts Divi-built WordPress pages to Bricks Builder. Parses Divi's shortcode-based content from post_content, maps each module to its Bricks element 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 Divi to Bricks, replace the Divi Builder with Bricks, or rebuild Divi pages in Bricks.
8
20
 
@@ -223,6 +235,7 @@ For each approved page:
223
235
  ### Phase 4: Post-Migration Verification
224
236
 
225
237
  1. Summarize migrations:
238
+ - Design tokens registered in Bricks' global styles (token names and counts)
226
239
  - Pages migrated, elements created, items flagged
227
240
  2. For each migrated page:
228
241
  - Link to Bricks editor
@@ -240,6 +253,10 @@ For each approved page:
240
253
  - [ ] Compare with Divi original
241
254
  - [ ] Check for any Divi shortcode remnants
242
255
 
256
+ ## Design Tokens
257
+
258
+ Conversion 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.
259
+
243
260
  ## Safety Model
244
261
 
245
262
  - Read-only analysis first — full content scan before any changes
@@ -1,8 +1,20 @@
1
+ ---
2
+ name: migrate-divi-to-gutenberg
3
+ description: "Use when the user says 'migrate divi to gutenberg', 'convert divi to blocks', 'get off divi', or 'decommission divi'. Parses Divi shortcodes, maps modules to core blocks, and creates draft duplicates for review."
4
+ license: MIT
5
+ metadata:
6
+ author: Respira for WordPress
7
+ author_url: https://respira.press
8
+ version: 2.1.0
9
+ mcp-server: respira-wordpress
10
+ category: migration
11
+ ---
12
+
1
13
  # Migrate Divi to Gutenberg
2
14
 
3
- **Version:** 2.0.0
4
- **Updated:** 2026-06-30
5
- **Freshly updated:** v2.0.0 weaves in the current Respira safety and precision flow `respira_find_builder_targets` to inventory and scope the Divi source pages up front, a `respira_get_snapshot` checkpoint before any write, and surgical fixes via `respira_find_element` + `respira_update_element` (and `respira_batch_update` for multi-block or multi-page corrections) instead of rewriting whole pages. Rollback is now explicit (restore the snapshot, delete the draft duplicates). Reflects the current 16 supported builders.
15
+ **Version:** 2.1.0
16
+ **Updated:** 2026-08-04
17
+ **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.
6
18
 
7
19
  Converts Divi-built WordPress pages to native Gutenberg blocks. Parses Divi's shortcode-based content from post_content, maps each module 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 Divi to Gutenberg, eliminate the Divi dependency, switch to native blocks, or simplify their WordPress stack by removing Elegant Themes' builder.
8
20
 
@@ -231,6 +243,7 @@ For each approved page:
231
243
  ### Phase 4: Post-Migration Verification
232
244
 
233
245
  1. Summarize all migrations
246
+ - Design tokens registered in the block editor's global styles (token names and counts)
234
247
  2. For each migrated page:
235
248
  - Link to edit in Gutenberg
236
249
  - Flagged items
@@ -246,6 +259,10 @@ For each approved page:
246
259
  - [ ] Check page speed improvement
247
260
  - [ ] Review for Divi shortcode remnants in content
248
261
 
262
+ ## Design Tokens
263
+
264
+ 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.
265
+
249
266
  ## Safety Model
250
267
 
251
268
  - Read-only analysis first — full content scan before any changes
@@ -1,14 +1,26 @@
1
+ ---
2
+ name: migrate-elementor-to-breakdance
3
+ description: "Use when the user says 'migrate elementor to breakdance', 'convert elementor to breakdance', or 'rebuild elementor pages in breakdance'. Maps Elementor widgets to Breakdance elements and creates draft duplicates for review."
4
+ license: MIT
5
+ metadata:
6
+ author: Respira for WordPress
7
+ author_url: https://respira.press
8
+ version: 2.1.0
9
+ mcp-server: respira-wordpress
10
+ category: migration
11
+ ---
12
+
1
13
  # Migrate Elementor to Breakdance
2
14
 
3
- **Version:** 2.0.0
4
- **Updated:** 2026-06-30
5
- **Freshly updated:** v2.0.0 wires in current Respira safety and precision. Pre-migration now inventories source pages with `respira_find_builder_targets`. Every write is preceded by a `respira_get_snapshot`, and the existing draft-duplicate path is kept. After the initial `respira_inject_builder_content`, validation issues (column widths, broken refs) are corrected surgically with `respira_find_element` + `respira_update_element` (and `respira_batch_update` for multi-element or multi-page fixes) instead of re-injecting whole pages. Snapshot restore and draft deletion are now explicit rollback paths. Reflects the current 16 supported builders.
15
+ **Version:** 2.1.0
16
+ **Updated:** 2026-08-04
17
+ **Freshly updated:** v2.1.0 adds design-token awareness: conversion writes now register the colors and typography they carry as named design tokens in Breakdance'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.
6
18
 
7
19
  Converts Elementor-built WordPress pages to Breakdance Builder. Reads Elementor's JSON widget tree from post meta, maps each widget to its Breakdance element equivalent, generates a migration plan for approval, and writes Breakdance content to the target pages. Use this skill whenever someone wants to move from Elementor to Breakdance, switch builders from Elementor to Breakdance, or rebuild Elementor pages in Breakdance.
8
20
 
9
21
  ## What This Skill Does
10
22
 
11
- Breakdance is a newer builder created by the Oxygen team with a focus on clean output and familiar visual editing. Both Elementor and Breakdance are widget/element-based builders, making this a relatively smooth migration path. The main challenge is mapping Elementor's JSON widget tree (`_elementor_data`) to Breakdance's post meta format, translating settings names, and handling the structural differences in how each builder handles sections, columns, and responsive design. Both sit among the 17 page builders Respira reads and writes natively, so extraction and injection run through the same builder-aware tooling Respira uses everywhere else.
23
+ Breakdance is a newer builder created by the Oxygen team with a focus on clean output and familiar visual editing. Both Elementor and Breakdance are widget/element-based builders, making this a relatively smooth migration path. The main challenge is mapping Elementor's JSON widget tree (`_elementor_data`) to Breakdance's post meta format, translating settings names, and handling the structural differences in how each builder handles sections, columns, and responsive design. Both sit among the 16 page builders Respira reads and writes natively, so extraction and injection run through the same builder-aware tooling Respira uses everywhere else.
12
24
 
13
25
  **Handles:**
14
26
  - Section/Column layouts → Breakdance Section/Div elements
@@ -189,6 +201,7 @@ For each approved page:
189
201
  ### Phase 4: Post-Migration Verification
190
202
 
191
203
  1. Summarize all migrations:
204
+ - Design tokens registered in Breakdance's global styles (token names and counts)
192
205
  - Pages migrated, widgets converted, items flagged
193
206
  2. For each migrated page:
194
207
  - Link to edit in Breakdance
@@ -204,6 +217,10 @@ For each approved page:
204
217
  - [ ] Check Breakdance's CSS output for clean rendering
205
218
  - [ ] Compare with Elementor original
206
219
 
220
+ ## Design Tokens
221
+
222
+ Conversion writes now register the colors and typography they carry as named design tokens in Breakdance'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.
223
+
207
224
  ## Safety Model
208
225
 
209
226
  - Read-only analysis first — full content scan before any changes
@@ -1,14 +1,26 @@
1
+ ---
2
+ name: migrate-elementor-to-bricks
3
+ description: "Use when the user says 'migrate elementor to bricks', 'convert elementor to bricks', or 'move my site from elementor to bricks'. Reads the Elementor JSON widget data, maps each widget to its Bricks equivalent, and creates draft duplicates with clean Bricks JSON."
4
+ license: MIT
5
+ metadata:
6
+ author: Respira for WordPress
7
+ author_url: https://respira.press
8
+ version: 2.1.0
9
+ mcp-server: respira-wordpress
10
+ category: migration
11
+ ---
12
+
1
13
  # Migrate Elementor to Bricks
2
14
 
3
- **Version:** 2.0.0
4
- **Updated:** 2026-06-30
5
- **Freshly updated:** v2.0.0 wires in current Respira safety and precision. Pre-migration now inventories source pages with `respira_find_builder_targets`. Every write is preceded by a `respira_get_snapshot`, and the existing draft-duplicate path is kept. After the first `respira_inject_builder_content`, validation issues (column widths, broken refs) are corrected surgically with `respira_find_element` + `respira_update_element` (and `respira_batch_update` for multi-element or multi-page fixes) instead of re-injecting whole pages. Snapshot restore and draft deletion are now explicit rollback paths. Reflects the current 16 supported builders.
15
+ **Version:** 2.1.0
16
+ **Updated:** 2026-08-04
17
+ **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.
6
18
 
7
19
  Converts Elementor-built WordPress pages to Bricks Builder. Reads Elementor's JSON widget tree from post meta, maps each widget to its closest Bricks element 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 Elementor to Bricks, rebuild Elementor pages in Bricks, or switch page builders from Elementor to Bricks.
8
20
 
9
21
  ## What This Skill Does
10
22
 
11
- Elementor and Bricks are both visual page builders, but they store content in fundamentally different formats — Elementor uses a nested JSON widget tree in `_elementor_data`, while Bricks uses a flat-ish JSON array in `_bricks_page_content_2`. This skill bridges that gap by reading every Elementor widget, understanding its purpose, and recreating it as the appropriate Bricks element. Both Elementor and Bricks are among the 17 page builders Respira reads and writes natively, so the extraction and injection run through the same builder-aware tooling Respira uses everywhere else.
23
+ Elementor and Bricks are both visual page builders, but they store content in fundamentally different formats — Elementor uses a nested JSON widget tree in `_elementor_data`, while Bricks uses a flat-ish JSON array in `_bricks_page_content_2`. This skill bridges that gap by reading every Elementor widget, understanding its purpose, and recreating it as the appropriate Bricks element. Both Elementor and Bricks are among the 16 page builders Respira reads and writes natively, so the extraction and injection run through the same builder-aware tooling Respira uses everywhere else.
12
24
 
13
25
  **Handles:**
14
26
  - Section/Column layouts → Bricks Section/Container elements
@@ -190,6 +202,7 @@ For each approved page:
190
202
  ### Phase 4: Post-Migration Verification
191
203
 
192
204
  1. Summarize all migrations:
205
+ - Design tokens registered in Bricks' global styles (token names and counts)
193
206
  - Pages migrated successfully
194
207
  - Total widgets converted
195
208
  - Items flagged for manual attention
@@ -206,6 +219,10 @@ For each approved page:
206
219
  - [ ] Check forms and interactive elements
207
220
  - [ ] Compare side-by-side with Elementor original
208
221
 
222
+ ## Design Tokens
223
+
224
+ Conversion 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.
225
+
209
226
  ## Safety Model
210
227
 
211
228
  - Read-only analysis first — full Elementor content scan before any changes