A collection of agent skills and plugins for Google Stitch, following the Agent Skills open standard. Compatible with coding agents such as Codex, Antigravity, Gemini CLI, Claude Code, Cursor, and OpenCode (manual install).
$ npx -y skills add google-labs-code/stitch-skills --agent claude-code
Run the curl in your terminal, the rest in Claude Code.
Repo: google-labs-code/stitch-skills
What's inside
A collection of agent skills and plugins for Google Stitch, following the Agent Skills open standard. Compatible with coding agents such as Codex, Antigravity, Gemini CLI, Claude Code, Cursor, and OpenCode (manual install).
The fastest way to set up the full Stitch plugin suite globally.
Add the Stitch Skills marketplace, then install the plugins you need.
codex plugin marketplace add google-labs-code/stitch-skills --ref main \
--sparse .agents/plugins \
--sparse plugins/stitch-design \
--sparse plugins/stitch-build \
--sparse plugins/stitch-utilities
[!TIP] The
--sparseflags are optional โ they limit the checkout to only the listed paths for a faster clone. Omit them to pull the entire repository.
Navigate to Settings โ Plugin Marketplaces โ Add and fill in:
| Field | Value |
|---|---|
| Source | https://github.com/google-labs-code/stitch-skills |
| Git ref | main |
| Sparse paths | (optional) .agents/plugins, plugins/stitch-design, plugins/stitch-build, plugins/stitch-utilities |
Once the marketplace is registered, install any combination of:
stitch-design โ design-focused skillsstitch-build โ build and component skillsstitch-utilities โ utility and helper skills# Claude Code โ installs into the current project
npx plugins add google-labs-code/stitch-skills --scope project --target claude-code
# Cursor โ installs into the current workspace
npx plugins add google-labs-code/stitch-skills --scope workspace --target cursor
OpenCode does not use npx plugins / npx skills or the Codex/Claude marketplace layout.
Install skills and the Stitch MCP server manually:
1. Skills โ copy the skill folders you need into a discoverable path:
# Project-local (recommended)
mkdir -p .opencode/skills
cp -R plugins/stitch-design/skills/generate-design .opencode/skills/generate-design
# repeat for other skills under plugins/*/skills/
OpenCode also discovers .claude/skills/ and .agents/skills/ (see OpenCode skills docs).
Naming: OpenCode requires skill
namefrontmatter to be lowercase kebab-case and match the directory name. Skills that usestitch::โฆnames (or other non-kebab forms) need thenamefield and folder renamed before OpenCode will load them. Extra frontmatter such asallowed-toolsis ignored.
2. Stitch MCP โ add a remote MCP entry in project opencode.json or ~/.config/opencode/opencode.json after completing the Stitch MCP setup:
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"stitch": {
"type": "remote",
"url": "YOUR_STITCH_MCP_URL",
"enabled": true
}
}
}
Replace YOUR_STITCH_MCP_URL with the endpoint from the Stitch MCP setup flow (credentials/env vars from that guide still apply).
Tool names inside skill instructions may differ from OpenCode builtins (webfetch / bash instead of web_fetch / run_command). Prefer the OpenCode tool names when adapting a skill for OpenCode.
Choose only the specific skills you need.
[!IMPORTANT] Stitch Design Skills often have inter-dependencies. If you choose to install skills selectively, ensure you include all required dependencies.
npx skills add google-labs-code/stitch-skills
You can run the following commands to see the help documentation for plugins and skills:
npx plugins --help
npx skills --help
These skills require the Stitch MCP server to be configured and running in your agent's environment. Make sure you have followed the Stitch MCP Setup Instructions to register the server and set up appropriate environment variables and credentials.
Docs navigation: If a link on stitch.withgoogle.com/docs redirects incorrectly, open the target path under the same host (e.g.
https://stitch.withgoogle.com/docs/learn/device-types/).
stitch-design)Core design workflows for creating, managing, and optimizing designs within Stitch.
| Skill | Description | Prompt Example |
|---|---|---|
| stitch::code-to-design | Convert frontend code (React, Vue, etc.) to a Stitch Design via HTML extraction + design system + upload | "Upload the frontend code at /path/to/dashboard into a Stitch project named 'Dashboard-Migration-2026'." |
| stitch::generate-design | Generate new screens from text or images, edit existing screens, and create design variants | ยท "Make a browse tab for a mobile app for romance and date night ideas."ยท "Edit the login screen to add a 'Remember Me' checkbox and change the button color to blue."ยท "Generate 3 design variants of the home screen with dark mode and high-density layouts." |
| stitch::manage-design-system | Manage design systems in Stitch โ upload DESIGN.md and apply themes to screens | "Upload our design system from .stitch/DESIGN.md and apply it to all screens." |
| stitch::extract-design-md | Extract a comprehensive DESIGN.md directly from frontend source code | "Scan /src and extract the design system into .stitch/DESIGN.md." |
| stitch::extract-static-html | Extract self-contained static HTML from running web apps, inlining CSS and images | "Extract a static HTML snapshot of http://localhost:3000/profile." |
| stitch::upload-to-stitch | Upload local assets (images, mockups, HTML) to a Stitch project | "Upload .stitch/landing_page.html to Stitch project projects/987654321." |
stitch-build)Code generation, framework integration, and asset compilation from Stitch designs.
| Skill | Description | Prompt Example |
|---|---|---|
| stitch::react-components | Convert Stitch screens to React component systems with automated validation and design token consistency | ยท "Convert all screens in Stitch project projects/123 to React components."ยท "Sync the app to the last updates of the Stitch project 13039335308618232534." |
| stitch::react-native | Convert Stitch HTML designs to production-ready React Native components with StyleSheet and platform-specific code | ยท "Convert the Stitch design to React Native components with proper theme and navigation."ยท "Sync the app to the last updates of the Stitch project 13039335308618232534." |
| remotion | Generate walkthrough videos from Stitch projects using Remotion with smooth transitions and zooming | "Generate a walkthrough video of the Stitch project projects/456." |
| shadcn-ui | Expert guidance for integrating and building applications with shadcn/ui components | "Set up shadcn/ui and build a data table with sorting and filtering." |
| react-vite-dashboard | Convert Stitch screens to React + Vite dashboards with TanStack Query, DESIGN.md tokens, and Web3 read patterns | "Build a DeFi portfolio dashboard from this Stitch screen using our DESIGN.md." |
stitch-utilities)Supporting tools for enhancing prompts, generating design specs, and enforcing design standards.
| Skill | Description | Prompt Example |
|---|---|---|
| design-md | Analyze Stitch projects and generate comprehensive DESIGN.md files in semantic language | "Analyze Stitch project projects/123 and generate a DESIGN.md." |
| enhance-prompt | Transform vague UI ideas into polished, Stitch-optimized prompts with UI/UX keywords | "Enhance this prompt: 'make a settings page'." |
| stitch-loop | Generate complete multi-page websites from a single prompt with automated validation | "Build a 5-page portfolio website with Stitch." |
| taste-design | Generate DESIGN.md files enforcing premium, anti-generic UI standards | "Generate a premium DESIGN.md with strict typography and calibrated colors." |
plugins/
โโโ stitch-design/ โ Core design workflow plugin
โ โโโ plugin.json
โ โโโ skills/
โ โโโ code-to-design/
โ โโโ generate-design/
โ โโโ manage-design-system/
โ โโโ extract-design-md/
โ โโโ extract-static-html/
โ โโโ upload-to-stitch/
โโโ stitch-build/ โ Code generation & build plugin
โ โโโ plugin.json
โ โโโ skills/
โ โโโ react-components/ โ stitch::react-components
โ โโโ react-native/
โ โโโ react-vite-dashboard/
โ โโโ remotion/
โ โโโ shadcn-ui/
โโโ stitch-utilities/ โ Design utilities & assistants plugin
โโโ plugin.json
โโโ skills/
โโโ design-md/
โโโ enhance-prompt/
โโโ stitch-loop/
โโโ taste-design/
Each skill follows the Agent Skills standard:
skills/<skill-name>/
โโโ SKILL.md โ The "Mission Control" for the agent
โโโ scripts/ โ Executable enforcers (Validation & Networking)
โโโ resources/ โ The knowledge base (Checklists & Style Guides)
โโโ examples/ โ The "Gold Standard" syntactically valid references
All new skills need to follow the file structure above to implement the Agent Skills open standard.
This is not an officially supported Google product. This project is not eligible for the Google Open Source Software Vulnerability Rewards Program.
.agents/
plugins/
marketplace.json
.github/
workflows/
validate-skills.yml
.gitignore
CONTRIBUTING.md
LICENSE
plugins/
stitch-build/
.codex-plugin/
plugin.json
plugin.json
skills/
react-components/
examples/
gold-standard-card.tsx
package-lock.json
package.json
README.md
resources/
architecture-checklist.md
component-template.tsx
stitch-api-reference.md
style-guide.json
scripts/
fetch-stitch.sh
validate.js
SKILL.md
react-native/
examples/
gold-standard-card.tsx
package-lock.json
package.json
README.md
resources/
architecture-checklist.md
component-template.tsx
scripts/
fetch-stitch.sh
validate.js
SKILL.md
react-vite-dashboard/
README.md
SKILL.md
remotion/
examples/
screens.json
WalkthroughComposition.tsx
README.md
resources/
composition-checklist.md
screen-slide-template.tsx
scripts/
download-stitch-asset.sh
SKILL.md
shadcn-ui/
examples/
auth-layout.tsx
data-table.tsx
form-pattern.tsx
README.md
resources/
component-catalog.md
customization-guide.md
migration-guide.md
setup-guide.md
scripts/
verify-setup.sh
SKILL.md
stitch-design/
.codex-plugin/
plugin.json
plugin.json
skills/
code-to-design/
SKILL.md
extract-design-md/
examples/
DESIGN.md
references/
angular.md
plain-css.md
react-tailwind.md
svelte.md
vue.md
SKILL.md
extract-static-html/
scripts/
extract_inline_html.ts
post_process.ts
snapshot.ts
SKILL.md
generate-design/
examples/
enhanced-prompt.md
references/
design-mappings.md
prompt-keywords.md
SKILL.md
manage-design-system/
examples/
metadata.json
reference/
tool-schema.md
SKILL.md
upload-to-stitch/
scripts/
upload_to_stitch.py
SKILL.md
stitch-utilities/
.codex-plugin/
plugin.json
plugin.json
skills/
design-md/
examples/
DESIGN.md
README.md
SKILL.md
enhance-prompt/
README.md
references/
KEYWORDS.md
SKILL.md
stitch-loop/
examples/
next-prompt.md
SITE.md
README.md
resources/
baton-schema.md
site-template.md
SKILL.md
taste-design/
resources/
DESIGN.md
SKILL.md
README.md
SECURITY.mdFAQ
stitch-skills is a Claude Code plugin with 15 hand-picked skills for development work, indexed on Flowy. Install it with the command on its page. It includes react-components, react-native, react-vite-dashboard. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.