claudeers.

🔓 unclaimed — this page was auto-generated from GitHub. Are you the creator?

Claim this page →
// Claude Skills

stitch-skills

A library of Agent Skills designed to work with the Stitch MCP server. Each skill follows the Agent Skills open standard, for compatibility with coding agent…

// Claude Skills[ cli ][ api ][ web ][ mobile ][ claude ]#claude#skillsApache-2.0$open-sourceupdated 15 days ago
Actively maintained
100/100
last commit 9 days ago
last release about 2 months ago
releases 2
open issues 10
// install
git clone https://github.com/google-labs-code/stitch-skills

Stitch Design Skills

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, and Cursor.

Quick Start

The fastest way to set up the full Stitch plugin suite globally.

Codex

Add the Stitch Skills marketplace, then install the plugins you need.

Via CLI (recommended)
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 --sparse flags are optional — they limit the checkout to only the listed paths for a faster clone. Omit them to pull the entire repository.

Via the Codex UI

Navigate to Settings → Plugin Marketplaces → Add and fill in:

FieldValue
Sourcehttps://github.com/google-labs-code/stitch-skills
Git refmain
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 skills
  • stitch-build — build and component skills
  • stitch-utilities — utility and helper skills

Claude Code & Cursor

# 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

2. Install Skills Selectively

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

Prerequisites

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.

Available Plugins

Design (stitch-design)

Core design workflows for creating, managing, and optimizing designs within Stitch.

SkillDescriptionPrompt Example
stitch::code-to-designConvert 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-designGenerate 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-systemManage 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-mdExtract a comprehensive DESIGN.md directly from frontend source code"Scan /src and extract the design system into .stitch/DESIGN.md."
stitch::extract-static-htmlExtract 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-stitchUpload local assets (images, mockups, HTML) to a Stitch project"Upload .stitch/landing_page.html to Stitch project projects/987654321."

Build (stitch-build)

Code generation, framework integration, and asset compilation from Stitch designs.

SkillDescriptionPrompt Example
react-componentsConvert Stitch screens to React component systems with automated validation and design token consistency"Convert all screens in Stitch project projects/123 to React components."
remotionGenerate walkthrough videos from Stitch projects using Remotion with smooth transitions and zooming"Generate a walkthrough video of the Stitch project projects/456."
react-nativeConvert 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."
shadcn-uiExpert guidance for integrating and building applications with shadcn/ui components"Set up shadcn/ui and build a data table with sorting and filtering."

Utilities (stitch-utilities)

Supporting tools for enhancing prompts, generating design specs, and enforcing design standards.

SkillDescriptionPrompt Example
design-mdAnalyze Stitch projects and generate comprehensive DESIGN.md files in semantic language"Analyze Stitch project projects/123 and generate a DESIGN.md."
enhance-promptTransform vague UI ideas into polished, Stitch-optimized prompts with UI/UX keywords"Enhance this prompt: 'make a settings page'."
stitch-loopGenerate complete multi-page websites from a single prompt with automated validation"Build a 5-page portfolio website with Stitch."
taste-designGenerate DESIGN.md files enforcing premium, anti-generic UI standards"Generate a premium DESIGN.md with strict typography and calibrated colors."

Repository Structure

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/
│       ├── react-native/
│       ├── 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

Adding New Skills

All new skills need to follow the file structure above to implement the Agent Skills open standard.

Great candidates for new skills

  • Validation: Skills that convert Stitch HTML to other UI frameworks and validate the syntax.
  • Decoupling Data: Skills that convert static design content into external mock data files.
  • Generate Designs: Skills that generate new design screens in Stitch from a given set of data.

This is not an officially supported Google product. This project is not eligible for the Google Open Source Software Vulnerability Rewards Program.

// compatibility

Platformscli, api, web, mobile
Operating systems
AI compatibilityclaude
LicenseApache-2.0
Pricingopen-source
LanguageTypeScript

// faq

What is stitch-skills?

A library of Agent Skills designed to work with the Stitch MCP server. Each skill follows the Agent Skills open standard, for compatibility with coding agents such as Antigravity, Gemini CLI, Claude Code, Cursor.. It is open-source on GitHub.

Is stitch-skills free to use?

stitch-skills is open-source under the Apache-2.0 license, so it is free to use.

What category does stitch-skills belong to?

stitch-skills is listed under mcp-servers in the Claudeers registry of Claude-compatible tools.

0 views
6,372 stars
unclaimed
updated 15 days ago

// embed badge

stitch-skills on Claudeers
[![Claudeers](https://claudeers.com/api/badge/stitch-skills.svg)](https://claudeers.com/stitch-skills)

// retro hit counter

stitch-skills hit counter
[![Hits](https://claudeers.com/api/counter/stitch-skills.svg)](https://claudeers.com/stitch-skills)

// reviews

// guestbook

0/500

// related in Claude Skills

🔓

An agentic skills framework & software development methodology that works.

// skillsobra/Shell249,840MIT[ claude ]
🔓

💫 Toolkit to help you get started with Spec-Driven Development

// skillsgithub/Python117,790MIT[ claude ]
🔓

Public repository for Agent Skills

// skillsanthropics/Python159,495[ claude ]
🔓

AI coding assistant skill (Claude Code, Codex, OpenCode, Cursor, Gemini CLI, and more). Turn any folder of code, SQL schemas, R scripts, shell scripts, docs,…

// skillsGraphify-Labs/Python77,228MIT[ claude ]

// built by

→ see how stitch-skills connects across the ecosystem