Multi-Platform Feature Development Workflow
Selective Reading Rule
Start with:
references/senior-master-standard.md
references/usage-routing.md
references/quality-checklist.md
Then load only the inherited docs, scripts, assets, or examples that match the user's actual task.
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.
1---2name: multi-platform-apps-multi-platform3description: ALWAYS use this when the request matches Multi Platform Apps Multi Platform: Build and deploy the same feature consistently across web, mobile, and desktop platforms using API-first architecture and parallel implementation strategies.4---56# Multi-Platform Feature Development Workflow78## Selective Reading Rule910Start with:1112- `references/senior-master-standard.md`13- `references/usage-routing.md`14- `references/quality-checklist.md`1516Then load only the inherited docs, scripts, assets, or examples that match the user's actual task.1718Build and deploy the same feature consistently across web, mobile, and desktop platforms using API-first architecture and parallel implementation strategies.1920[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.]2122## Use this skill when2324- Working on multi-platform feature development workflow tasks or workflows25- Needing guidance, best practices, or checklists for multi-platform feature development workflow2627## Do not use this skill when2829- The task is unrelated to multi-platform feature development workflow30- You need a different domain or tool outside this scope3132## Instructions3334- Clarify goals, constraints, and required inputs.35- Apply relevant best practices and validate outcomes.36- Provide actionable steps and verification.37- If detailed examples are required, open `resources/implementation-playbook.md`.3839## Phase 1: Architecture and API Design (Sequential)4041### 1. Define Feature Requirements and API Contracts42- Use Task tool with subagent_type="backend-architect"43- Prompt: "Design the API contract for feature: $ARGUMENTS. Create OpenAPI 3.1 specification with:44 - RESTful endpoints with proper HTTP methods and status codes45 - GraphQL schema if applicable for complex data queries46 - WebSocket events for real-time features47 - Request/response schemas with validation rules48 - Authentication and authorization requirements49 - Rate limiting and caching strategies50 - Error response formats and codes51 Define shared data models that all platforms will consume."52- Expected output: Complete API specification, data models, and integration guidelines5354### 2. Design System and UI/UX Consistency55- Use Task tool with subagent_type="ui-ux-designer"56- Prompt: "Create cross-platform design system for feature using API spec: [previous output]. Include:57 - Component specifications for each platform (Material Design, iOS HIG, Fluent)58 - Responsive layouts for web (mobile-first approach)59 - Native patterns for iOS (SwiftUI) and Android (Material You)60 - Desktop-specific considerations (keyboard shortcuts, window management)61 - Accessibility requirements (WCAG 2.2 Level AA)62 - Dark/light theme specifications63 - Animation and transition guidelines"64- Context from previous: API endpoints, data structures, authentication flows65- Expected output: Design system documentation, component library specs, platform guidelines6667### 3. Shared Business Logic Architecture68- Use Task tool with subagent_type="comprehensive-review::architect-review"69- Prompt: "Design shared business logic architecture for cross-platform feature. Define:70 - Core domain models and entities (platform-agnostic)71 - Business rules and validation logic72 - State management patterns (MVI/Redux/BLoC)73 - Caching and offline strategies74 - Error handling and retry policies75 - Platform-specific adapter patterns76 Consider Kotlin Multiplatform for mobile or TypeScript for web/desktop sharing."77- Context from previous: API contracts, data models, UI requirements78- Expected output: Shared code architecture, platform abstraction layers, implementation guide7980## Phase 2: Parallel Platform Implementation8182### 4a. Web Implementation (React/Next.js)83- Use Task tool with subagent_type="frontend-developer"84- Prompt: "Implement web version of feature using:85 - React 18+ with Next.js 14+ App Router86 - TypeScript for type safety87 - TanStack Query for API integration: [API spec]88 - Zustand/Redux Toolkit for state management89 - Tailwind CSS with design system: [design specs]90 - Progressive Web App capabilities91 - SSR/SSG optimization where appropriate92 - Web vitals optimization (LCP < 2.5s, FID < 100ms)93 Follow shared business logic: [architecture doc]"94- Context from previous: API contracts, design system, shared logic patterns95- Expected output: Complete web implementation with tests9697### 4b. iOS Implementation (SwiftUI)98- Use Task tool with subagent_type="ios-developer"99- Prompt: "Implement iOS version using:100 - SwiftUI with iOS 17+ features101 - Swift 5.9+ with async/await102 - URLSession with Combine for API: [API spec]103 - Core Data/SwiftData for persistence104 - Design system compliance: [iOS HIG specs]105 - Widget extensions if applicable106 - Platform-specific features (Face ID, Haptics, Live Activities)107 - Testable MVVM architecture108 Follow shared patterns: [architecture doc]"109- Context from previous: API contracts, iOS design guidelines, shared models110- Expected output: Native iOS implementation with unit/UI tests111112### 4c. Android Implementation (Kotlin/Compose)113- Use Task tool with subagent_type="mobile-developer"114- Prompt: "Implement Android version using:115 - Jetpack Compose with Material 3116 - Kotlin coroutines and Flow117 - Retrofit/Ktor for API: [API spec]118 - Room database for local storage119 - Hilt for dependency injection120 - Material You dynamic theming: [design specs]121 - Platform features (biometric auth, widgets)122 - Clean architecture with MVI pattern123 Follow shared logic: [architecture doc]"124- Context from previous: API contracts, Material Design specs, shared patterns125- Expected output: Native Android implementation with tests126127### 4d. Desktop Implementation (Optional - Electron/Tauri)128- Use Task tool with subagent_type="frontend-mobile-development::frontend-developer"129- Prompt: "Implement desktop version using Tauri 2.0 or Electron with:130 - Shared web codebase where possible131 - Native OS integration (system tray, notifications)132 - File system access if needed133 - Auto-updater functionality134 - Code signing and notarization setup135 - Keyboard shortcuts and menu bar136 - Multi-window support if applicable137 Reuse web components: [web implementation]"138- Context from previous: Web implementation, desktop-specific requirements139- Expected output: Desktop application with platform packages140141## Phase 3: Integration and Validation142143### 5. API Documentation and Testing144- Use Task tool with subagent_type="documentation-generation::api-documenter"145- Prompt: "Create comprehensive API documentation including:146 - Interactive OpenAPI/Swagger documentation147 - Platform-specific integration guides148 - SDK examples for each platform149 - Authentication flow diagrams150 - Rate limiting and quota information151 - Postman/Insomnia collections152 - WebSocket connection examples153 - Error handling best practices154 - API versioning strategy155 Test all endpoints with platform implementations."156- Context from previous: Implemented platforms, API usage patterns157- Expected output: Complete API documentation portal, test results158159### 6. Cross-Platform Testing and Feature Parity160- Use Task tool with subagent_type="unit-testing::test-automator"161- Prompt: "Validate feature parity across all platforms:162 - Functional testing matrix (features work identically)163 - UI consistency verification (follows design system)164 - Performance benchmarks per platform165 - Accessibility testing (platform-specific tools)166 - Network resilience testing (offline, slow connections)167 - Data synchronization validation168 - Platform-specific edge cases169 - End-to-end user journey tests170 Create test report with any platform discrepancies."171- Context from previous: All platform implementations, API documentation172- Expected output: Test report, parity matrix, performance metrics173174### 7. Platform-Specific Optimizations175- Use Task tool with subagent_type="application-performance::performance-engineer"176- Prompt: "Optimize each platform implementation:177 - Web: Bundle size, lazy loading, CDN setup, SEO178 - iOS: App size, launch time, memory usage, battery179 - Android: APK size, startup time, frame rate, battery180 - Desktop: Binary size, resource usage, startup time181 - API: Response time, caching, compression182 Maintain feature parity while leveraging platform strengths.183 Document optimization techniques and trade-offs."184- Context from previous: Test results, performance metrics185- Expected output: Optimized implementations, performance improvements186187## Configuration Options188189- **--platforms**: Specify target platforms (web,ios,android,desktop)190- **--api-first**: Generate API before UI implementation (default: true)191- **--shared-code**: Use Kotlin Multiplatform or similar (default: evaluate)192- **--design-system**: Use existing or create new (default: create)193- **--testing-strategy**: Unit, integration, e2e (default: all)194195## Success Criteria196197- API contract defined and validated before implementation198- All platforms achieve feature parity with <5% variance199- Performance metrics meet platform-specific standards200- Accessibility standards met (WCAG 2.2 AA minimum)201- Cross-platform testing shows consistent behavior202- Documentation complete for all platforms203- Code reuse >40% between platforms where applicable204- User experience optimized for each platform's conventions205206## Platform-Specific Considerations207208**Web**: PWA capabilities, SEO optimization, browser compatibility209**iOS**: App Store guidelines, TestFlight distribution, iOS-specific features210**Android**: Play Store requirements, Android App Bundles, device fragmentation211**Desktop**: Code signing, auto-updates, OS-specific installers212213Initial feature specification: $ARGUMENTS214215## Limitations216- Use this skill only when the task clearly matches the scope described above.217- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.218- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.