‹ 首页

app-store-connect

@clawic · 收录于 昨天 · 上游提交 2 天前

Manage iOS apps, TestFlight builds, submissions, and analytics via App Store Connect API.

适合你,如果你经常需要通过 API 自动化苹果商店的应用管理流程

/ 通过 npx 安装 校验哈希
npx oh-my-skill add clawic/skills/app-store-connect
/ 通过 bash 安装
curl -fsSL https://oh-my-skill.com/install.sh | bash -s -- clawic/skills/app-store-connect
/ 已经装过?验证本机副本,不用重装
npx oh-my-skill verify clawic/skills/app-store-connect
安装目标可用 --agent / --scope 或 --to 明确指定;省略时只会在唯一已存在的 agent 目录上自动选择,零命中或多命中会停止并提示。content_hash 缺失或不一致均拒装。
14GitHub stars
~908最小装载
~2.9K含声明引用
~2.9K文本包总量
索引托管

怎么用

商店整理自技能原文 · 版本 f825206 · 表述以原文为准
它做什么

装上后,Claude 能管理你的 App Store Connect 上的 iOS/macOS 应用,包括查看构建状态、分发 TestFlight 测试、提交 App Review 和获取分析数据。

什么时候触发

当你需要管理 App Store Connect 上的应用(如查看构建、TestFlight 分发、App Review 提交等)时,Claude 会自动处理认证和 API 操作。

装好后可以这样说
Claude 会查询构建处理状态并告诉你是否可用。
Claude 会检查资格并触发分发。
Claude 会获取最新的审阅状态。
技能原文 SKILL.md作者撰写 · MIT · f825206
When to Use

User needs to manage iOS/macOS apps on App Store Connect. Agent handles API authentication, build management, TestFlight distribution, App Review submissions, and analytics retrieval.

Quick Reference

| Topic | File | |-------|------| | API Authentication | api-auth.md | | Common Workflows | workflows.md |

Core Rules
1. JWT Authentication Required

App Store Connect API uses JWT tokens signed with your private key.

# Required environment variables:
# ASC_ISSUER_ID     - From App Store Connect > Users > Keys
# ASC_KEY_ID        - From the API key you created
# ASC_PRIVATE_KEY_PATH - Path to your .p8 private key file

Generate JWT with ES256 algorithm, 20-minute expiration max. See api-auth.md for code examples.

2. API Versioning

Always specify API version in requests.

curl -H "Authorization: Bearer $JWT" \
     "https://api.appstoreconnect.apple.com/v1/apps"

Current stable version: v1. Check Apple docs for v2 endpoints.

3. Build Processing States

Builds go through states after upload:

| State | Meaning | Action | |-------|---------|--------| | PROCESSING | Upload received, processing | Wait | | FAILED | Processing failed | Check logs | | INVALID | Validation failed | Fix issues, re-upload | | VALID | Ready for testing/submission | Proceed |

Never submit a build that is not VALID.

4. TestFlight Distribution
  • Internal Testing: Up to 100 members, builds available immediately after processing
  • External Testing: Up to 10,000 testers, requires Beta App Review for first build of version
  • External groups need at least: app description, feedback email, privacy policy URL
5. App Review Submission

Before submitting for review:

  • All required metadata complete (descriptions, keywords, screenshots)
  • App Preview videos under 30 seconds
  • Privacy policy URL valid and accessible
  • Contact information current

Submission creates an appStoreVersion in PENDING_DEVELOPER_RELEASE or WAITING_FOR_REVIEW.

6. Rate Limits

API has rate limits per hour. Handle 429 responses with exponential backoff.

# Respect Retry-After header
HTTP/1.1 429 Too Many Requests
Retry-After: 60
7. Bundle ID Management

Bundle IDs are permanent once created. Cannot be deleted or renamed.

  • Use reverse-domain notation: com.company.appname
  • Plan naming carefully before registration
  • Each bundle ID can only belong to one team
Common Traps
  • Expired JWT - Tokens expire in 20 min max. Regenerate before long operations.
  • Wrong key permissions - API keys need specific roles (Admin, App Manager, etc.)
  • Missing export compliance - Apps with encryption need ECCN or exemption documentation
  • Build version collision - Each build needs unique version+build number combo
  • Screenshot dimensions - Must match exactly for each device type (no scaling)
  • Phased release confusion - Phased release is for App Store only, not TestFlight
External Endpoints

| Endpoint | Data Sent | Purpose | |----------|-----------|---------| | api.appstoreconnect.apple.com | App metadata, build info | App Store Connect API |

No other data is sent externally.

Security & Privacy

Data that leaves your machine:

  • App metadata sent to Apple for App Store listing
  • Build information for processing
  • Analytics queries

Data that stays local:

  • API private key (.p8) - never transmit
  • JWT tokens - generated locally
  • Downloaded reports

This skill does NOT:

  • Store your .p8 key in plain text
  • Share credentials with third parties
  • Access apps outside your team
Related Skills

More Clawic skills, get them at https://clawic.com/skills/<slug> (install if the user confirms):

  • ios — iOS development patterns
  • swift — Swift language reference
  • xcode — Xcode IDE workflows
Feedback
  • If useful, star it: https://clawic.com/skills/app-store-connect
  • Latest version: https://clawic.com/skills/app-store-connect
按 MIT 许可原样转载,未经改动 · 在 GitHub 查看 →

评论

登录即可评论;带「已验证安装」的,是发布者名下有本店的安装或持有记录。