一键导入
optimize
CRO-optimize an existing page — analyzes conversion weaknesses and applies fixes (redesign sections, add trust signals, fix CTAs, improve mobile UX)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
CRO-optimize an existing page — analyzes conversion weaknesses and applies fixes (redesign sections, add trust signals, fix CTAs, improve mobile UX)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Analyze a specific component on any webpage and output a renderer-compatible island layout JSON. Use when reverse-engineering a hero, FAQ, nav, product card, or any UI component into a reusable Lexsis layout.
Route broad or multi-step Lexsis storefront work to focused skills, MCP tools, and reference knowledge. Do not use when a focused workflow skill clearly matches.
Core orchestrator for Lexsis AI storefront page generation. Routes requests to the correct workflow, manages tool sequencing, and loads reference knowledge on demand. Auto-invoked by commands and agents.
Use Codex Browser to analyze a URL for design extraction, CRO evidence, or competitor research. Use when a task provides a reference or storefront URL.
Analyze a reference webpage into a reproducible Lexsis design brief. Use for competitor or inspiration URLs; not for an existing-page CRO audit.
Configure the Cart V2 drawer — add upsells, progress bars, conditional rules, announcement banners, and checkout customization
| name | optimize |
| description | CRO-optimize an existing page — analyzes conversion weaknesses and applies fixes (redesign sections, add trust signals, fix CTAs, improve mobile UX) |
CRO-optimize an existing page — analyzes conversion weaknesses and applies fixes (redesign sections, add trust signals, fix CTAs, improve mobile UX)
Edit existing pages using section-level operations.
list_pages — find target pageget_page — read current page structure + HTMLvalidate_vibe_page — verify changes are validupdate_page_section(page_id, section_id, { html, css, settings })
update_page_section(page_id, null, { html, css, settings, position })
remove_page_section(page_id, section_id)
move_page_section(page_id, section_id, new_position)
get_page first to understand current structurevalidate_vibe_page before telling user it's doneVisually refresh an existing page using performance data to preserve what works and redesign what does not.
get_workspace_details() → workspace ID, plan tier
get_connected_stores() → store domain, Shopify data
get_brand_kit() → logo, fonts, colors, voice, radius
get_design_md() → brand brief, design philosophy, constraints
These four calls ALWAYS run first. No exceptions.
find_page({ query: "page name or slug" })
Or:
list_pages({ status: "published" })
Then load full page data:
get_page(page_id)
inspect_page_sections(page_id)
Understand: section count, section types, content blocks, current --lx-* variables, islands in use.
get_page_analytics(page_id)
Categorize each section:
Key rule: NEVER redesign sections that are converting well. Analytics data overrides aesthetic preferences.
For each section to change:
update_page_section(page_id, section_id, { html, css, settings })
For reordering (if scroll-depth data suggests better flow):
move_page_section(page_id, section_id, new_position)
All updated sections must use --lx-* CSS variables from current brand kit. No hardcoded colors or fonts.
validate_vibe_page(page_id)
Ensure no broken islands, valid HTML structure, responsive layout intact.
diff_page_versions(page_id, { from: previous_version, to: current_version })
Present structural diff to user for approval before publishing.
publish_page(page_id, { draft: true })
Returns preview_url.
Use Codex Browser to open preview_url, capture desktop and mobile screenshots, and inspect the rendered result. If Browser is unavailable, provide the preview URL and state that visual verification remains manual.
Checklist:
If issues found: update_page_section to fix, then re-verify.
Only after user approves:
publish_page(page_id)
If redesign later hurts metrics: rollback_page_version(page_id, version_id) is available.
| Question | Decision |
|---|---|
| Full rebuild or section-by-section? | >70% sections changing = full rebuild is faster |
| Keep copy or rewrite? | Keep unless analytics show messaging problems |
| Preserve section order? | Yes, unless scroll-depth shows clear drop-off pattern |
| Same section types or new? | Prefer new layouts for freshness; same types if copy fits |
| A/B test old vs new? | Recommend if page has >500 daily visitors |
--lx-* variables)validate_vibe_page with zero errors