
Stitch Skills
- 159 installs
- 40 repo stars
- Updated August 4, 2026
- akillness/oh-my-skills
Compose multiple Claude Code skills into chained workflows so agents invoke the right capabilities in sequence for complex multi-step coding tasks.
About
stitch-skills teaches Claude Code how to combine existing skills into coherent pipelines—for example research, then scaffold, then test—so one agent session can reuse vetted SKILL.md modules instead of improvising each step. It is aimed at power users building repeatable agent workflows in oh-my-skills style repos.
- Chains multiple skills in order
- Defines handoff boundaries between steps
- Reduces prompt duplication across workflows
- Supports reusable agent playbooks
- Improves reliability on multi-phase tasks
Stitch Skills by the numbers
- 159 all-time installs (skills.sh)
- Ranked #3,263 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/akillness/oh-my-skills --skill stitch-skillsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 159 |
|---|---|
| repo stars | ★ 40 |
| Last updated | August 4, 2026 |
| Repository | akillness/oh-my-skills ↗ |
What it does
Compose multiple Claude Code skills into chained workflows so agents invoke the right capabilities in sequence for complex multi-step coding tasks.
Files
stitch-skills — Agent Skills for Stitch MCP
AI-powered UI design generation, prompt refinement, and screen-to-code workflows.
stitch-skills is a library of Agent Skills for the Stitch MCP server, following the Agent Skills open standard for compatibility with Claude Code, Cursor, and Gemini CLI.
Note: This is not an officially supported Google product.
Installation
Plugin (Claude Code)
claude plugin marketplace add google-labs-code/stitch-skillsSkill (any platform)
# List available skills
npx skills add google-labs-code/stitch-skills --list
# Install a specific skill globally
npx skills add google-labs-code/stitch-skills --skill stitch-design --global
npx skills add google-labs-code/stitch-skills --skill stitch-loop --global
npx skills add google-labs-code/stitch-skills --skill enhance-prompt --global
npx skills add google-labs-code/stitch-skills --skill react-components --global
npx skills add google-labs-code/stitch-skills --skill remotion --global
npx skills add google-labs-code/stitch-skills --skill shadcn-ui --global
npx skills add google-labs-code/stitch-skills --skill design-md --global
# Install from jeo-skills
npx skills add https://github.com/akillness/jeo-skills --skill stitch-skillsWhen to use
- Generate high-fidelity UI screens from natural-language prompts via Stitch
- Create multi-page websites from a single prompt with automated file organization
- Produce DESIGN.md documentation that translates design systems for AI agents
- Refine vague UI ideas into polished, Stitch-optimized prompts with specificity
- Convert Stitch designs into React component architectures with consistency checks
- Generate walkthrough videos from Stitch projects using Remotion
- Integrate shadcn/ui components into React applications
Do not use when
- You need token-level design system lint/diff/export → route to
google-design - You need WCAG contrast audit only → route to
web-accessibility - You need full backend API design → route to
backend-api - You need generic React state management → route to
react-patterns
Available skills
stitch-design
Primary skill for prompt refinement and screen generation through the Stitch MCP system.
Workflow:
1. Enhance the user's prompt for Stitch
2. Call stitch_generate_screen MCP tool
3. Validate and iterate on the outputstitch-loop
Automates multi-page website creation from a single prompt.
Workflow:
1. Parse top-level pages from the prompt
2. Generate each screen via stitch_generate_screen
3. Organize files and validate output
4. Produce a complete, linked websiteenhance-prompt
Transforms vague UI ideas into polished, Stitch-optimized prompts.
# Example: add design keywords, specificity, and system context
Input: "a login page"
Output: "A clean, minimal login page with email/password fields,
a primary CTA button using brand colors, subtle card elevation,
and a 'Forgot password?' link below the form."design-md
Generates DESIGN.md documentation that translates design systems into natural, semantic language optimized for Stitch screen generation.
# Output: repo-root DESIGN.md with brand tokens in Stitch-friendly languagereact-components
Converts Stitch screens to React component architectures with consistency validation.
Workflow:
1. Parse Stitch screen JSON/HTML output
2. Map elements to React component tree
3. Validate component naming and prop consistency
4. Output component files with TypeScript typesremotion
Creates walkthrough videos from Stitch projects using Remotion with smooth transitions, zooming, and text overlays.
# Requires: npx remotion studio
# Output: MP4 walkthrough video of Stitch screensshadcn-ui
Provides guidance on implementing shadcn/ui components within React applications built from Stitch designs.
npx shadcn-ui@latest init
npx shadcn-ui@latest add button card input formRepository structure
Each skill follows the Agent Skills open standard:
stitch-skills/
├── stitch-design/
│ ├── SKILL.md — agent mission documentation
│ ├── scripts/ — validation and networking executables
│ ├── resources/ — knowledge base (checklists, style guides)
│ └── examples/ — reference implementations
├── stitch-loop/
├── enhance-prompt/
├── react-components/
├── remotion/
├── shadcn-ui/
└── design-md/Operating rules
1. Run enhance-prompt before any stitch-design generation for better results 2. Use design-md to produce a DESIGN.md before starting stitch-loop multi-page work 3. Validate React components for naming consistency after react-components output 4. Keep Stitch screen outputs in a dedicated screens/ directory for remotion to consume 5. Use shadcn-ui integration only after react-components has established the component tree 6. Iterate: enhance → generate → review → refine is the recommended cycle
Examples
# Full UI generation workflow
# 1. Enhance your prompt
stitch enhance-prompt "a dashboard for monitoring server health"
# 2. Generate screens via Stitch MCP
stitch generate "..." --pages overview,alerts,settings
# 3. Convert to React
stitch react-components ./screens/
# 4. Add shadcn/ui
npx shadcn-ui@latest add card badge table
# 5. Generate walkthrough video
stitch remotion ./screens/ --output walkthrough.mp4Source: google-labs-code/stitch-skills — Apache-2.0 License
stitch-skills|stitch,stitch-design,stitch-loop,enhance-prompt,react-components,remotion,shadcn-ui,screen generation,ui generation,design-md|Agent Skills for Stitch MCP: generate UI screens, multi-page sites, DESIGN.md docs, enhance prompts, convert to React/shadcn-ui, create Remotion videos. Install: npx skills add google-labs-code/stitch-skills --skill <name> --global. Plugin: claude plugin marketplace add google-labs-code/stitch-skills.|google-labs-code/stitch-skills|Apache-2.0|latest