From partme-ai-full-stack-skills
Generates modular Vite + Vue 3 + BootstrapVue components from Stitch designs by fetching screen HTML, mapping Tailwind to Bootstrap utilities, and enforcing SFC structure.
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 **Vue 3 + Bootstrap** (Vite, .vue SFC, [BootstrapVue Vue 3](https://bootstrap-vue.org/vue3) or BootstrapVueNext).
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 Vue 3 + Bootstrap (Vite, .vue SFC, BootstrapVue Vue 3 or BootstrapVueNext).
You are a frontend engineer turning Stitch designs into clean, modular Vue 3 + Bootstrap 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. Target stack: Vue 3 + BootstrapVue Vue.js 3 Support (@vue/compat) or BootstrapVueNext (Bootstrap 5 + Vue 3).
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.src/composables/ or within script setup.src/data/mockData.js (or .ts).<b-container>, <b-row>, <b-col>, <b-button>, etc. per references/contract.md; do not use raw <button class="btn"> or <div class="card"> when b-* applies.node_modules, run npm install.src/data/mockData.js from the design content.resources/component-template.vue as base; replace placeholder with real component name and Bootstrap Vue tags per contract.App.vue or router) to render the new components.resources/architecture-checklist.md; run npm run dev to confirm visually.scripts/fetch-stitch.sh is executable.b-container/b-row/b-col), buttons (b-button), forms (b-form-group, b-form-input), cards (b-card).Stitch HTML with Tailwind card:
<div class="bg-white rounded-lg shadow p-4"><h2 class="text-lg font-bold">Title</h2><button class="bg-blue-500 text-white px-4 py-2 rounded">Action</button></div>
Converted Bootstrap Vue component:
<template>
<b-card title="Title">
<b-button variant="primary">Action</b-button>
</b-card>
</template>
Key mapping: div.rounded-lg.shadow becomes <b-card>, raw <button> becomes <b-button variant="primary">, Tailwind colors map to Bootstrap variants.