AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Asc Release Flow

skill-kumaran-is-claude-code-onboarding-asc-release-flow · by kumaran-is

End-to-end release workflows for TestFlight and App Store using asc publish, builds, versions, and submit commands. Use when uploading a build to App Store Connect, distributing to TestFlight beta testers, submitting to App Store review, managing iOS/macOS/visionOS/tvOS releases, or running multi-platform releases. Triggers: "upload build", "distribute TestFlight", "submit to App Store", "asc pub…

No reviews yet
0 installs
41 views
0.0% view→install

Install

$ agentstack add skill-kumaran-is-claude-code-onboarding-asc-release-flow

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-kumaran-is-claude-code-onboarding-asc-release-flow)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Asc Release Flow? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Release flow (TestFlight and App Store)

Use this skill when you need to get a new build into TestFlight or submit to the App Store.

Iron Law

NEVER UPLOAD A BUILD WITHOUT VERIFYING ENCRYPTION COMPLIANCE IS RESOLVED AND BUILD NUMBER IS UNIQUE

Run asc-submission-health preflight checks before any App Store submission. Use asc-id-resolver to resolve all IDs before running release commands.

Preconditions

  • Ensure credentials are set (asc auth login or ASC_* env vars).
  • Use a new build number for each upload.
  • Prefer ASC_APP_ID or pass --app explicitly.
  • Build must have encryption compliance resolved (see asc-submission-health skill).

iOS Release

Preferred end-to-end commands

  • TestFlight:
  • asc publish testflight --app --ipa --group [,]
  • Optional: --wait, --notify, --platform, --poll-interval, --timeout
  • App Store:
  • asc publish appstore --app --ipa --version
  • Optional: --wait, --submit --confirm, --platform, --poll-interval, --timeout

Manual sequence (when you need more control)

  1. Upload the build:
  • asc builds upload --app --ipa
  1. Find the build ID if needed:
  • asc builds latest --app [--version ] [--platform ]
  1. TestFlight distribution:
  • asc builds add-groups --build --group [,]
  1. App Store attach + submit:
  • asc versions attach-build --version-id --build
  • asc submit create --app --version --build --confirm
  1. Check or cancel submission:
  • asc submit status --id or --version-id
  • asc submit cancel --id --confirm

macOS Release

macOS apps are distributed as .pkg files, not .ipa.

Build and Export

See asc-xcode-build skill for full build/archive/export workflow.

Upload PKG

Upload the exported .pkg using asc:

asc builds upload \
  --app  \
  --pkg  \
  --version  \
  --build-number  \
  --wait

Notes:

  • --pkg automatically sets platform to MAC_OS.
  • asc publish appstore currently supports --ipa workflows; for macOS .pkg, use asc builds upload --pkg + attach/submit steps below.

Attach and Submit

Same as iOS, but use --platform MAC_OS:

# Wait for build to process
asc builds list --app  --platform MAC_OS --limit 5

# Attach to version
asc versions attach-build --version-id  --build 

# Create submission
asc review submissions-create --app  --platform MAC_OS

# Add version item
asc review items-add \
  --submission  \
  --item-type appStoreVersions \
  --item-id 

# Submit
asc review submissions-submit --id  --confirm

visionOS / tvOS Release

Same as iOS flow, use appropriate --platform:

  • VISION_OS
  • TV_OS

Multi-Platform Release

When releasing the same version across platforms:

  1. Upload each platform's build separately
  2. Create version for each platform if not exists
  3. Attach builds to respective versions
  4. Submit each platform separately (or together via reviewSubmissions API)

Pre-submission Checklist

Before submitting, verify:

  • [ ] Build status is VALID (not processing)
  • [ ] Encryption compliance resolved
  • [ ] Content rights declaration set
  • [ ] Copyright field populated
  • [ ] All localizations complete
  • [ ] Screenshots present

See asc-submission-health skill for detailed preflight checks.

Notes

  • Always use --help to verify flags for the exact command.
  • Use --output table / --output markdown for human-readable output; default is JSON.
  • macOS builds require ITSAppUsesNonExemptEncryption in Info.plist to avoid encryption issues.

Documentation Sources

| Source | How to Access | Purpose | |--------|--------------|---------| | asc CLI help | asc publish --help, asc builds --help, asc submit --help | Current flags for upload and submission commands | | asc-submission-health skill | Load skill | Preflight checklist before any App Store submission | | XcodeBuildMCP | build_sim, build_run_sim tools | Build and export IPA before upload |

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.