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

capacitor-app-creation电容器应用程序创建

Agent Skill

capacitor-app-creation 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,187

周安装

93

GitHub Stars

19

下载量

766
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/capawesome-team/skills --skill capacitor-app-creation

简介

用于从零开始创建 Capacitor 应用,包括项目结构搭建、平台配置和可选插件集成。

  • 适合需要快速初始化跨平台移动项目的开发者,支持 iOS 和 Android 原生环境配置。
  • 通过分步引导完成项目创建,自动检测并提示所需开发环境和依赖项的安装要求。
  • 安装前需确认已具备 Node.js 22+、Xcode 或 Android Studio 等开发环境,避免权限或版本冲突问题。
  • capacitor-app-creation 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Capacitor App Creation

Create a new Capacitor app from scratch, including project scaffolding, platform setup, and optional integrations.

Prerequisites

  1. Node.js 22+ installed. Verify with node --version.
  2. For iOS: macOS with Xcode 26.0+ installed. Install Xcode Command Line Tools: xcode-select --install.
  3. For Android: Android Studio 2025.2.1+ installed with Android SDK (API 24+).

Agent Behavior

  • Guide step-by-step. Walk the user through the process one step at a time. Never present multiple unrelated questions at once.
  • One decision at a time. When a step requires user input, ask that single question, wait for the answer, then continue.
  • Present clear options. Provide concrete choices (e.g., "Do you want to add the iOS platform? (yes/no)") instead of open-ended questions.

Procedures

Step 1: Check for Ionic Framework

Before creating the app, ask the user:

Do you want to use the Ionic Framework for UI components and theming? (yes/no)

If the user answers yes, stop this skill and switch to the ionic-app-creation skill instead. If no, continue with Step 2.

Step 2: Create the Web App

Ask the user which web framework they want to use. Present these options:

  1. Angular
  2. React
  3. Vue
  4. None (vanilla JS/TS or existing web app)

Based on the selection, scaffold the web project:

Angular

npm install -g @angular/cli
ng new my-app
cd my-app

The default web asset directory for Angular is dist/my-app/browser. Adjust the directory name based on the actual project name.

React

npm create vite@latest my-app -- --template react-ts
cd my-app
npm install

The default web asset directory for React (Vite) is dist.

Vue

npm create vite@latest my-app -- --template vue-ts
cd my-app
npm install

The default web asset directory for Vue (Vite) is dist.

None (vanilla or existing web app)

If the user has an existing web app, confirm it meets these requirements:

  1. A package.json file exists at the project root.
  2. A build output directory exists (e.g., dist, www, build).
  3. An index.html file exists at the root of the build output directory.
  4. The index.html file contains a <head> tag (required for Capacitor plugins to work).

If the user wants a vanilla project:

mkdir my-app && cd my-app
npm init -y
mkdir www

Then create www/index.html:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>My App</title>
</head>
<body>
  <h1>My App</h1>
</body>
</html>

The web asset directory is www.

Step 3: Install Capacitor

Navigate to the project root directory and install the Capacitor core packages:

npm install @capacitor/core
npm install -D @capacitor/cli

Step 4: Initialize Capacitor

Run the Capacitor init command with the app name, app ID, and web asset directory:

npx cap init <appName> <appID> --web-dir <webDir>
  • <appName>: Ask the user for the display name of the app (e.g., "My App").
  • <appID>: Ask the user for the app ID in reverse-domain format (e.g., com.example.myapp).
  • <webDir>: Use the web asset directory determined in Step 2 (e.g., dist, www, dist/my-app/browser).

This creates a capacitor.config.ts file in the project root.

Step 5: Build the Web App

Before adding native platforms, build the web app so the output directory exists:

Angular

ng build

React / Vue (Vite)

npm run build

Vanilla

No build step needed if using a static www/ directory.

Step 6: Add Native Platforms

Ask the user which platforms to add:

Which platforms do you want to add? (android/ios/both)

Add Android

npm install @capacitor/android
npx cap add android

This creates the android/ directory with a native Android project.

Add iOS

npm install @capacitor/ios
npx cap add ios

This creates the ios/ directory with a native iOS project. By default, Capacitor 8 uses Swift Package Manager (SPM) for iOS dependency management.

Step 7: Sync the Project

Sync the web assets and native dependencies:

npx cap sync

This copies the built web assets into each native platform project and installs native dependencies (Gradle for Android, SPM for iOS).

Step 8: Run the App

Run the app on a connected device or emulator/simulator:

Android

npx cap run android

This prompts for a target device (emulator or physical device).

iOS

npx cap run ios

This prompts for a target simulator or physical device.

Step 9: Post-Creation Options

After the app is running, ask the user:

Do you want to set up Live Updates for over-the-air updates? (yes/no)

If yes, refer the user to the capawesome-cloud skill for live update setup.

Then ask:

Do you want to set up CI/CD for native builds and app store publishing? (yes/no)

If yes, refer the user to the capawesome-cloud skill for CI/CD setup.

Error Handling

  • npx cap init fails with "already initialized": A capacitor.config.ts or capacitor.config.json file already exists. The project is already a Capacitor project. Delete the existing config file if re-initialization is intended.
  • npx cap add fails with "platform already exists": The android/ or ios/ directory already exists. Remove the directory first: rm -rf android or rm -rf ios, then re-run npx cap add.
  • npx cap sync fails with "could not find the web assets directory": The web app has not been built yet, or the webDir in capacitor.config.ts points to a non-existent directory. Run the web app build command first (e.g., npm run build, ng build).
  • iOS build fails with "no such module": Run npx cap sync ios to ensure SPM dependencies are resolved.
  • Android build fails with SDK errors: Verify that Android SDK is installed and ANDROID_HOME or ANDROID_SDK_ROOT environment variable is set. Open Android Studio SDK Manager to install missing SDK versions.
  • index.html missing <head> tag: Capacitor plugins inject scripts into the <head> tag. Ensure the index.html in the web asset directory contains a <head> element.

Related Skills

  • ionic-app-creation — Create a new Ionic app with UI components and theming instead of a plain Capacitor app.
  • capacitor-app-development — General Capacitor app development guidance after app creation.
  • capacitor-angular — Angular-specific patterns and best practices for Capacitor apps.
  • capacitor-react — React-specific patterns and best practices for Capacitor apps.
  • capacitor-vue — Vue-specific patterns and best practices for Capacitor apps.
  • capacitor-plugins — Install and configure Capacitor plugins after app creation.
  • capawesome-cloud — Set up live updates, native builds, and CI/CD for the app.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.2%
按下载量换算285

Claude

29.88%
按下载量换算229

Cursor

19.22%
按下载量换算147

Gemini CLI

8.73%
按下载量换算67

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills