Full-stack-skills stitch-uviewpro-components
Convert Stitch designs into uni-app + Vue 3 + uView Pro pages and components. Use when the user mentions uView Pro, uviewpro, or uni-app Vue 3 conversion from Stitch. Retrieves screen HTML via Stitch MCP get_screen, maps Tailwind to rpx/theme, enforces u-* component contracts (u-tabs, u-form, u-picker, u-card) with script setup.
git clone https://github.com/partme-ai/full-stack-skills
T=$(mktemp -d) && git clone --depth=1 https://github.com/partme-ai/full-stack-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/stitch-skills/stitch-uviewpro-components" ~/.claude/skills/partme-ai-full-stack-skills-stitch-uviewpro-components && rm -rf "$T"
skills/stitch-skills/stitch-uviewpro-components/SKILL.mdStitch to uni-app + uView Pro Components
Constraint: Only use this skill when the user explicitly mentions "Stitch" and converting Stitch screens to uni-app + Vue 3 + uView Pro (pages/, components/, .vue or .uvue, u-* components).
You are a frontend engineer turning Stitch designs into clean, modular uni-app + uView Pro code. Use Stitch MCP (or stitch-mcp-get-screen) to retrieve screen metadata and HTML; use scripts and resources in this skill for reliable fetch and quality checks.
Prerequisites
- Stitch MCP Server (https://stitch.withgoogle.com/docs/mcp/guide/)
- uni-app / HBuilderX or Vue CLI for uni-app (Vue 3)
- Stitch project and screen IDs — two ways: (1) From a Stitch design URL: parse projectId from path and screenId from
query (see stitch-mcp-get-screen). (2) When no URL or when browsing: use stitch-mcp-list-projects and stitch-mcp-list-screens to discover and obtain IDs.node-id
Official Documentation
- uView Pro (Vue 3): Official · Guide · Components · Tools · Layout / Templates
- Full links and usage: references/official.md
Retrieval and Networking
- Discover Stitch MCP prefix: Run
to find the prefix (e.g.list_tools
).mcp_stitch__stitch: - Resolve projectId and screenId: (1) If the user provided a Stitch design URL, parse projectId from the path (segment after
) and screenId from the/projects/
query parameter. (2) Otherwise, or when the user wants to choose a project/screen, call list_projects (e.g. filternode-id
) then list_screens with the chosen projectId to get screenIds.view=owned - Fetch screen metadata: Call
with[prefix]:get_screen
andprojectId
to get design JSON,screenId
,htmlCode.downloadUrl
, dimensions, deviceType.screenshot.downloadUrl - High-reliability HTML download: AI fetch tools can fail on Google Cloud Storage URLs. Use Bash to run the skill script:
Ensure the URL is quoted.bash scripts/fetch-stitch.sh "<htmlCode.downloadUrl>" "temp/source.html" - Visual reference: Use
to confirm layout and details.screenshot.downloadUrl
Architectural Rules
- Modular pages/components: Split the design into pages under
and shared components underpages/
; avoid one giant page.components/ - Logic isolation: Use
; put event handlers and composables in appropriate modules.<script setup> - Data decoupling: Move static text, image URLs, and lists into
or page data.data/ - uView Pro only (use framework components when available): Use
components only; do not use rawu-*
,<button>
,<input>
for buttons/inputs/modals when u-* exists. Use u-card for cards (use<div>
when only a title, or u-section with #right when title + right content), u-text for label hints and tips (type="info"/"warning", size="24"), u-line / u-divider for dividers; do not use view/text + custom class (.card, .card-title, .label-optional, .tips-text, .unit). Tab bar must use u-tabs; do not use custom tab-header/tab-item. Before drafting a page, read references/component-index.md and references/contract.md for mapping rules, slot syntax (#label, #suffix, #right), and anti-patterns (Picker v-model + :range 1D; Radio value not name; no slot="...").title - Project-specific: Omit third-party license headers from generated pages/components.
Execution Steps
- Environment: Ensure uni-app project has uView Pro installed and configured (Vue 3, main.js, uni.scss).
- Data layer: Create or update data sources (e.g.
) from the design content.data/mockData.js - Page drafting: Use
as base; replace placeholder with real page name and uView Pro tags per contract.resources/page-template.vue - Wiring: Register pages in
; add tabBar or navigation as needed.pages.json - Quality check: Verify against
; run in HBuilderX or CLI to confirm on simulator/device.resources/architecture-checklist.md
Official API alignment (avoid Stitch-style mistakes)
When converting Stitch HTML to uView Pro, verify against references/contract.md and uView Pro docs. Common corrections:
| Element | Wrong (often from Stitch/other UI) | Correct (uView Pro) |
|---|---|---|
| Tab switcher | Custom + | Always use ; do not build tabs with raw views/divs |
| Tabs props | , , , | :current, @change(index) (number), active-color, inactive-color |
| Picker | , (2D) | v-model="show"; mode="selector" + :range (1D array, e.g. ); @confirm; do not use :columns |
| Radio | , , | value="opt1" (not name), label for text; no customStyle/placement |
| Slots (Vue 3) | , | #label, #suffix, v-slot:label — never |
| Form-item label | | #label or v-slot:label |
| Input type=select | — | Pair with u-picker; use :select-open bound to picker visibility |
Pre-generation checklist — before writing the template, ensure: (1) Card/section use u-card (with
title or + u-section for title+right), not view.card + card-header + card-title. (2) Label hints and tips use u-text (type="info"/"warning", size="24"), not text with .label-optional/.tips-text/.unit. (3) Divider use u-line or u-divider, not view + border. (4) Tab switcher uses u-tabs, not custom divs. (5) All slots use #slotname or v-slot:slotname. (6) Picker uses v-model and :range (1D). (7) Radio uses value and label, not name/customStyle/placement.
Integration with This Repo
- Get screen: Use stitch-mcp-get-screen with projectId and screenId. Obtain IDs either by parsing a Stitch design URL (projectId from path, screenId from
) or by using stitch-mcp-list-projects and stitch-mcp-list-screens when no URL is given or when the user needs to browse/select.node-id - Design spec: If Stitch was generated with stitch-ui-design-spec-uviewpro constraints, map to uni-app pages and uView Pro components. If converting from Stitch HTML (e.g.
from get_screen), use references/stitch-html-patterns.md for page structure and form fields; references/tailwind-to-uviewpro.md for Tailwind utility → rpx/theme (spacing, typography, colors, borders, shadows); then references/contract.md for component API and anti-patterns.htmlCode - Design system: If the project has DESIGN.md (from stitch-design-md), align colors and rpx spacing with that system when mapping to uView Pro tokens.
Troubleshooting
- Fetch errors: Quote the URL in the bash command; ensure
is executable.scripts/fetch-stitch.sh - Component mapping: Use references/component-index.md to pick the right u-* for each element; follow references/contract.md for layout (u-row, u-col, u-gap), forms (u-form, u-input), nav (u-navbar, u-tabs, u-tabbar), list (u-swipe-action, u-list), feedback (u-toast, u-modal, u-popup, u-empty, uni.$u). Do not substitute raw HTML for u-* components.
Skill testing (command-triggered)
Testing is triggered by user instruction, not by calling MCP directly. Flow: user pastes the test command below into the chat → Agent runs this skill → resolve URL → call get_screen → fetch/parse design → generate uView Pro code → output page file or full code.
- Test command (paste into Cursor chat):
Use the Stitch skill to convert https://stitch.withgoogle.com/projects/3492931393329678076?node-id=375b1aadc9cb45209bee8ad4f69af450 into a uView Pro page - Expected: Parse projectId and screenId from URL → call Stitch MCP get_screen → generate uni-app + uView Pro .vue (u-navbar, u-tabs, u-form, u-picker, u-radio, etc.) per contract and stitch-html-patterns.
Keywords
English: Stitch, uni-app, uView Pro, Vue 3, u-button, u-navbar, rpx.
中文关键词: Stitch、uni-app、uView Pro、组件。
References
-
Component API: api/component-api.md
-
Examples: examples/usage.md
-
Contract & Patterns:
- references/contract.md (Core mapping rules)
- references/official.md (Official docs links)
- references/stitch-html-patterns.md (HTML structure handling)
- references/tailwind-to-uviewpro.md (Style conversion)
- references/component-index.md (Component list)
-
Resources:
- resources/architecture-checklist.md (QA Checklist)
-
Scripts:
- scripts/fetch-stitch.sh (High-reliability fetcher)
-
Component index (must read) — Full uView Pro component list (80+) with minimal usage; consult when generating so you use u-modal, u-popup, u-action-sheet, u-empty, u-avatar, u-picker, u-tabbar, etc., instead of raw HTML.
-
Stitch HTML patterns — Stitch HTML → uView Pro (page structure, forms); use when converting from get_screen htmlCode.
-
Tailwind → uView Pro — Tailwind utility classes → rpx / theme (spacing, typography, colors, borders, shadows); use so output is framework-native, not raw Tailwind.