
Build Feature
- 99 installs
- 2.9k repo stars
- Updated August 2, 2026
- signerlabs/shipswift
Helps with ai & agent building tasks.
About
build-feature is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- build-feature
- AI & Agent Building
- AI-coding skill
Build Feature by the numbers
- 99 all-time installs (skills.sh)
- +8 installs in the week ending Aug 5, 2026 (Skillselion tracking)
- Ranked #4,400 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/signerlabs/shipswift --skill build-featureAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 99 |
|---|---|
| repo stars | ★ 2.9k |
| Last updated | August 2, 2026 |
| Repository | signerlabs/shipswift ↗ |
What it does
Helps with ai & agent building tasks.
Files
Build Feature with ShipSwift
Build production-ready iOS features by combining ShipSwift components — copy-paste-ready SwiftUI implementations covering animations, charts, UI components, and full-stack modules.
Workflow
1. Browse the catalog: Read skills/catalog.md to see all available components organized by category.
2. Read the source: For each relevant component, read the Swift file directly from ShipSwift/SWPackage/. For example:
- Shimmer animation → read
ShipSwift/SWPackage/SWAnimation/SWShimmer.swift - Donut chart → read
ShipSwift/SWPackage/SWChart/SWDonutChart.swift - Auth module → read all files in
ShipSwift/SWPackage/SWModule/SWAuth/
3. Present an integration plan: Before writing code, show the user:
- Which components will be used
- How they connect together
- What customizations are needed
4. Generate code: Adapt the component patterns to the user's project. Combine multiple components when the feature spans several areas (e.g., a chart view with shimmer loading).
5. Integration checklist: List required dependencies, Info.plist entries, or Xcode build phase settings (especially for +iOS/+macOS platform-filtered files).
Guidelines
- Always check the catalog before writing code from scratch — ShipSwift likely has a ready-made solution.
- Use
SW-prefixed naming (SWShimmer,SWDonutChart). - View modifiers use
.swlowercase prefix (.swShimmer(),.swGlowScan()). - Copy
SWUtil/alongside any component — it provides shared extensions. - For modules (
SWModule/), copy the entire module folder. - Support Dark Mode and Dynamic Type by default.
Pro Recipes (MCP)
Some full-stack recipes (backend + compliance + pitfall guides) are available via the MCP server at https://api.shipswift.app/mcp. If MCP tools (listRecipes, searchRecipes, getRecipe) are available, use them for extended content. The local source code works independently.