Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
rudrankriyam avatar

Asc Crash Triage

  • 1.7k installs
  • 934 repo stars
  • Updated July 21, 2026
  • rudrankriyam/app-store-connect-cli-skills

asc-crash-triage is an agent skill for Triage TestFlight crashes, beta feedback, and performance diagnostics using asc. Use when the user asks about TF crashes

About

The asc-crash-triage skill Triage TestFlight crashes, beta feedback, and performance diagnostics using asc. Use when the user asks about TF crashes, TestFlight crash reports, beta tester feedback, app hangs, disk writes, launch diagnostics, or wants a crash summary for a build or app. It covers resolve the app ID if not provided use asc apps list .. Key workflows include fetch data with the appropriate command.. 1. Resolve the app ID if not provided use asc apps list . 2. Fetch data with the appropriate command. 3. Parse JSON output and present a human-readable summary. Developers invoke asc-crash-triage when the task matches the triggers and reference files in SKILL.md for grounded, stepwise execution. Reference files and progressive disclosure keep context focused while preserving concrete commands, configuration fields, and validation checks copied from the upstream documentation.

  • Resolve the app ID if not provided use asc apps list .
  • Fetch data with the appropriate command.
  • Parse JSON output and present a human-readable summary.
  • asc testflight crashes list --app "APP_ID" --sort -createdDate --limit 10
  • Filter by build: asc testflight crashes list --app "APP_ID" --build "BUILD_ID" --sort -createdDate --limit 10

Asc Crash Triage by the numbers

  • 1,691 all-time installs (skills.sh)
  • +15 installs in the week ending Jul 28, 2026 (Skillselion tracking)
  • Ranked #428 of 2,184 Testing & QA skills by installs in the Skillselion catalog
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
At a glance

asc-crash-triage capabilities & compatibility

Capabilities
resolve the app id if not provided use asc apps · fetch data with the appropriate command. · parse json output and present a human readable s · asc testflight crashes list app "app_id" sor · filter by build: asc testflight crashes list a
Use cases
documentation
From the docs

What asc-crash-triage says it does

Use this skill to fetch, analyze, and summarize TestFlight crash reports, beta feedback, and performance diagnostics.
SKILL.md
npx skills add https://github.com/rudrankriyam/app-store-connect-cli-skills --skill asc-crash-triage

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1.7k
repo stars934
Security audit3 / 3 scanners passed
Last updatedJuly 21, 2026
Repositoryrudrankriyam/app-store-connect-cli-skills

What problem does asc-crash-triage solve for developers using the documented workflows?

Triage TestFlight crashes, beta feedback, and performance diagnostics using asc. Use when the user asks about TF crashes, TestFlight crash reports, beta tester feedback, app hangs, disk writes, launch

Who is it for?

Developers working with asc-crash-triage patterns described in the skill documentation.

Skip if: Skip when docs are empty or the task is outside the skill documented scope.

When should I use this skill?

Use when Triage TestFlight crashes, beta feedback, and performance diagnostics using asc. Use when the user asks about TF crashes, TestFlight crash reports, beta tester feedback, app hangs,

What you get

Actionable asc-crash-triage guidance grounded in SKILL.md workflows and reference files.

  • Crash summary report
  • Beta feedback digest
  • Performance diagnostic overview

Files

SKILL.mdMarkdownGitHub ↗

asc crash triage

Use this skill to fetch, analyze, and summarize TestFlight crash reports, beta feedback, and performance diagnostics.

Workflow

1. Resolve the app ID if not provided (use asc apps list). 2. Fetch data with the appropriate command. 3. Parse JSON output and present a human-readable summary.

TestFlight crash reports

List recent crashes (newest first):

  • asc testflight crashes list --app "APP_ID" --sort -createdDate --limit 10
  • Filter by build: asc testflight crashes list --app "APP_ID" --build "BUILD_ID" --sort -createdDate --limit 10
  • Filter by device/OS: asc testflight crashes list --app "APP_ID" --device-model "iPhone16,2" --os-version "18.0"
  • All crashes: asc testflight crashes list --app "APP_ID" --paginate
  • Table view: asc testflight crashes list --app "APP_ID" --sort -createdDate --limit 10 --output table

TestFlight beta feedback

List recent feedback (newest first):

  • asc testflight feedback list --app "APP_ID" --sort -createdDate --limit 10
  • With screenshots: asc testflight feedback list --app "APP_ID" --sort -createdDate --limit 10 --include-screenshots
  • Filter by build: asc testflight feedback list --app "APP_ID" --build "BUILD_ID" --sort -createdDate
  • All feedback: asc testflight feedback list --app "APP_ID" --paginate

Performance diagnostics (hangs, disk writes, launches)

Requires a build ID. Resolve via asc builds info --app "APP_ID" --latest --platform IOS or asc builds list --app "APP_ID" --sort -uploadedDate --limit 5.

  • List diagnostic signatures: asc performance diagnostics list --build "BUILD_ID"
  • Filter by type: asc performance diagnostics list --build "BUILD_ID" --diagnostic-type "HANGS"
  • Types: HANGS, DISK_WRITES, LAUNCHES
  • View logs for a signature: asc performance diagnostics view --id "SIGNATURE_ID"
  • Download all metrics: asc performance download --build "BUILD_ID" --output ./metrics.json

Resolving IDs

  • App ID from name: asc apps list --name "AppName" or asc apps list --bundle-id "com.example.app"
  • Latest build ID: asc builds info --app "APP_ID" --latest --platform IOS
  • Recent builds: asc builds list --app "APP_ID" --sort -uploadedDate --limit 5
  • Set default: export ASC_APP_ID="APP_ID"

Summary format

When presenting results, organize by severity and frequency:

1. Total count — how many crashes/feedbacks in the result set. 2. Top crash signatures — group by exception type or crash reason, ranked by count. 3. Affected builds — which build versions are impacted. 4. Device & OS breakdown — most affected device models and OS versions. 5. Timeline — when crashes started or spiked.

For performance diagnostics, highlight the highest-weight signatures first.

Notes

  • Default output is JSON; use --output table or --output markdown for quick human review.
  • Use --paginate to fetch all pages when doing a full analysis.
  • Use --pretty with JSON for debugging command output.
  • Crash data from App Store Connect may have 24-48h delay.

Related skills

Forks & variants (3)

Asc Crash Triage has 3 known copies in the catalog totaling 3.2k installs. They canonicalize to this original listing.

How it compares

Use when crash data must be pulled and summarized from asc CLI JSON rather than manually browsing the App Store Connect web dashboard.

FAQ

Who is asc-crash-triage for?

Developers and software engineers working with asc-crash-triage patterns described in the skill documentation.

When should I use asc-crash-triage?

When Triage TestFlight crashes, beta feedback, and performance diagnostics using asc. Use when the user asks about TF crashes, TestFlight crash reports, beta tester feedback, app hangs,.

Is asc-crash-triage safe to install?

Review the Security Audits panel on this page before installing in production.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.