Standalone agent skill for Google Stitch workflows. Wraps the official @google/stitch-sdk (v0.1.1) so an agent can drive Stitch projects, screens, variants, and design systems through a single CLI runner — or write committed TypeScript against the SDK when an integration calls for it.
Standalone (default skills CLI):
npx skills add itamaker/stitch-skillsOr via the itamaker/skills Claude Code plugin marketplace:
/plugin marketplace add itamaker/skills
/plugin install stitch-skills@itamaker-skills
- Projects & screens —
list-projects,create-project,list-screens,get-screen,generate,edit,download-html,download-image. - Variants —
variantswith--variant-count,--creative-range,--aspects. - Design systems (new in v0.2.0) —
list-design-systems,create-design-system,update-design-system,apply-design-system. Each design-system command accepts JSON via--*-file <path>or--*-json '{...}'. - Auth —
STITCH_API_KEYfor direct keys, orSTITCH_ACCESS_TOKEN+GOOGLE_CLOUD_PROJECTfor OAuth.STITCH_HOSToverrides the MCP endpoint. - Config — resolves from
--config,STITCH_SKILL_CONFIG,.stitch.json, orstitch.json.save-config/--save-configpersists resolved values. - Low-level tools —
list-toolsandcall-toolexpose the underlying Stitch MCP tools (create_project,generate_screen_from_text,edit_screens,generate_variants, design-system tools, etc.). - Agent integrations (documented in
references/mcp-sdk.md) —stitchToolsfrom@google/stitch-sdk/ai(Vercel AI SDK),stitchAdkToolsfrom@google/stitch-sdk/adk(Google ADK), andStitchProxyfor hosting an MCP proxy.
Use $stitch to list my Stitch projects.Use $stitch to create a Stitch project and generate a login screen.Use $stitch to generate three variants for screen abc and download HTML for the best one.Use $stitch to extract a design system from our brand and apply it across the existing screens.Use $stitch to wire Stitch into a Google ADK TypeScript agent.Use $stitch to download the HTML for a Stitch screen into ./tmp/screen.html.Use $stitch to save my Stitch auth and defaults into ./.stitch.json.Use $stitch to write committed @google/stitch-sdk code for this app.
skills/
stitch/
SKILL.md # entry point read by the agent
agents/ # plugin-style agent metadata
assets/ # example .stitch.json
references/ # config schema, SDK surface, prompting, DESIGN.md
scripts/
run.sh # stable wrapper; invokes stitch.mjs
stitch.mjs # SDK-backed runner
- v0.2.0 —
@google/stitch-sdk@0.1.1alignment + design-system commands. - v0.1.0 — initial standalone release.
See Releases for full notes.