asc-crash-triage

rudrankriyam/app-store-connect-cli-skills · updated Apr 8, 2026

$npx skills add https://github.com/rudrankriyam/app-store-connect-cli-skills --skill asc-crash-triage
0 commentsdiscussion
summary

Fetch, analyze, and summarize TestFlight crashes, beta feedback, and performance diagnostics via asc.

  • Retrieves crash reports filtered by app, build, device model, or OS version; supports pagination and multiple output formats (JSON, table, markdown)
  • Fetches beta tester feedback with optional screenshot inclusion and build-level filtering
  • Analyzes performance diagnostics (hangs, disk writes, launch metrics) by signature and diagnostic type
  • Resolves app and build IDs automatically;
skill.md

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.

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.629 reviews
  • Luis Sanchez· Dec 12, 2024

    We added asc-crash-triage from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Li Srinivasan· Dec 8, 2024

    Solid pick for teams standardizing on skills: asc-crash-triage is focused, and the summary matches what you get after install.

  • Hassan Johnson· Nov 27, 2024

    I recommend asc-crash-triage for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Luis Park· Nov 3, 2024

    asc-crash-triage fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Sophia Gill· Oct 22, 2024

    asc-crash-triage has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Mei Thomas· Oct 18, 2024

    Keeps context tight: asc-crash-triage is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Ishan Smith· Sep 25, 2024

    Registry listing for asc-crash-triage matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Diya Farah· Sep 5, 2024

    Useful defaults in asc-crash-triage — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Sakshi Patil· Sep 1, 2024

    asc-crash-triage fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Nia Thompson· Sep 1, 2024

    Solid pick for teams standardizing on skills: asc-crash-triage is focused, and the summary matches what you get after install.

showing 1-10 of 29

1 / 3