# Send App Store Connect to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "app-store-connect",
    "name": "App Store Connect",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ivangdavila/app-store-connect",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/app-store-connect",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/app-store-connect",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=app-store-connect",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "api-auth.md",
      "workflows.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/app-store-connect"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/app-store-connect",
    "downloadUrl": "https://openagent3.xyz/downloads/app-store-connect",
    "agentUrl": "https://openagent3.xyz/skills/app-store-connect/agent",
    "manifestUrl": "https://openagent3.xyz/skills/app-store-connect/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/app-store-connect/agent.md"
  }
}
```
## Documentation

### 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

TopicFileAPI Authenticationapi-auth.mdCommon Workflowsworkflows.md

### 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:

StateMeaningActionPROCESSINGUpload received, processingWaitFAILEDProcessing failedCheck logsINVALIDValidation failedFix issues, re-uploadVALIDReady for testing/submissionProceed

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

EndpointData SentPurposeapi.appstoreconnect.apple.comApp metadata, build infoApp 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

Install with clawhub install <slug> if user confirms:

ios — iOS development patterns
swift — Swift language reference
xcode — Xcode IDE workflows

### Feedback

If useful: clawhub star app-store-connect
Stay updated: clawhub sync
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/app-store-connect)
- [Send to Agent page](https://openagent3.xyz/skills/app-store-connect/agent)
- [JSON manifest](https://openagent3.xyz/skills/app-store-connect/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/app-store-connect/agent.md)
- [Download page](https://openagent3.xyz/downloads/app-store-connect)