Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问clear审计通过

multi-platform-apps-multi-platform多平台应用程序 多平台

Agent Skill

multi-platform-apps-multi-platform 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

343

周安装

14

GitHub Stars

692

下载量

110
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:multi-platform-apps-multi-platform(多平台应用程序 多平台)
来源仓库:https://github.com/rmyndharis/antigravity-skills
仓库路径:skills/multi-platform-apps-multi-platform
安装命令:
npx skills add https://github.com/rmyndharis/antigravity-skills --skill multi-platform-apps-multi-platform
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/rmyndharis/antigravity-skills --skill multi-platform-apps-multi-platform

简介

构建跨平台应用程序的开发支持工具。

  • 适配不同设备与操作系统特性。
  • 可复用组件提升开发效率。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 需测试各平台兼容性表现。
  • multi-platform-apps-multi-platform 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

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

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

31.33%
按下载量换算34

Claude Code

21.05%
按下载量换算23

Antigravity

19.32%
按下载量换算21

windsurf

11.7%
按下载量换算13

trae

7.32%
按下载量换算8

OpenCode

3.42%
按下载量换算4

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills