Stitch React Components
This skill is a catalog-normalized import from https://github.com/google-labs-code/stitch-skills at commit 7b53207b94e62911777d53d4238b5f8c88c2b519, source path plugins/stitch-build/skills/react-components. The upstream control file was corrected for this workspace: the verified Stitch MCP surface here is design-system oriented, so screen lookup, screen generation, and screen editing tools must be used only when the current host explicitly exposes them.
When to Use This Skill
- Use when a Stitch screen or export should become modular React components or an existing React surface must be synchronized with newer Stitch evidence.
- The task involves Google Stitch project IDs,
.stitch/ artifacts, DESIGN.md files, Stitch exports, or Stitch-specific validation.
- The broader
stitch-design router points here as the narrowest workflow.
Workflow
- Acquire source HTML and screenshots from
.stitch/designs/, Stitch web exports, or current host-listed screen tools.
- Do not assume
get_screen or list_screens exists in this workspace.
- Record available project and screen identifiers plus the sync timestamp in
.stitch/metadata.json when that evidence exists.
- Extract current color, typography, spacing, and radius tokens from the exported HTML before editing components.
- Move static copy, image URLs, and lists into
src/data/mockData.ts.
- Create small components with
Readonly prop interfaces and isolate interactions in hooks.
- Map Stitch theme values into Tailwind/theme tokens, replace placeholder links with real application routes, and cover dark-mode states instead of scattering raw hex values.
- Run the bundled validator where dependencies are available, then run the app build or dev check.
Local Assets
examples/, resources/, references/, or reference/ are upstream support material when present. Treat SKILL.md as the source of truth if a support file mentions an unavailable MCP tool.
scripts/ are optional helpers. On Windows, prefer PowerShell or Node equivalents unless Git Bash or WSL is actually available.
- Keep generated
.stitch/ files out of commits unless the user explicitly wants them as durable examples.
Corrected Stitch MCP Surface
Verified in this workspace on 2026-06-15: create_project, upload_design_md, create_design_system_from_design_md, list_design_systems, and apply_design_system. This 2026-07-29 source refresh did not re-verify a broader live MCP surface. Do not claim list_projects, list_screens, get_project, get_screen, generate_screen_from_text, edit_screens, or generate_variants were used unless the current host exposes those exact tools in the active tool list.
Cross-Client Portability
This skill is written to stay usable across GitHub Copilot, Claude Code, and Codex.
- GitHub Copilot: keep the folder in a Copilot-visible skill path or wrap the
workflow in project instructions when folder discovery is unavailable.
- Claude Code: keep the folder in a local skills directory or a compatible plugin source.
- Codex: install or sync the folder into
$CODEX_HOME/skills/stitch-react-components and restart Codex after major changes.
MCP Availability And Fallback
Preferred MCP Server: Stitch MCP
- Fallback prompt: "Use the Stitch React Components skill without MCP. Follow the documented local or manual fallback, show the selected tool surface, and report the verification evidence."
- Use local
.stitch/ artifacts, exported HTML or screenshots, bundled scripts, and the Stitch web UI when the host does not expose the needed Stitch MCP operation.
- Do not claim screen lookup, generation, editing, or variant MCP calls unless those tools are present in the active host tool list.
- Do not claim an MCP operation was used when the active host does not expose it.
Anti-Patterns
- Claiming a Stitch screen-generation, screen-editing, or screen-retrieval MCP call succeeded when the active host does not expose that tool.
- Uploading files, screenshots, HTML, markdown, or design assets to Stitch without user-approved destination and artifact details.
- Reading, printing, storing, or committing Stitch API keys, MCP config secrets, cookies, or credential-bearing files.
- Treating generated design or code as final without local render, syntax, or artifact verification.
- Collapsing this workflow into a broader frontend/design skill when Stitch-specific files, project IDs, or design-system assets matter.
Verification Protocol
Before claiming this skill was applied successfully:
- Pass/fail: Every component has typed props or an explicit reason it has no props.
- Pass/fail: Static content is separated from component structure.
- Pass/fail: Generated project code does not carry irrelevant upstream license headers.
- Pass/fail: The rendered app was checked locally or the blocker is documented.
- Pressure-test scenario: Repeat the workflow with Stitch MCP screen tools unavailable and confirm the fallback path remains honest and actionable.
- Success metric: The user can identify the exact artifact, project/design-system target, and verification evidence without relying on unstated MCP behavior.
Related Skills
1---2name: stitch-react-components3description: Convert Stitch HTML and screenshots into modular Vite/React/TypeScript components, or sync existing components to updated Stitch designs, with local architecture and validation checks.4license: Apache-2.05---6# Stitch React Components
7
8This skill is a catalog-normalized import from `https://github.com/google-labs-code/stitch-skills` at commit `7b53207b94e62911777d53d4238b5f8c88c2b519`, source path `plugins/stitch-build/skills/react-components`. The upstream control file was corrected for this workspace: the verified Stitch MCP surface here is design-system oriented, so screen lookup, screen generation, and screen editing tools must be used only when the current host explicitly exposes them.
9
10## When to Use This Skill
11
12- Use when a Stitch screen or export should become modular React components or an existing React surface must be synchronized with newer Stitch evidence.
13- The task involves Google Stitch project IDs, `.stitch/` artifacts, DESIGN.md files, Stitch exports, or Stitch-specific validation.
14- The broader `stitch-design` router points here as the narrowest workflow.
15
16## Workflow
17
181. Acquire source HTML and screenshots from `.stitch/designs/`, Stitch web exports, or current host-listed screen tools.
192. Do not assume `get_screen` or `list_screens` exists in this workspace.
203. Record available project and screen identifiers plus the sync timestamp in `.stitch/metadata.json` when that evidence exists.
214. Extract current color, typography, spacing, and radius tokens from the exported HTML before editing components.
225. Move static copy, image URLs, and lists into `src/data/mockData.ts`.
236. Create small components with `Readonly` prop interfaces and isolate interactions in hooks.
247. Map Stitch theme values into Tailwind/theme tokens, replace placeholder links with real application routes, and cover dark-mode states instead of scattering raw hex values.
258. Run the bundled validator where dependencies are available, then run the app build or dev check.
26
27## Local Assets
28
29- `examples/`, `resources/`, `references/`, or `reference/` are upstream support material when present. Treat `SKILL.md` as the source of truth if a support file mentions an unavailable MCP tool.
30- `scripts/` are optional helpers. On Windows, prefer PowerShell or Node equivalents unless Git Bash or WSL is actually available.
31- Keep generated `.stitch/` files out of commits unless the user explicitly wants them as durable examples.
32
33## Corrected Stitch MCP Surface
34
35Verified in this workspace on 2026-06-15: `create_project`, `upload_design_md`, `create_design_system_from_design_md`, `list_design_systems`, and `apply_design_system`. This 2026-07-29 source refresh did not re-verify a broader live MCP surface. Do not claim `list_projects`, `list_screens`, `get_project`, `get_screen`, `generate_screen_from_text`, `edit_screens`, or `generate_variants` were used unless the current host exposes those exact tools in the active tool list.
36
37<!-- MCP:START -->
38
39<!-- PORTABILITY:START -->
40## Cross-Client Portability
41
42This skill is written to stay usable across GitHub Copilot, Claude Code, and Codex.
43
44- GitHub Copilot: keep the folder in a Copilot-visible skill path or wrap the
45 workflow in project instructions when folder discovery is unavailable.
46- Claude Code: keep the folder in a local skills directory or a compatible plugin source.
47- Codex: install or sync the folder into
48 `$CODEX_HOME/skills/stitch-react-components` and restart Codex after major changes.
49
50<!-- PORTABILITY:END -->
51
52## MCP Availability And Fallback
53
54Preferred MCP Server: Stitch MCP
55
56- Fallback prompt: "Use the Stitch React Components skill without MCP. Follow the documented local or manual fallback, show the selected tool surface, and report the verification evidence."
57- Use local `.stitch/` artifacts, exported HTML or screenshots, bundled scripts, and the Stitch web UI when the host does not expose the needed Stitch MCP operation.
58- Do not claim screen lookup, generation, editing, or variant MCP calls unless those tools are present in the active host tool list.
59- Do not claim an MCP operation was used when the active host does not expose it.
60
61<!-- MCP:END -->
62
63## Anti-Patterns
64
65- Claiming a Stitch screen-generation, screen-editing, or screen-retrieval MCP call succeeded when the active host does not expose that tool.
66- Uploading files, screenshots, HTML, markdown, or design assets to Stitch without user-approved destination and artifact details.
67- Reading, printing, storing, or committing Stitch API keys, MCP config secrets, cookies, or credential-bearing files.
68- Treating generated design or code as final without local render, syntax, or artifact verification.
69- Collapsing this workflow into a broader frontend/design skill when Stitch-specific files, project IDs, or design-system assets matter.
70
71## Verification Protocol
72
73Before claiming this skill was applied successfully:
74
751. Pass/fail: Every component has typed props or an explicit reason it has no props.
762. Pass/fail: Static content is separated from component structure.
773. Pass/fail: Generated project code does not carry irrelevant upstream license headers.
784. Pass/fail: The rendered app was checked locally or the blocker is documented.
795. Pressure-test scenario: Repeat the workflow with Stitch MCP screen tools unavailable and confirm the fallback path remains honest and actionable.
806. Success metric: The user can identify the exact artifact, project/design-system target, and verification evidence without relying on unstated MCP behavior.
81
82## Related Skills
83
84- [react-development](../react-development/SKILL.md): Use when the task also needs this adjacent Stitch workflow.
85- [frontend-design](../frontend-design/SKILL.md): Use when the task also needs this adjacent Stitch workflow.
86- [stitch-extract-static-html](../stitch-extract-static-html/SKILL.md): Use when the task also needs this adjacent Stitch workflow.
87- [stitch-shadcn-ui](../stitch-shadcn-ui/SKILL.md): Use when the task also needs this adjacent Stitch workflow.