Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

cross-platform跨平台

Agent Skill

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

总安装

423

周安装

18

GitHub Stars

4

下载量

148
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/alphaonedev/openclaw-graph --skill cross-platform

简介

cross-platform 用于指导跨平台移动框架选型,如 React Native、Flutter 或 Kotlin Multiplatform,适合在 Codex、Claude、Cursor、Gemini CLI 中规划多端部署项目时使用。

  • 它提供框架对比、集成步骤和业务逻辑复用建议,提升开发效率。
  • 安装命令为 npx skills add https://github.com/alphaonedev/openclaw-graph --skill cross-platform,需从 GitHub 获取原始 README 进一步确认用法。
  • 使用前建议核对权限范围、维护状态,并确认是否会触发依赖安装或项目结构调整。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

cross-platform

Purpose

This skill guides the selection and implementation of cross-platform mobile frameworks like React Native with Expo, Flutter with Dart (using Bloc or Riverpod), Capacitor, and Kotlin Multiplatform Mobile (KMM). It focuses on choosing the right framework based on project needs and provides step-by-step integration for efficient mobile app development.

When to Use

Use this skill for projects requiring multi-platform deployment (iOS/Android) to reduce code duplication. Apply it when building apps with shared business logic, such as e-commerce apps, social networks, or productivity tools. Ideal for teams with limited resources or when rapid prototyping is needed, like integrating native modules or handling state management across platforms.

Key Capabilities

  • Framework selection: Choose React Native for JavaScript-heavy apps, Flutter for custom UI with Dart, Capacitor for web-to-mobile conversion, or KMM for shared Kotlin codebases.
  • Expo integration: Use EAS (Expo Application Services) for streamlined builds, including OTA updates and cloud services.
  • State management: Implement Bloc for event-driven state in Flutter or Riverpod for reactive state in Flutter/Dart apps.
  • Cross-platform features: Handle platform-specific code, like accessing device APIs (e.g., camera, GPS) via Capacitor's bridge or KMM's expect/actual declarations.
  • Configuration: Manage app configs in JSON/YAML formats, such as Expo's app.json for routing and permissions.

Usage Patterns

To select a framework, evaluate based on tech stack: use React Native if the team knows JS; Flutter for high-performance UIs. Start by initializing a project:

  • For React Native with Expo: Run expo init MyApp --template blank then add dependencies with npm install @react-navigation/native.
  • For Flutter with Riverpod: Create a project with flutter create MyApp and set up state: final counterProvider = StateProvider((ref) => 0); in a Dart file. Always wrap platform-specific code: In KMM, use expect fun platformFunction() {} in common code and implement in iOS/Android modules. For Capacitor, convert a web app by running npx cap add android after setting up a web project.

Common Commands/API

  • Expo (React Native): Use expo login (requires $EXPO_API_KEY env var), eas build --platform all for multi-platform builds, and API endpoint POST https://api.expo.dev/v2/projects for project management.
  • Flutter: Run flutter pub add flutter_bloc for Bloc, or flutter run --device-id emulator-5554 to target a specific emulator; access APIs like BlocProvider.of(context).add(Event()) for state changes.
  • Capacitor: Execute npx cap sync to update native projects, or npx cap open android to launch Android Studio; use Capacitor's Plugins API, e.g., Capacitor.Plugins.Camera.getPhoto() in JavaScript.
  • KMM: Build with ./gradlew build in the shared module, and use KMM Bridge for iOS: import shared.Platform().hello() in Swift. Config formats: Edit Expo's app.json like {"expo": {"name": "MyApp", "slug": "myapp", "platforms": ["ios", "android"]}}; for Flutter, modify pubspec.yaml with dependencies: flutter_riverpod: ^2.0.0.

Integration Notes

Integrate these frameworks with backends by setting environment variables for auth, e.g., export $BACKEND_API_KEY for API calls. For React Native, use Expo's Fetch API: fetch('https://api.example.com/data', {headers: {Authorization:Bearer ${process.env.BACKEND_API_KEY}}}). In Flutter, add HTTP packages: http.get(Uri.parse('https://api.example.com/data'), headers: {'Authorization': 'Bearer $envVar'}).then((response) =>...);. For Capacitor, bridge web requests: Install @capacitor/core and use CapacitorHttp.get({url: 'https://api.example.com/data', headers: {Authorization: $BACKEND_API_KEY}});. KMM integration: Share networking code via common module and call from native apps, ensuring Gradle sync for dependencies.

Error Handling

Handle common errors by checking for platform mismatches: In React Native, if expo build fails with "Invalid platform", verify app.json platforms array. For Flutter, if flutter run errors on "No devices", use flutter emulators --launch Pixel_API_33 then retry. Capacitor errors like "Plugin not found" require npx cap sync and verifying package.json. In KMM, resolve build failures with ./gradlew clean for corrupted caches. Always log errors: In Expo, use console.error(e) and check EAS build logs; in Flutter, wrap with try-catch: try {await http.get(...);} catch (e) {print(e.toString());}. Use env vars for secure keys to avoid exposure.

Graph Relationships

  • Connected to: mobile cluster
  • Relates to: react-native skill, flutter skill, expo skill, capacitor skill
  • Depends on: cross-platform tags for embedding
  • Interacts with: kmm framework in mobile ecosystem

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.44%
按下载量换算51

Claude

30.4%
按下载量换算45

Cursor

19.09%
按下载量换算28

Gemini CLI

8.78%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills