Best for
- Use when the user says 'migrate thrive architect to gutenberg', 'convert thrive to blocks', or 'replace thrive architect with native wordpress'.
respira-press/agent-skills-wordpress/skills/migrate-thrive-architect-to-gutenberg/SKILL.md
Use when the user says 'migrate thrive architect to gutenberg', 'convert thrive to blocks', or 'replace thrive architect with native wordpress'. Parses Thrive Architect content, maps elements to core blocks, 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 the block editor's own global styles, and converted pages reference those tokens instead of carry…
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-thrive-architect-to-gutenberg"Inspect the Agent Skill "migrate-thrive-architect-to-gutenberg" from https://github.com/respira-press/agent-skills-wordpress/blob/10821eaabe362fe9052f6ee81ecdd62e5d2f2980/skills/migrate-thrive-architect-to-gutenberg/SKILL.md at commit 10821eaabe362fe9052f6ee81ecdd62e5d2f2980. 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. Detect Thrive Architect presence via respiragetbuilderinfo or respiralistplugins. 3. Inventory all Thrive-built content: - respiralistpages and respiralistposts — ident…
1. Verify Respira + MCP connection via respiragetsitecontext. If unavailable, stop and show setup guidance. 2. Detect Thrive Architect presence via respiragetbuilderinfo or respiralistplugins. 3. Inventory all Thrive-built content: - respiralistpages and respiralistposts — ident…
Present a structured migration plan:
1. Extract Thrive content via respiraextractbuildercontent with builder=thrive 2. Map each Thrive element to Gutenberg blocks: - Content Boxes → blocks - Columns → with children - Text → Parse into and blocks - Image → with src, alt, caption - Button → wrapper with child - Video…
1. Summarize all migrated pages with status: - Design tokens registered in the block editor's global styles (token names and counts) - Clean migrations (no issues) - Migrations with warnings (flagged items needing review) - Failed migrations (if any) 2. List all manual review it…
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 | 95/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 40 | 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 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.
Full-site migration from Thrive Architect to the WordPress block editor (Gutenberg). Audits every Thrive-built page, maps elements 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 Thrive Architect to Gutenberg, switching from Thrive to blocks, converting Thrive pages to the block editor, or moving away from Thrive Architect to native WordPress.
Thrive Architect is a conversion-focused page builder with a strong emphasis on marketing elements — lead generation forms, countdown timers, testimonials, and content reveal animations. It stores content in its own custom format. Gutenberg uses a flat block structure in post_content with HTML comment delimiters. The migration is moderate in complexity: standard content elements translate well, but Thrive's marketing-specific components have no direct Gutenberg equivalents and require alternative solutions.
This skill reads every Thrive Architect page, extracts the builder content, translates each element to its Gutenberg block equivalent, and writes the result to duplicate pages in native block markup — giving you a complete parallel version of your site to review before going live.
Handles:
Source: Thrive Architect
respira_extract_builder_content with builder=thriveTarget: Gutenberg (Block Editor)
post_content as HTML with block comment delimiters<!-- wp:paragraph --><p>Text</p><!-- /wp:paragraph -->respira_update_page / respira_update_post)paragraph, heading, image, buttons, columns, group, html, video, separator, quote, list, embed, etc.respira_get_site_context. If unavailable, stop and show setup guidance.respira_get_builder_info or respira_list_plugins.respira_list_pages and respira_list_posts — identify all contentrespira_find_builder_targets with builder=thrive — find Thrive-managed pagesrespira_extract_builder_content with builder=thrivePresent a structured migration plan:
## Thrive Architect → Gutenberg Migration Plan
### Site Overview
- Total Thrive pages: X
- Simple pages (direct mapping): X
- Moderate pages (some manual review needed): X
- Complex pages (significant manual work): X
### Element Mapping
| Thrive Element | Gutenberg Block | Notes |
|---|---|---|
| Content Box | Group | Container mapping |
| Columns | Columns / Column | Layout structure |
| Text | Paragraph / Heading | Content parsed into blocks |
| Image | Image | Direct mapping |
| Button | Buttons > Button | Wrapped in container |
| Lead Gen Form | [MANUAL] | Needs form plugin replacement |
| Countdown | [MANUAL] | No native equivalent |
| ... | ... | ... |
### Migration Order
1. [Page Title] — Simple — estimated 2 min
2. [Page Title] — Moderate — estimated 5 min
...
### Items Requiring Manual Attention
- [Page X] — Thrive Leads form (needs replacement with form plugin)
- [Page Y] — Countdown timer (needs plugin or removal)
- [Page Z] — A/B test variant (winning variant migrated, others documented)
- Landing page templates — must be rebuilt in Gutenberg
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.
For each approved page:
respira_extract_builder_content with builder=thrive<!-- wp:group --> blocks<!-- wp:columns --> with <!-- wp:column --> children<!-- wp:paragraph --> and <!-- wp:heading --> blocks<!-- wp:image --> with src, alt, caption<!-- wp:buttons --> wrapper with <!-- wp:button --> child<!-- wp:video --> or <!-- wp:embed --> block<!-- wp:separator --> block<!-- wp:quote --> block (basic mapping)<!-- wp:list --> block<!-- wp:html --> block<!-- wp:paragraph --><p>[MIGRATION NOTE: Thrive Lead Gen form was here — replace with form plugin shortcode]</p><!-- /wp:paragraph -->respira_get_snapshot checkpoint of the target before any write, so the page can be restored exactly if the conversion needs unwindingrespira_create_page_duplicate or respira_create_post_duplicatepost_content via respira_update_page or respira_update_postrespira_find_element and correct it in place with respira_update_element. For repeated corrections across many blocks or several migrated pages, batch them with respira_batch_update rather than regenerating and re-writing whole pages.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.
respira_get_snapshot captures the target so it can be returned to its exact prior staterespira_restore_snapshot, or delete the draft duplicates, to undo a migration cleanlyThis skill converts Thrive Architect page structures to Gutenberg block markup and creates duplicates for review.
It cannot:
It can:
Core WordPress tools
respira_get_site_contextrespira_get_builder_inforespira_list_pagesrespira_list_postsrespira_list_pluginsrespira_find_builder_targetsrespira_extract_builder_contentrespira_get_snapshotrespira_restore_snapshotrespira_find_elementrespira_update_elementrespira_batch_updaterespira_create_page_duplicaterespira_create_post_duplicaterespira_update_pagerespira_update_postrespira_read_pagerespira_read_postAfter run completion, send fire-and-forget usage tracking to:
POST https://www.respira.press/api/skills/track-usageInclude:
skill_slug = migrate-thrive-architect-to-gutenbergNever block user flow on telemetry failure.
Built by Respira Team https://respira.press/skills/migrate-thrive-architect-to-gutenberg
Alternatives
respira-press/agent-skills-wordpress
Use when the user says 'migrate elementor to gutenberg', 'convert elementor to blocks', 'remove the elementor dependency', or 'go back to native wordpress'. Maps Elementor widgets to core blocks and creates draft duplicates for review.
respira-press/agent-skills-wordpress
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.
elementalsouls/Claude-BugHunter
Hunting skill for auth bypass vulnerabilities. Built from 12 public bug bounty reports across SAML XSW / parser-differential (GitHub Enterprise CVE-2025-25291/25292), SAML signature stripping (Uber, Rocket.Chat, samlify CVE-2025-47949), SAML domain enforcement bypass via control characters (HackerOne 2024), partner-portal cross-IdP assertion reuse (Slack), WordPress XMLRPC bypassing SSO (Uber), JWT alg-confusion HS256/RS256 (Jitsi), JWT signature-validation skip (Linktree, Newspack), and token-a
respira-press/agent-skills-wordpress
Use when asked to audit, score, or health-check a WordPress site or page. Runs SEO, AEO, readability, accessibility, performance, RankMath, and Core Web Vitals analyzers and presents a unified report with prioritised fixes.