Skip to content
Deployment
Skill

/asc-crash-triage

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.

From plugin
asc
95523 skills
Install
$ npx -y skills add rorkai/app-store-connect-cli-skills --skill asc-crash-triage --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/asc-crash-triage

Context preview

The summary Claude sees to decide when to auto-load this 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.

SKILL.md

asc-crash-triage.SKILL.md
name: asc-crash-triage
description: 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.

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.
Read more
Ships withasc

A collection of Agent Skills for shipping with the asc cli (asc). These skills help agents run builds, TestFlight, metadata, submissions, signing, and Apple Ads workflows. This is a community-maintained, unofficial skill pack and is not affiliated with Apple.

Get the whole plugin
Stats
955
Stars
51
Forks
Active
Maintenance
Python
Language
MIT
License
1d ago
Last commit
6mo ago
Created

Repo: rorkai/app-store-connect-cli-skills