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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/stitch-kit:stitch-mcp-list-design-systemsThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
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.
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.
npx claudepluginhub gabelul/stitch-kit --plugin stitch-kitRetrieves 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 using MCP tools to generate DESIGN.md files, semantically documenting design systems (themes, colors, shapes) for consistent UI generation.
Analyzes Stitch projects using MCP Server tools to retrieve screen metadata, HTML/CSS assets, and synthesize semantic design systems into DESIGN.md files.