From google-stitch
Generates UI screens in Google Stitch from markdown prompt files using MCP tools. Parses sections by markers, sends prompts for generation, fetches images and code, saves to exports and code folders.
How this skill is triggered — by the user, by Claude, or both
Slash command
/google-stitch:generating-stitch-screensThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Orchestrate screen generation in Google Stitch using MCP tools. Reads authored prompt files, sends each section to Stitch for generation, and fetches resulting images and code.
Orchestrate screen generation in Google Stitch using MCP tools. Reads authored prompt files, sends each section to Stitch for generation, and fetches resulting images and code.
Requires Stitch MCP server (@_davideast/stitch-mcp). If MCP tools are not available, display:
Stitch MCP is not configured.
Run /stitch-setup for guided setup, or see the plugin README for manual configuration.
Never fail silently. Always inform the user if MCP is unavailable.
Typically invoked via /stitch-generate or after prompt authoring with MCP available.
design-intent/google-stitch/{feature}/prompt-v{N}.md--- separators, extracting <!-- Layout: --> and <!-- Component: --> markerscreate_project / list_projects)generate_screen_from_text with prompt textfetch_screen_image at full resolution, save to {feature}/exports/ (see WORKFLOW.md for URL transformation)fetch_screen_code, save to {feature}/code/extract_design_context, save design DNAdesign-intent/google-stitch/{feature}/
├── prompt-v{N}.md <- Source prompts
├── exports/ <- Generated images
│ ├── {layout-name}.png
│ ├── {component-1}.png
│ └── {component-2}.png
├── code/ <- Generated code (optional)
│ ├── {layout-name}/
│ └── {component-1}/
└── design-dna.md <- Extracted design context (optional)
Prompt files use --- separators with HTML comment labels:
<!-- Layout: Analytics Dashboard -->
[layout prompt text]
---
<!-- Component: KPI Metrics -->
[component prompt text]
---
<!-- Component: Revenue Chart -->
[component prompt text]
Parse each section independently. Use the label text as the screen name in Stitch.
See WORKFLOW.md for detailed steps, error handling, and retry logic.
See EXAMPLES.md for end-to-end generation scenarios.
See TROUBLESHOOTING.md for MCP-specific issues.
npx claudepluginhub joaquimscosta/arkhe-claude-plugins --plugin google-stitchOrchestrates Stitch UI design workflows: routes from user request through spec, prompt assembly, screen generation, iteration, design system extraction, and framework conversion (Next.js, Svelte, HTML, React Native, SwiftUI).
Creates Stitch UI screens, design systems, variants, and prototypes from briefs, mockups, or product context. Exports Tailwind HTML, screenshots, and local code artifacts. Use for screen exploration, editing Stitch projects, or multi-screen prototypes.
Converts natural-language descriptions or UI spec files into optimized Google Stitch prompts focused on screens, structure, and visual hierarchy. Use for creating, refining, or validating Stitch design directives.