ShipSwift
40+ production-ready SwiftUI recipes for building full-stack iOS apps via MCP.
Ask AI about ShipSwift
Powered by Claude Β· Grounded in docs
I know everything about ShipSwift. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
ShipSwift

AI-native SwiftUI component library β production-ready code that LLMs can use to build real apps.
Quick Start Β· Components Β· Directory Structure Β· Recipes Β· Contributing
What is ShipSwift?
One command gives your AI everything it needs β production-ready SwiftUI components, full-stack recipes, and the context to build real apps without guessing. Check more MCP recipes.
Download the Showcase App to preview every component on your device.
Quick Start
Option 1: Skills + Recipe Server (Recommended)
Step 1 β Install ShipSwift Skills:
npx skills add signerlabs/shipswift-skills
Step 2 β Connect the recipe server so your AI can fetch recipes:
# Claude Code
claude mcp add --transport http shipswift https://api.shipswift.app/mcp
# Gemini CLI
gemini mcp add --transport http shipswift https://api.shipswift.app/mcp
For Cursor, VS Code Copilot, Windsurf, and other tools, see the Skills repo for MCP setup.
Step 3 β Ask your AI:
- "Add a shimmer loading animation"
- "Build an authentication flow with Cognito"
- "Show me all chart components"
Option 2: Local Skills (No MCP Required)
Install skills that read source files directly from this repo β works offline, no server needed:
npx skills add signerlabs/ShipSwift
Your AI can then browse the component catalog and read source code locally. Try:
- "Explore ShipSwift recipes"
- "Add a shimmer animation"
- "Build a chat feature"
Tip: If you also connect the MCP server (Option 1), your AI gets access to additional Pro recipes (backend guides, compliance templates, pitfall docs).
Option 3: File Copy
- Clone this repository
- Copy the files you need from
ShipSwift/SWPackage/into your Xcode project - Each component in
SWAnimation/,SWChart/, andSWComponent/is self-contained β just copy the file andSWUtil/if needed
Run the Showcase App
git clone https://github.com/signerlabs/ShipSwift.git
cd ShipSwift
open ShipSwift.xcodeproj
Select a simulator or device, then press Cmd+R to build and run.
Components
SWAnimation β Animation Components
BeforeAfterSlider Β· TypewriterText Β· ShakingIcon Β· Shimmer Β· GlowSweep Β· LightSweep Β· ScanningOverlay Β· AnimatedMeshGradient Β· OrbitingLogos
SWChart β Chart Components
LineChart Β· BarChart Β· AreaChart Β· DonutChart Β· RingChart Β· RadarChart Β· ScatterChart Β· ActivityHeatmap
SWComponent β UI Components
Display: FloatingLabels Β· ScrollingFAQ Β· RotatingQuote Β· BulletPointText Β· GradientDivider Β· Label Β· MarkdownText Β· OnboardingView Β· OrderView Β· RootTabView Β· VideoPlayer Feedback: Alert Β· Loading Β· ThinkingIndicator Input: TabButton Β· Stepper Β· AddSheet
SWModule β Multi-File Frameworks
- SWAuth β User authentication (Amplify/Cognito, social login, email/password, phone sign-in with country code picker)
- SWCamera β Camera capture with viewfinder, zoom, photo picker, and face detection with Vision landmark tracking
- SWPaywall β Subscription paywall using StoreKit 2 β iOS client included free. Full-stack recipe (backend + compliance + pitfalls) β Pro
- SWChat β All-in-one chat view with message list, text input, and optional voice recognition (VolcEngine ASR)
- SWSetting β Settings page template with language switch, share, legal links, recommended apps
- SWSubjectLifting β Background removal using VisionKit ImageAnalysis
- SWTikTokTracking β TikTok Events API integration for attribution tracking β iOS client included free. Full-stack recipe (backend + compliance + pitfalls) β Pro
SWUtil β Shared Utilities
DebugLog Β· String/Date/View extensions Β· LocationManager
Directory Structure
ShipSwift/
βββ SWPackage/
β βββ SWAnimation/ # Animation components
β βββ SWChart/ # Chart components
β βββ SWComponent/ # UI components
β β βββ Display/ # Display components
β β βββ Feedback/ # Feedback components
β β βββ Input/ # Input components
β βββ SWModule/ # Multi-file frameworks
β β βββ SWAuth/ # Authentication
β β βββ SWCamera/ # Camera + face detection
β β βββ SWPaywall/ # Subscription paywall
β β βββ SWChat/ # Chat + voice input
β β βββ SWSetting/ # Settings page
β β βββ SWSubjectLifting/ # Background removal
β β βββ SWTikTokTracking/ # TikTok attribution
β βββ SWUtil/ # Shared utilities
βββ View/ # Showcase app views
βββ Service/ # App services
βββ Component/ # Shared app components
Naming Convention
All types use the SW prefix (e.g., SWAlertManager, SWStoreManager).
View modifiers use .sw lowercase prefix (e.g., .swAlert(), .swPageLoading(), .swPrimary).
Dependency Rules
SWUtil β no dependencies on other SWPackage directories
SWAnimation β may depend on SWUtil only
SWChart β may depend on SWUtil only
SWComponent β may depend on SWUtil only
SWModule β may depend on SWUtil and SWComponent
Recipes
ShipSwift provides free and pro recipes via Skills β each recipe includes complete SwiftUI source code, implementation steps, and best practices. Your AI assistant can retrieve any recipe on demand.
| Category | Examples |
|---|---|
| Animation | Shimmer, Typewriter, Orbiting Logos |
| Chart | Line, Bar, Donut, Radar, Heatmap |
| Component | Alert, Onboarding, Stepper, FAQ |
| Module | Auth, Camera, Chat, Setting, Infra CDK, Subscription*, TikTok Tracking*, Export & Share* |
* Pro recipes β includes full backend, compliance templates, and pitfall guides. Coming soon: Push Notifications, Analytics Dashboard.
Three tools are available: listRecipes, getRecipe, searchRecipes.
Learn more at shipswift.app Β· Skills repo: signerlabs/shipswift-skills
Free vs Pro
All iOS client code is open-source under the MIT license. Pro recipes add everything you need to go from prototype to production.
| Free (Open Source) | Pro Recipe | |
|---|---|---|
| iOS client code | Full source | Enhanced version |
| Backend implementation | β | Hono routes, DB schema, webhooks |
| Integration guides | β | End-to-end setup checklists |
| Compliance templates | β | Privacy manifest, App Store labels |
| Known pitfalls | β | 10+ battle-tested tips per recipe |
More Pro recipes coming soon: Push Notifications, Analytics Dashboard.
See pricing for details.
Tech Stack
- SwiftUI + Swift
- StoreKit 2
- Amplify SDK (Cognito)
- AVFoundation + Vision
- SpriteKit
- VolcEngine ASR
Contributing
Contributions are welcome! Please follow these steps:
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
Code Style
- All comments and documentation in English
- All types use the
SWprefix - Each file in
SWAnimation/,SWChart/, andSWComponent/must be self-contained - Follow existing code patterns and naming conventions
License
This project is licensed under the MIT License β see the LICENSE file for details.
Star History
Made with β€οΈ by SignerLabs
