Multi-Platform Feature Development Workflow
Build and deploy the same feature consistently across web, mobile, and desktop platforms using API-first architecture and parallel implementation strategies.
[Extended thinking: This workflow orchestrates multiple specialized agents to ensure feature parity across platforms while maintaining platform-specific optimizations. The coordination strategy emphasizes shared contracts and parallel development with regular synchronization points. By establishing API contracts and data models upfront, teams can work independently while ensuring consistency. The workflow benefits include faster time-to-market, reduced integration issues, and maintainable cross-platform codebases.]
Use this skill when
- Working on multi-platform feature development workflow tasks or workflows
- Needing guidance, best practices, or checklists for multi-platform feature development workflow
Do not use this skill when
- The task is unrelated to multi-platform feature development workflow
- You need a different domain or tool outside this scope
Instructions
- Clarify goals, constraints, and required inputs.
- Apply relevant best practices and validate outcomes.
- Provide actionable steps and verification.
- If detailed examples are required, open
resources/implementation-playbook.md.
Phase 1: Architecture and API Design (Sequential)
1. Define Feature Requirements and API Contracts
- Use Task tool with subagent_type="backend-architect"
- Prompt: "Design the API contract for feature: $ARGUMENTS. Create OpenAPI 3.1 specification with:
- RESTful endpoints with proper HTTP methods and status codes
- GraphQL schema if applicable for complex data queries
- WebSocket events for real-time features
- Request/response schemas with validation rules
- Authentication and authorization requirements
- Rate limiting and caching strategies
- Error response formats and codes
Define shared data models that all platforms will consume."
- Expected output: Complete API specification, data models, and integration guidelines
2. Design System and UI/UX Consistency
- Use Task tool with subagent_type="ui-ux-designer"
- Prompt: "Create cross-platform design system for feature using API spec: [previous output]. Include:
- Component specifications for each platform (Material Design, iOS HIG, Fluent)
- Responsive layouts for web (mobile-first approach)
- Native patterns for iOS (SwiftUI) and Android (Material You)
- Desktop-specific considerations (keyboard shortcuts, window management)
- Accessibility requirements (WCAG 2.2 Level AA)
- Dark/light theme specifications
- Animation and transition guidelines"
- Context from previous: API endpoints, data structures, authentication flows
- Expected output: Design system documentation, component library specs, platform guidelines
3. Shared Business Logic Architecture
- Use Task tool with subagent_type="comprehensive-review::architect-review"
- Prompt: "Design shared business logic architecture for cross-platform feature. Define:
- Core domain models and entities (platform-agnostic)
- Business rules and validation logic
- State management patterns (MVI/Redux/BLoC)
- Caching and offline strategies
- Error handling and retry policies
- Platform-specific adapter patterns
Consider Kotlin Multiplatform for mobile or TypeScript for web/desktop sharing."
- Context from previous: API contracts, data models, UI requirements
- Expected output: Shared code architecture, platform abstraction layers, implementation guide
Phase 2: Parallel Platform Implementation
4a. Web Implementation (React/Next.js)
- Use Task tool with subagent_type="frontend-developer"
- Prompt: "Implement web version of feature using:
- React 18+ with Next.js 14+ App Router
- TypeScript for type safety
- TanStack Query for API integration: [API spec]
- Zustand/Redux Toolkit for state management
- Tailwind CSS with design system: [design specs]
- Progressive Web App capabilities
- SSR/SSG optimization where appropriate
- Web vitals optimization (LCP < 2.5s, FID < 100ms)
Follow shared business logic: [architecture doc]"
- Context from previous: API contracts, design system, shared logic patterns
- Expected output: Complete web implementation with tests
4b. iOS Implementation (SwiftUI)
- Use Task tool with subagent_type="ios-developer"
- Prompt: "Implement iOS version using:
- SwiftUI with iOS 17+ features
- Swift 5.9+ with async/await
- URLSession with Combine for API: [API spec]
- Core Data/SwiftData for persistence
- Design system compliance: [iOS HIG specs]
- Widget extensions if applicable
- Platform-specific features (Face ID, Haptics, Live Activities)
- Testable MVVM architecture
Follow shared patterns: [architecture doc]"
- Context from previous: API contracts, iOS design guidelines, shared models
- Expected output: Native iOS implementation with unit/UI tests
4c. Android Implementation (Kotlin/Compose)
- Use Task tool with subagent_type="mobile-developer"
- Prompt: "Implement Android version using:
- Jetpack Compose with Material 3
- Kotlin coroutines and Flow
- Retrofit/Ktor for API: [API spec]
- Room database for local storage
- Hilt for dependency injection
- Material You dynamic theming: [design specs]
- Platform features (biometric auth, widgets)
- Clean architecture with MVI pattern
Follow shared logic: [architecture doc]"
- Context from previous: API contracts, Material Design specs, shared patterns
- Expected output: Native Android implementation with tests
4d. Desktop Implementation (Optional - Electron/Tauri)
- Use Task tool with subagent_type="frontend-mobile-development::frontend-developer"
- Prompt: "Implement desktop version using Tauri 2.0 or Electron with:
- Shared web codebase where possible
- Native OS integration (system tray, notifications)
- File system access if needed
- Auto-updater functionality
- Code signing and notarization setup
- Keyboard shortcuts and menu bar
- Multi-window support if applicable
Reuse web components: [web implementation]"
- Context from previous: Web implementation, desktop-specific requirements
- Expected output: Desktop application with platform packages
Phase 3: Integration and Validation
5. API Documentation and Testing
- Use Task tool with subagent_type="documentation-generation::api-documenter"
- Prompt: "Create comprehensive API documentation including:
- Interactive OpenAPI/Swagger documentation
- Platform-specific integration guides
- SDK examples for each platform
- Authentication flow diagrams
- Rate limiting and quota information
- Postman/Insomnia collections
- WebSocket connection examples
- Error handling best practices
- API versioning strategy
Test all endpoints with platform implementations."
- Context from previous: Implemented platforms, API usage patterns
- Expected output: Complete API documentation portal, test results
6. Cross-Platform Testing and Feature Parity
- Use Task tool with subagent_type="unit-testing::test-automator"
- Prompt: "Validate feature parity across all platforms:
- Functional testing matrix (features work identically)
- UI consistency verification (follows design system)
- Performance benchmarks per platform
- Accessibility testing (platform-specific tools)
- Network resilience testing (offline, slow connections)
- Data synchronization validation
- Platform-specific edge cases
- End-to-end user journey tests
Create test report with any platform discrepancies."
- Context from previous: All platform implementations, API documentation
- Expected output: Test report, parity matrix, performance metrics
7. Platform-Specific Optimizations
- Use Task tool with subagent_type="application-performance::performance-engineer"
- Prompt: "Optimize each platform implementation:
- Web: Bundle size, lazy loading, CDN setup, SEO
- iOS: App size, launch time, memory usage, battery
- Android: APK size, startup time, frame rate, battery
- Desktop: Binary size, resource usage, startup time
- API: Response time, caching, compression
Maintain feature parity while leveraging platform strengths.
Document optimization techniques and trade-offs."
- Context from previous: Test results, performance metrics
- Expected output: Optimized implementations, performance improvements
Configuration Options
- --platforms: Specify target platforms (web,ios,android,desktop)
- --api-first: Generate API before UI implementation (default: true)
- --shared-code: Use Kotlin Multiplatform or similar (default: evaluate)
- --design-system: Use existing or create new (default: create)
- --testing-strategy: Unit, integration, e2e (default: all)
Success Criteria
- API contract defined and validated before implementation
- All platforms achieve feature parity with <5% variance
- Performance metrics meet platform-specific standards
- Accessibility standards met (WCAG 2.2 AA minimum)
- Cross-platform testing shows consistent behavior
- Documentation complete for all platforms
- Code reuse >40% between platforms where applicable
- User experience optimized for each platform's conventions
Platform-Specific Considerations
Web: PWA capabilities, SEO optimization, browser compatibility
iOS: App Store guidelines, TestFlight distribution, iOS-specific features
Android: Play Store requirements, Android App Bundles, device fragmentation
Desktop: Code signing, auto-updates, OS-specific installers
Initial feature specification: $ARGUMENTS
Limitations
- Use this skill only when the task clearly matches the scope described above.
- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
Source: sickn33/agentic-awesome-skills → skills/multi-platform-apps-multi-platform/SKILL.md
Also appears in: sickn33/agentic-awesome-skills/plugins/agentic-awesome-skills/skills/multi-platform-apps-multi-platform/SKILL.md, sickn33/agentic-awesome-skills/plugins/agentic-awesome-skills-claude/skills/multi-platform-apps-multi-platform/SKILL.md, sickn33/agentic-awesome-skills/plugins/agentic-bundle-aas-mobile-app-builder/skills/multi-platform-apps-multi-platform/SKILL.md
1---2name: multi-platform-apps-multi-platform3description: Build and deploy the same feature consistently across web, mobile, and desktop platforms using API-first architecture and parallel implementation strategies.4---5
6
7# Multi-Platform Feature Development Workflow
8
9Build and deploy the same feature consistently across web, mobile, and desktop platforms using API-first architecture and parallel implementation strategies.
10
11[Extended thinking: This workflow orchestrates multiple specialized agents to ensure feature parity across platforms while maintaining platform-specific optimizations. The coordination strategy emphasizes shared contracts and parallel development with regular synchronization points. By establishing API contracts and data models upfront, teams can work independently while ensuring consistency. The workflow benefits include faster time-to-market, reduced integration issues, and maintainable cross-platform codebases.]
12
13## Use this skill when
14
15- Working on multi-platform feature development workflow tasks or workflows
16- Needing guidance, best practices, or checklists for multi-platform feature development workflow
17
18## Do not use this skill when
19
20- The task is unrelated to multi-platform feature development workflow
21- You need a different domain or tool outside this scope
22
23## Instructions
24
25- Clarify goals, constraints, and required inputs.
26- Apply relevant best practices and validate outcomes.
27- Provide actionable steps and verification.
28- If detailed examples are required, open `resources/implementation-playbook.md`.
29
30## Phase 1: Architecture and API Design (Sequential)
31
32### 1. Define Feature Requirements and API Contracts
33- Use Task tool with subagent_type="backend-architect"
34- Prompt: "Design the API contract for feature: $ARGUMENTS. Create OpenAPI 3.1 specification with:
35 - RESTful endpoints with proper HTTP methods and status codes
36 - GraphQL schema if applicable for complex data queries
37 - WebSocket events for real-time features
38 - Request/response schemas with validation rules
39 - Authentication and authorization requirements
40 - Rate limiting and caching strategies
41 - Error response formats and codes
42 Define shared data models that all platforms will consume."
43- Expected output: Complete API specification, data models, and integration guidelines
44
45### 2. Design System and UI/UX Consistency
46- Use Task tool with subagent_type="ui-ux-designer"
47- Prompt: "Create cross-platform design system for feature using API spec: [previous output]. Include:
48 - Component specifications for each platform (Material Design, iOS HIG, Fluent)
49 - Responsive layouts for web (mobile-first approach)
50 - Native patterns for iOS (SwiftUI) and Android (Material You)
51 - Desktop-specific considerations (keyboard shortcuts, window management)
52 - Accessibility requirements (WCAG 2.2 Level AA)
53 - Dark/light theme specifications
54 - Animation and transition guidelines"
55- Context from previous: API endpoints, data structures, authentication flows
56- Expected output: Design system documentation, component library specs, platform guidelines
57
58### 3. Shared Business Logic Architecture
59- Use Task tool with subagent_type="comprehensive-review::architect-review"
60- Prompt: "Design shared business logic architecture for cross-platform feature. Define:
61 - Core domain models and entities (platform-agnostic)
62 - Business rules and validation logic
63 - State management patterns (MVI/Redux/BLoC)
64 - Caching and offline strategies
65 - Error handling and retry policies
66 - Platform-specific adapter patterns
67 Consider Kotlin Multiplatform for mobile or TypeScript for web/desktop sharing."
68- Context from previous: API contracts, data models, UI requirements
69- Expected output: Shared code architecture, platform abstraction layers, implementation guide
70
71## Phase 2: Parallel Platform Implementation
72
73### 4a. Web Implementation (React/Next.js)
74- Use Task tool with subagent_type="frontend-developer"
75- Prompt: "Implement web version of feature using:
76 - React 18+ with Next.js 14+ App Router
77 - TypeScript for type safety
78 - TanStack Query for API integration: [API spec]
79 - Zustand/Redux Toolkit for state management
80 - Tailwind CSS with design system: [design specs]
81 - Progressive Web App capabilities
82 - SSR/SSG optimization where appropriate
83 - Web vitals optimization (LCP < 2.5s, FID < 100ms)
84 Follow shared business logic: [architecture doc]"
85- Context from previous: API contracts, design system, shared logic patterns
86- Expected output: Complete web implementation with tests
87
88### 4b. iOS Implementation (SwiftUI)
89- Use Task tool with subagent_type="ios-developer"
90- Prompt: "Implement iOS version using:
91 - SwiftUI with iOS 17+ features
92 - Swift 5.9+ with async/await
93 - URLSession with Combine for API: [API spec]
94 - Core Data/SwiftData for persistence
95 - Design system compliance: [iOS HIG specs]
96 - Widget extensions if applicable
97 - Platform-specific features (Face ID, Haptics, Live Activities)
98 - Testable MVVM architecture
99 Follow shared patterns: [architecture doc]"
100- Context from previous: API contracts, iOS design guidelines, shared models
101- Expected output: Native iOS implementation with unit/UI tests
102
103### 4c. Android Implementation (Kotlin/Compose)
104- Use Task tool with subagent_type="mobile-developer"
105- Prompt: "Implement Android version using:
106 - Jetpack Compose with Material 3
107 - Kotlin coroutines and Flow
108 - Retrofit/Ktor for API: [API spec]
109 - Room database for local storage
110 - Hilt for dependency injection
111 - Material You dynamic theming: [design specs]
112 - Platform features (biometric auth, widgets)
113 - Clean architecture with MVI pattern
114 Follow shared logic: [architecture doc]"
115- Context from previous: API contracts, Material Design specs, shared patterns
116- Expected output: Native Android implementation with tests
117
118### 4d. Desktop Implementation (Optional - Electron/Tauri)
119- Use Task tool with subagent_type="frontend-mobile-development::frontend-developer"
120- Prompt: "Implement desktop version using Tauri 2.0 or Electron with:
121 - Shared web codebase where possible
122 - Native OS integration (system tray, notifications)
123 - File system access if needed
124 - Auto-updater functionality
125 - Code signing and notarization setup
126 - Keyboard shortcuts and menu bar
127 - Multi-window support if applicable
128 Reuse web components: [web implementation]"
129- Context from previous: Web implementation, desktop-specific requirements
130- Expected output: Desktop application with platform packages
131
132## Phase 3: Integration and Validation
133
134### 5. API Documentation and Testing
135- Use Task tool with subagent_type="documentation-generation::api-documenter"
136- Prompt: "Create comprehensive API documentation including:
137 - Interactive OpenAPI/Swagger documentation
138 - Platform-specific integration guides
139 - SDK examples for each platform
140 - Authentication flow diagrams
141 - Rate limiting and quota information
142 - Postman/Insomnia collections
143 - WebSocket connection examples
144 - Error handling best practices
145 - API versioning strategy
146 Test all endpoints with platform implementations."
147- Context from previous: Implemented platforms, API usage patterns
148- Expected output: Complete API documentation portal, test results
149
150### 6. Cross-Platform Testing and Feature Parity
151- Use Task tool with subagent_type="unit-testing::test-automator"
152- Prompt: "Validate feature parity across all platforms:
153 - Functional testing matrix (features work identically)
154 - UI consistency verification (follows design system)
155 - Performance benchmarks per platform
156 - Accessibility testing (platform-specific tools)
157 - Network resilience testing (offline, slow connections)
158 - Data synchronization validation
159 - Platform-specific edge cases
160 - End-to-end user journey tests
161 Create test report with any platform discrepancies."
162- Context from previous: All platform implementations, API documentation
163- Expected output: Test report, parity matrix, performance metrics
164
165### 7. Platform-Specific Optimizations
166- Use Task tool with subagent_type="application-performance::performance-engineer"
167- Prompt: "Optimize each platform implementation:
168 - Web: Bundle size, lazy loading, CDN setup, SEO
169 - iOS: App size, launch time, memory usage, battery
170 - Android: APK size, startup time, frame rate, battery
171 - Desktop: Binary size, resource usage, startup time
172 - API: Response time, caching, compression
173 Maintain feature parity while leveraging platform strengths.
174 Document optimization techniques and trade-offs."
175- Context from previous: Test results, performance metrics
176- Expected output: Optimized implementations, performance improvements
177
178## Configuration Options
179
180- **--platforms**: Specify target platforms (web,ios,android,desktop)
181- **--api-first**: Generate API before UI implementation (default: true)
182- **--shared-code**: Use Kotlin Multiplatform or similar (default: evaluate)
183- **--design-system**: Use existing or create new (default: create)
184- **--testing-strategy**: Unit, integration, e2e (default: all)
185
186## Success Criteria
187
188- API contract defined and validated before implementation
189- All platforms achieve feature parity with <5% variance
190- Performance metrics meet platform-specific standards
191- Accessibility standards met (WCAG 2.2 AA minimum)
192- Cross-platform testing shows consistent behavior
193- Documentation complete for all platforms
194- Code reuse >40% between platforms where applicable
195- User experience optimized for each platform's conventions
196
197## Platform-Specific Considerations
198
199**Web**: PWA capabilities, SEO optimization, browser compatibility
200**iOS**: App Store guidelines, TestFlight distribution, iOS-specific features
201**Android**: Play Store requirements, Android App Bundles, device fragmentation
202**Desktop**: Code signing, auto-updates, OS-specific installers
203
204Initial feature specification: $ARGUMENTS
205
206## Limitations
207- Use this skill only when the task clearly matches the scope described above.
208- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
209- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
210
211---
212
213**Source:** [`sickn33/agentic-awesome-skills`](https://github.com/sickn33/agentic-awesome-skills) → `skills/multi-platform-apps-multi-platform/SKILL.md`
214
215**Also appears in:** `sickn33/agentic-awesome-skills/plugins/agentic-awesome-skills/skills/multi-platform-apps-multi-platform/SKILL.md`, `sickn33/agentic-awesome-skills/plugins/agentic-awesome-skills-claude/skills/multi-platform-apps-multi-platform/SKILL.md`, `sickn33/agentic-awesome-skills/plugins/agentic-bundle-aas-mobile-app-builder/skills/multi-platform-apps-multi-platform/SKILL.md`