$git clone https://github.com/signerlabs/ShipSwiftAI-native SwiftUI component library — production-ready code that LLMs can use to build real apps.
| 1 | # ShipSwift |
| 2 | |
| 3 | <div align="center"> |
| 4 | |
| 5 |  |
| 6 | |
| 7 | **AI-native SwiftUI component library — production-ready code that LLMs can use to build real apps.** |
| 8 | |
| 9 | [](https://www.shipswift.app/) |
| 10 | [](https://apps.apple.com/us/app/shipswift-mcp-codebase/id6759209764) |
| 11 | [](https://opensource.org/licenses/MIT) |
| 12 | [](https://swift.org) |
| 13 | [](https://developer.apple.com/ios/) |
| 14 | [](https://github.com/signerlabs/shipswift-skills) |
| 15 | [](https://glama.ai/mcp/servers/signerlabs/ShipSwift) |
| 16 | |
| 17 | [Quick Start](#quick-start) · [Components](#components) · [Custom Dev — $5K, 4 weeks](#need-a-custom-app-built-we-do-that-too) · [Recipes](#recipes) |
| 18 | |
| 19 | </div> |
| 20 | |
| 21 | ## What is ShipSwift? |
| 22 | |
| 23 | One command gives your AI everything it needs — production-ready SwiftUI components, full-stack recipes, and the context to build real apps without guessing. |
| 24 | |
| 25 | > **Browse every recipe live at [shipswift.app](https://www.shipswift.app/)** — searchable catalog, copy-paste source, live previews. |
| 26 | |
| 27 | Download the [Showcase App](https://apps.apple.com/us/app/shipswift-mcp-codebase/id6759209764) to preview every component on your device. |
| 28 | |
| 29 | ## Need a custom app built? We do that too. |
| 30 | |
| 31 | ShipSwift gets your AI 80% of the way. If you need the last 20% — your unique features, your brand, your backend — wired up by the people who wrote the recipes, **we ship it for you**. |
| 32 | |
| 33 | | | | |
| 34 | |---|---| |
| 35 | | ⚡ **48-hour demo** | Working prototype on your TestFlight within 2 days of brief | |
| 36 | | 🚀 **4-week delivery** | Production-ready iOS app, App Store-submission ready | |
| 37 | | 💵 **From $5,000** | Fixed price, milestone-billed, no hourly surprises | |
| 38 | |
| 39 | Built on the same component library you see in this repo, so you keep ownership and can extend forever. |
| 40 | |
| 41 | **Get a quote:** [wei@signerlabs.com](mailto:wei@signerlabs.com) · [shipswift.app](https://www.shipswift.app/) |
| 42 | |
| 43 | ## Quick Start |
| 44 | |
| 45 | ### Option 1: Skills + Recipe Server (Recommended) |
| 46 | |
| 47 | **Step 1** — Install ShipSwift Skills: |
| 48 | |
| 49 | ```bash |
| 50 | npx skills add signerlabs/shipswift-skills |
| 51 | ``` |
| 52 | |
| 53 | **Step 2** — Connect the recipe server so your AI can fetch recipes: |
| 54 | |
| 55 | ```bash |
| 56 | # Claude Code |
| 57 | claude mcp add --transport http shipswift https://api.shipswift.app/mcp |
| 58 | |
| 59 | # Gemini CLI |
| 60 | gemini mcp add --transport http shipswift https://api.shipswift.app/mcp |
| 61 | ``` |
| 62 | |
| 63 | For Cursor, VS Code Copilot, Windsurf, and other tools, see the [Skills repo](https://github.com/signerlabs/shipswift-skills) for MCP setup. |
| 64 | |
| 65 | **Step 3** — Ask your AI: |
| 66 | - "Add a shimmer loading animation" |
| 67 | - "Build an authentication flow with Cognito" |
| 68 | - "Show me all chart components" |
| 69 | |
| 70 | ### Option 2: Local Skills (No MCP Required) |
| 71 | |
| 72 | Install skills that read source files directly from this repo — works offline, no server needed: |
| 73 | |
| 74 | ```bash |
| 75 | npx skills add signerlabs/ShipSwift |
| 76 | ``` |
| 77 | |
| 78 | Your AI can then browse the component catalog and read source code locally. Try: |
| 79 | - "Explore ShipSwift recipes" |
| 80 | - "Add a shimmer animation" |
| 81 | - "Build a chat feature" |
| 82 | |
| 83 | > **Tip**: If you also connect the MCP server (Option 1), your AI gets access to additional Pro recipes (backend guides, compliance templates, pitfall docs). |
| 84 | |
| 85 | ### Option 3: File Copy |
| 86 | |
| 87 | 1. Clone this repository |
| 88 | 2. Copy the files you need from `ShipSwift/SWPackage/` into your Xcode project |
| 89 | 3. Each component in `SWAnimation/`, `SWChart/`, and `SWComponent/` is self-contained — just copy the file and `SWUtil/` if needed |
| 90 | |
| 91 | ### Run the Showcase App |
| 92 | |
| 93 | ```bash |
| 94 | git clone https://github.com/signerlabs/ShipSwift.git |
| 95 | cd ShipSwift |
| 96 | open ShipSwift.xcodeproj |
| 97 | ``` |
| 98 | |
| 99 | Select a simulator or device, then press **Cmd+R** to build and run. |
| 100 | |
| 101 | ## Components |
| 102 | |
| 103 | ### SWAnimatio |