Token导航 LogoToken导航TokenDH.com
开发external-servicegithub未标认证来源可访问许可证需确认审计提醒

stitch-skills缝合技巧

Agent Skill

stitch-skills 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

416

周安装

17

GitHub Stars

11

下载量

133
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:stitch-skills(缝合技巧)
来源仓库:https://github.com/akillness/oh-my-skills
仓库路径:skills/stitch-skills
安装命令:
npx skills add https://github.com/akillness/oh-my-skills --skill stitch-skills
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/akillness/oh-my-skills --skill stitch-skills

简介

用于处理 GitHub 仓库和代码协作信息。

  • 适合围绕仓库状态、代码变更进行整理。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态。stitch-skills 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 需避免触发联网、命令执行或文件读写。

SKILL.md

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-skills

Skill (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 oh-my-skills
npx skills add https://github.com/akillness/oh-my-skills --skill stitch-skills

When 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 output

stitch-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 website

enhance-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 language

react-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 types

remotion

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 screens

shadcn-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 form

Repository 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.mp4

Source: google-labs-code/stitch-skills — Apache-2.0 License

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

38.36%
按下载量换算51

Claude

30.93%
按下载量换算41

Cursor

18.92%
按下载量换算25

Gemini CLI

8.41%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills