{
  "schemaVersion": "1.0",
  "item": {
    "slug": "stitch-ui-designer",
    "name": "Stitch Ui Designer",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/a2mus/stitch-ui-designer",
    "canonicalUrl": "https://clawhub.ai/a2mus/stitch-ui-designer",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/stitch-ui-designer",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=stitch-ui-designer",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/stitch-ui-designer"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/stitch-ui-designer",
    "agentPageUrl": "https://openagent3.xyz/skills/stitch-ui-designer/agent",
    "manifestUrl": "https://openagent3.xyz/skills/stitch-ui-designer/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/stitch-ui-designer/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Stitch UI Designer",
        "body": "This skill allows you to design high-quality user interfaces using Google Stitch."
      },
      {
        "title": "Workflow",
        "body": "Follow this process to help the user design a UI:\n\nSetup (First Time Only)\n\nCheck if the stitch server is configured in mcporter.\nIf not, configure it: mcporter config add stitch --command \"npx\" --args \"-y stitch-mcp-auto\"\nEnsure the user is authenticated with Google Cloud (the tool may prompt for gcloud auth).\n\n\n\nGenerate & Preview\n\nAsk for a description of the interface (e.g., \"Login screen for a crypto app\").\nUse stitch.generate_screen_from_text with the prompt.\nImportant: This returns a screenId.\nImmediately fetch the preview image using stitch.fetch_screen_image(screenId).\nShow the image to the user. Do not fetch the code yet.\n\n\n\nIterate & Customize\n\nAsk the user for feedback on the preview.\nIf changes are needed, use stitch.generate_screen_from_text again (potentially using stitch.extract_design_context from the previous screen to maintain style) or just refine the prompt.\nShow the new preview.\n\n\n\nExport Code\n\nOnce the user approves the design (\"This looks great\"), fetch the code.\nUse stitch.fetch_screen_code(screenId).\nPresent the HTML/CSS code or save it to a file as requested."
      },
      {
        "title": "Tools (via mcporter)",
        "body": "Call these using mcporter call stitch.<tool_name> <args>:\n\ngenerate_screen_from_text\n\nArgs: prompt (string), projectId (optional, usually auto-detected by stitch-mcp-auto)\nReturns: screenId, name, url\nUse this to start a design.\n\n\n\nfetch_screen_image\n\nArgs: screenId (string)\nReturns: Image data (display this to the user).\nUse this to show the preview.\n\n\n\nfetch_screen_code\n\nArgs: screenId (string)\nReturns: html (string), css (string), etc.\nUse this ONLY after user approval.\n\n\n\ncreate_project\n\nArgs: name (string)\nUse if no project exists."
      },
      {
        "title": "Tips",
        "body": "Project Context: stitch-mcp-auto tries to manage the project ID automatically. If you get errors about missing project IDs, ask the user to create or select a Google Cloud project first using create_project or by setting the GOOGLE_CLOUD_PROJECT env var.\nPreview First: Always prioritize the visual preview. Generating code for a bad design wastes tokens and time.\nStitch MCP Auto: We use stitch-mcp-auto because it handles the complex Google auth setup more gracefully than the standard package."
      }
    ],
    "body": "Stitch UI Designer\n\nThis skill allows you to design high-quality user interfaces using Google Stitch.\n\nWorkflow\n\nFollow this process to help the user design a UI:\n\nSetup (First Time Only)\n\nCheck if the stitch server is configured in mcporter.\nIf not, configure it: mcporter config add stitch --command \"npx\" --args \"-y stitch-mcp-auto\"\nEnsure the user is authenticated with Google Cloud (the tool may prompt for gcloud auth).\n\nGenerate & Preview\n\nAsk for a description of the interface (e.g., \"Login screen for a crypto app\").\nUse stitch.generate_screen_from_text with the prompt.\nImportant: This returns a screenId.\nImmediately fetch the preview image using stitch.fetch_screen_image(screenId).\nShow the image to the user. Do not fetch the code yet.\n\nIterate & Customize\n\nAsk the user for feedback on the preview.\nIf changes are needed, use stitch.generate_screen_from_text again (potentially using stitch.extract_design_context from the previous screen to maintain style) or just refine the prompt.\nShow the new preview.\n\nExport Code\n\nOnce the user approves the design (\"This looks great\"), fetch the code.\nUse stitch.fetch_screen_code(screenId).\nPresent the HTML/CSS code or save it to a file as requested.\nTools (via mcporter)\n\nCall these using mcporter call stitch.<tool_name> <args>:\n\ngenerate_screen_from_text\n\nArgs: prompt (string), projectId (optional, usually auto-detected by stitch-mcp-auto)\nReturns: screenId, name, url\nUse this to start a design.\n\nfetch_screen_image\n\nArgs: screenId (string)\nReturns: Image data (display this to the user).\nUse this to show the preview.\n\nfetch_screen_code\n\nArgs: screenId (string)\nReturns: html (string), css (string), etc.\nUse this ONLY after user approval.\n\ncreate_project\n\nArgs: name (string)\nUse if no project exists.\nTips\nProject Context: stitch-mcp-auto tries to manage the project ID automatically. If you get errors about missing project IDs, ask the user to create or select a Google Cloud project first using create_project or by setting the GOOGLE_CLOUD_PROJECT env var.\nPreview First: Always prioritize the visual preview. Generating code for a bad design wastes tokens and time.\nStitch MCP Auto: We use stitch-mcp-auto because it handles the complex Google auth setup more gracefully than the standard package."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/a2mus/stitch-ui-designer",
    "publisherUrl": "https://clawhub.ai/a2mus/stitch-ui-designer",
    "owner": "a2mus",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/stitch-ui-designer",
    "downloadUrl": "https://openagent3.xyz/downloads/stitch-ui-designer",
    "agentUrl": "https://openagent3.xyz/skills/stitch-ui-designer/agent",
    "manifestUrl": "https://openagent3.xyz/skills/stitch-ui-designer/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/stitch-ui-designer/agent.md"
  }
}