From stitch-kit
Lists available Stitch Design Systems across projects or filtered by projectId, returning asset names for apply and update operations. Use before applying themes, updating, or checking existing ones.
npx claudepluginhub gabelul/stitch-kit --plugin stitch-kitThis skill is limited to using the following tools:
Lists all available Stitch Design Systems. These are reusable theme configurations (colors, fonts, roundness, saturation) that can be applied to screens for visual consistency across a project.
Retrieves metadata for Stitch projects including title, design theme, timestamps, and screen list. Use to inspect before generating consistent UI screens; requires explicit Stitch mention.
Analyzes Stitch projects via MCP tools to synthesize semantic design systems into DESIGN.md, extracting style guides and design tokens for colors, typography, spacing from screens.
Create, import, browse, and maintain design system components and tokens. Useful for developers managing UI design assets across projects.
Share bugs, ideas, or general feedback.
Lists all available Stitch Design Systems. These are reusable theme configurations (colors, fonts, roundness, saturation) that can be applied to screens for visual consistency across a project.
Only use this skill when the user explicitly mentions "Stitch".
assetId{
"name": "list_design_systems",
"arguments": {
"projectId": "3780309359108792857"
}
}
projectId — numeric ID only, optional✅ "3780309359108792857"
❌ "projects/3780309359108792857"
If omitted, returns all design systems across all projects.
Returns an array of Asset objects:
{
"assets": [
{
"name": "assets/ds_abc123",
"displayName": "SaaS Dashboard Theme",
"designSystem": {
"theme": {
"colorMode": "LIGHT",
"font": "DM_SANS",
"roundness": "ROUND_EIGHT",
"saturation": 3,
"customColor": "#6366F1",
"backgroundLight": "#FFFFFF",
"backgroundDark": "#18181B"
},
"designTokens": "...",
"styleGuidelines": "..."
}
}
]
}
Present as a readable table:
| # | Name | Font | Color | Mode | Asset ID |
|---|---|---|---|---|---|
| 1 | SaaS Dashboard Theme | DM Sans | #6366F1 | Light | ds_abc123 |
Then offer:
stitch-mcp-apply-design-systemstitch-mcp-update-design-systemstitch-mcp-create-design-systemExtract the name field from each asset — this is the assetId needed for apply_design_system.