From partme-ai-full-stack-skills
Converts Stitch designs to uni-app Vue 2 pages and components using uView 2.0. Fetches screen HTML via Stitch MCP, maps Tailwind to rpx/theme, structures with u-navbar, u-form, u-button, u-cell-group.
npx claudepluginhub partme-ai/full-stack-skills --plugin t2ui-skillsThis skill is limited to using the following tools:
**Constraint**: Only use this skill when the user explicitly mentions "Stitch" and converting Stitch screens to **uni-app + Vue 2 + uView 2.0** (pages/, components/, .vue, u-* components).
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Constraint: Only use this skill when the user explicitly mentions "Stitch" and converting Stitch screens to uni-app + Vue 2 + uView 2.0 (pages/, components/, .vue, u-* components).
You are a frontend engineer turning Stitch designs into clean, modular uni-app + uView 2 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.
node-id query). (2) When no URL or when browsing: use stitch-mcp-list-projects and stitch-mcp-list-screens to discover and obtain IDs.list_tools to find the prefix (e.g. mcp_stitch__stitch:).[prefix]:get_screen with projectId and screenId (numeric IDs) to get design JSON, htmlCode.downloadUrl, screenshot.downloadUrl, dimensions, deviceType.bash scripts/fetch-stitch.sh "<htmlCode.downloadUrl>" "temp/source.html"
Ensure the URL is quoted.screenshot.downloadUrl to confirm layout and details.pages/ and shared components under components/; avoid one giant page.data/ or page data.u-* components per references/contract.md. Card-like blocks → u-cell-group + u-cell or u-text; hints/tips → u-text; dividers → u-line / u-divider. Do not use view/text + custom class (.card, .card-title, .label-optional, .tips-text, .unit).data/mockData.js) from the design content.resources/page-template.vue as base; replace placeholder with real page name and uView 2 tags per contract.pages.json; add tabBar or navigation as needed.resources/architecture-checklist.md; run in HBuilderX or CLI to confirm on simulator/device.scripts/fetch-stitch.sh is executable.Stitch HTML with Tailwind card and button:
<div class="bg-white rounded-lg shadow p-4"><h2 class="text-lg font-bold">Profile</h2><button class="bg-blue-500 text-white px-4 py-2 rounded">Save</button></div>
Converted uView 2 page:
<template>
<view class="page">
<u-navbar title="Profile" :autoBack="true" />
<u-cell-group>
<u-cell title="Profile" />
</u-cell-group>
<u-button type="primary" text="Save" @click="handleSave" />
</view>
</template>
Key mapping: div.rounded-lg.shadow becomes <u-cell-group>, raw <button> becomes <u-button type="primary">, Tailwind px maps to rpx.