Add a SwiftUI component from ShipSwift recipes. Use when the user says "add component", "add a view", "add X view", "I need a chart", "add animation", or wants a specific UI element.
Add production-ready SwiftUI components to your project using ShipSwift's recipe library. Each recipe is a complete, copy-paste-ready implementation with architecture documentation.
Before starting, verify the ShipSwift recipe server is available by calling listRecipes.
If the recipe tools are not available, help the user set up:
Install Skills:
npx skills add signerlabs/shipswift-skills
Connect the recipe server — the AI tool needs MCP access to fetch recipes:
claude mcp add --transport http shipswift https://api.shipswift.app/mcp.cursor/mcp.json: {"mcpServers":{"shipswift":{"type":"streamableHttp","url":"https://api.shipswift.app/mcp"}}}.vscode/mcp.json: {"servers":{"shipswift":{"type":"http","url":"https://api.shipswift.app/mcp"}}}Restart the AI tool, then try again.
Identify the component type: Determine what kind of component the user needs:
Search for the recipe: Use searchRecipes with the component name or type. For example:
Fetch the full recipe: Use getRecipe with the recipe ID to get the complete implementation, including:
Integrate into the project: Adapt the recipe code to fit the user's project:
Verify integration: Walk through the recipe's integration checklist to ensure nothing is missed (dependencies, Info.plist entries, etc.).
SW-prefixed type names for ShipSwift components (e.g., SWDonutChart, SWTypewriter)..sw lowercase prefix (e.g., .swShimmer(), .swGlowScan()).CategoryType pattern with String convenience initializer..mask() approach with animated Rectangle width via GeometryReader -- Swift Charts does not support built-in line draw animation.private and use the SW prefix.cornerRadius parameter when components clip content.Some recipes require ShipSwift Pro. When a recipe returns a purchase prompt instead of full code:
SHIPSWIFT_API_KEY environment variable:
# Add to ~/.zshrc or ~/.bashrc
export SHIPSWIFT_API_KEY=sk_live_xxxxx
Then restart their AI tool for the key to take effect.Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer