返回顶部
d

dev-skill

Generate SwiftUI iOS application code from PRD documents. Use when a PRD document is available and needs to be transformed into a working iOS application with proper architecture, UI components, and data management. This skill receives input from prd-skill and automatically triggers qa-skill after code generation.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.1
安全检测
已通过
131
下载量
0
收藏
概述
安装方式
版本历史

dev-skill

# Dev Skill - SwiftUI iOS Development Generator ## Overview This skill transforms Product Requirements Documents (PRD) into fully functional SwiftUI iOS applications. It analyzes PRD requirements and generates production-ready code with proper architecture, UI components, data models, and business logic. ## Architecture Pattern ### MVVM Architecture All generated code follows the Model-View-ViewModel pattern: #### Model Layer - Data models (structs conforming to Codable) - Data persistence (Core Data or SwiftData) - Network layer (URLSession or Alamofire) #### ViewModel Layer - Business logic and state management - Data transformation and validation - Service coordination #### View Layer - SwiftUI views with proper componentization - Navigation stack management - UI state binding ## Code Generation Workflow ### 1. PRD Analysis - Parse PRD document for functional requirements - Extract screen specifications and user flows - Identify data models and relationships - Determine required third-party integrations ### 2. Project Structure Generation Create a complete Xcode project with: ``` ProjectName/ ├── ProjectName.xcodeproj ├── ProjectName/ │ ├── Models/ │ │ ├── DataModel.swift │ │ └── APIModels.swift │ ├── ViewModels/ │ │ ├── MainViewModel.swift │ │ └── [Feature]ViewModel.swift │ ├── Views/ │ │ ├── ContentView.swift │ │ ├── [Feature]View.swift │ │ └── Components/ │ │ ├── ButtonStyles.swift │ │ └── CustomViews.swift │ ├── Services/ │ │ ├── APIService.swift │ │ └── DataService.swift │ └── Utilities/ │ ├── Extensions.swift │ └── Constants.swift └── ProjectNameTests/ └── [Feature]Tests.swift ``` ### 3. Core Components Generation #### 3.1 Data Models ```swift struct Task: Identifiable, Codable { let id: UUID var title: String var isCompleted: Bool var dueDate: Date? var category: String var priority: Priority } enum Priority: String, Codable, CaseIterable { case low, medium, high } ``` #### 3.2 ViewModels ```swift class TaskViewModel: ObservableObject { @Published var tasks: [Task] = [] @Published var selectedCategory: String? private let dataService: DataService init(dataService: DataService = .shared) { self.dataService = dataService loadTasks() } func addTask(_ task: Task) { ... } func deleteTask(_ task: Task) { ... } func toggleCompletion(_ task: Task) { ... } } ``` #### 3.3 SwiftUI Views ```swift struct TaskListView: View { @StateObject private var viewModel = TaskViewModel() @State private var showingAddTask = false var body: some View { NavigationView { List { ForEach(viewModel.tasks) { task in TaskRowView(task: task) } .onDelete(perform: deleteTask) } .navigationTitle("Tasks") .toolbar { Button(action: { showingAddTask = true }) { Image(systemName: "plus") } } .sheet(isPresented: $showingAddTask) { AddTaskView() } } } } ``` ### 4. Feature Implementation #### 4.1 Navigation - TabView for main navigation - NavigationStack for hierarchical navigation - Sheet presentations for modal views #### 4.2 Data Persistence - Core Data for complex relationships - @AppStorage for simple preferences - FileManager for document storage #### 4.3 Networking - Async/Await for modern API calls - Error handling with Result type - JSON decoding with Codable #### 4.4 UI/UX - Adaptive layout for all device sizes - Dark mode support - Accessibility features - Haptic feedback ## Example: Todo App from PRD **PRD Input:** Todo app with categories, reminders, sharing **Generated Code:** 1. **Models**: Task, Category, Reminder 2. **ViewModels**: TaskListViewModel, CategoryViewModel 3. **Views**: TaskListView, CategoryView, AddTaskView, SettingsView 4. **Services**: NotificationService, SharingService 5. **Features**: - Push notifications for reminders - Share sheet integration - iCloud sync for data - Widgets for quick access ## Auto-Trigger Next Steps After generating the iOS project, this skill automatically: 1. Creates a complete Xcode project in `dev-output/` directory 2. Verifies code compiles without errors 3. Triggers `qa-skill` with the generated code as input 4. Provides build instructions and next steps ## Integration Requirements ### Input Format - PRD markdown document from `prd-skill` - Structured requirements with priorities - Technical specifications and constraints ### Output Validation - All code must compile in Xcode 15+ - Follows SwiftUI best practices - Includes proper error handling - Supports iOS 16+ deployment target ### Quality Standards - 100% SwiftUI (no UIKit unless absolutely necessary) - Proper separation of concerns - Comprehensive documentation - Follows Apple's Human Interface Guidelines

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 dev-skill-1776123308 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 dev-skill-1776123308 技能

通过命令行安装

skillhub install dev-skill-1776123308

下载 Zip 包

⬇ 下载 dev-skill v1.0.1

文件大小: 2.82 KB | 发布时间: 2026-4-14 14:33

v1.0.1 最新 2026-4-14 14:33
- Updated SKILL.md with a complete English rewrite and greater detail.
- Expanded documentation for architecture, workflow, project structure, and integration requirements.
- Added explicit example outputs and code snippets, including models, view models, and views.
- Clarified input, output, and auto-trigger logic for downstream skills.
- Set higher minimum requirements (iOS 16+, Xcode 15+), code quality, and best practice adherence.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部