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

apple-app-store-agentApple 应用 store Agent

Agent Skill

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

总安装

212

周安装

9

GitHub Stars

公开资料未说明

下载量

74
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/johanruttens/paddle-battle --skill apple-app-store-agent

简介

apple-app-store-agent 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。

  • 适用于 Apple App Store 提交资产自动化准备、元数据生成和 fastlane 配置的场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认应用信息和目标市场。
  • 安装前建议检查维护状态,避免触发不必要的文件生成或网络请求操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Apple App Store Agent

Automate preparation of all assets required for Apple App Store submission: metadata, screenshots, icons, and fastlane configuration.

Workflow Decision Tree

User Request
    │
    ├─► "Full App Store preparation" ──► Run complete workflow (all steps)
    │
    ├─► "Generate metadata" ──► Step 1: Gather app info → Generate descriptions, keywords
    │
    ├─► "Create screenshots" ──► Step 2: Get app screens → Generate styled screenshots
    │
    ├─► "Make app icon" ──► Step 3: Get concept → Generate icon in all sizes
    │
    ├─► "Set up fastlane" ──► Step 4: Create folder structure with all metadata files
    │
    └─► "Prepare review info" ──► Step 5: Generate review notes, demo credentials template

Step 1: Generate App Metadata

Gather information from user about their app:

  • App name and bundle identifier
  • Core functionality (what problem it solves)
  • Target audience
  • Key features (3-5 main features)
  • Competitor apps (for positioning)

Output Files

Generate these localized text files (start with en-US):

FileMax LengthPurpose
name.txt30 charsApp name on App Store
subtitle.txt30 charsBrief tagline below app name
description.txt4000 charsFull app description
promotional_text.txt170 charsUpdatable promo text (top of description)
keywords.txt100 charsComma-separated, no spaces after commas
release_notes.txt4000 charsWhat's new in this version
support_url.txtURLSupport page link
marketing_url.txtURLMarketing page link
privacy_url.txtURLPrivacy policy link (REQUIRED)

Writing Guidelines

Description structure:

  1. Opening hook (1-2 sentences) - immediately convey value
  2. Key features with bullet points (use ● not -)
  3. Social proof if available
  4. Call to action

Keywords strategy:

  • Use all 100 characters
  • No duplicates of words in app name
  • Include common misspellings
  • Mix head terms and long-tail
  • Separate with commas, no spaces

Step 2: Create App Screenshots

Required Dimensions (2024/2025)

iPhone (Required: ONE of these):

  • 6.9" display: 1320 x 2868 px (portrait) / 2868 x 1320 px (landscape) - iPhone 16 Pro Max
  • 6.5" display: 1242 x 2688 px (portrait) / 2688 x 1242 px (landscape) - fallback

iPad (Required if app runs on iPad):

  • 13" display: 2064 x 2752 px (portrait) / 2752 x 2064 px (landscape)

Optional (auto-scaled from above):

  • All other iPhone sizes scale from 6.9"/6.5"
  • All other iPad sizes scale from 13"

Screenshot Design Process

  1. Identify key screens - Focus on 5-10 most compelling features
  2. Create device mockups - Use scripts/generate_screenshot_mockup.py
  3. Add marketing text - Short, benefit-focused headlines
  4. Maintain consistency - Same style, colors, typography across all

Screenshot Content Guidelines

  • First 3 screenshots are critical (visible in search results)
  • Show actual app UI (Apple rejects misleading screenshots)
  • Text overlays: 6-8 words max per screenshot
  • Include device frame for professional look
  • Use app's brand colors for backgrounds

See references/screenshot-specs.md for detailed dimensions and file naming.

Step 3: Generate App Icon

Icon Specifications

App Store icon: 1024 x 1024 px (PNG, no transparency, no rounded corners)

Apple applies corner radius automatically. Submit square icon.

Icon Design Principles

  • Simple, recognizable silhouette
  • Limited color palette (2-3 colors)
  • No text (illegible at small sizes)
  • Avoid photos (don't scale well)
  • Test at 29x29 px for clarity

Use scripts/generate_app_icon.py to create icon or provide concept for AI generation.

Step 4: Set Up Fastlane Structure

Create this folder structure for fastlane deliver:

fastlane/
├── Appfile
├── Deliverfile
├── metadata/
│   ├── copyright.txt
│   ├── primary_category.txt
│   ├── secondary_category.txt
│   ├── en-US/
│   │   ├── name.txt
│   │   ├── subtitle.txt
│   │   ├── description.txt
│   │   ├── keywords.txt
│   │   ├── promotional_text.txt
│   │   ├── release_notes.txt
│   │   ├── privacy_url.txt
│   │   ├── support_url.txt
│   │   └── marketing_url.txt
│   └── review_information/
│       ├── demo_password.txt
│       ├── demo_user.txt
│       ├── email_address.txt
│       ├── first_name.txt
│       ├── last_name.txt
│       ├── notes.txt
│       └── phone_number.txt
└── screenshots/
    └── en-US/
        ├── iphone_6.9_inch/
        │   ├── 1_feature_one.png
        │   ├── 2_feature_two.png
        │   └── ...
        └── ipad_13_inch/
            ├── 1_feature_one.png
            └── ...

Use scripts/init_fastlane_structure.py to generate this structure.

Step 5: App Review Preparation

Review Information Checklist

  • Demo account credentials (if login required)
  • Notes explaining non-obvious features
  • Contact information for reviewer questions
  • Any required hardware/conditions explained

Common Rejection Reasons to Address

  1. Incomplete metadata - Fill ALL required fields
  2. Placeholder content - Remove "lorem ipsum" or test data
  3. Broken links - Test privacy_url and support_url
  4. Login issues - Demo account must work
  5. Misleading screenshots - Must show actual app

Privacy Policy Requirements

Privacy URL is mandatory. Must include:

  • What data is collected
  • How data is used
  • Third-party sharing
  • Data retention policy
  • Contact information

Provide GitHub Pages URL or hosted policy link.

App Categories

Primary category is required. See references/app-categories.md for full list.

Common categories:

  • Games (with subcategory)
  • Business
  • Education
  • Entertainment
  • Finance
  • Health & Fitness
  • Lifestyle
  • Productivity
  • Social Networking
  • Utilities

Scripts

ScriptPurpose
init_fastlane_structure.pyCreate complete fastlane folder structure
generate_screenshot_mockup.pyAdd device frames and text to screenshots
generate_app_icon.pyCreate app icon in required size
validate_metadata.pyCheck character limits and required fields

Quick Start

For full preparation, run:

python scripts/init_fastlane_structure.py --app-name "My App" --bundle-id "com.company.app"

Then populate the generated text files with content.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.44%
按下载量换算27

Claude

30.52%
按下载量换算23

Cursor

20.38%
按下载量换算15

Gemini CLI

8.5%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills