mirror of
https://github.com/rudrankriyam/App-Store-Connect-CLI.git
synced 2026-04-25 23:55:51 +03:00
[GH-ISSUE #657] Dashboard: pretty app release status + optional insights + account health #185
Labels
No labels
bug
bug
documentation
enhancement
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/App-Store-Connect-CLI#185
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @rudrankriyam on GitHub (Feb 19, 2026).
Original GitHub issue: https://github.com/rudrankriyam/App-Store-Connect-CLI/issues/657
Problem
Users want a single, non-interactive command that answers:
Separately, teams want an opt-in weekly summary of business/engagement signals sourced from Apple-provided exports (public API), suitable for CI artifacts and human review.
Today, answering these questions requires stitching together multiple commands and mentally assembling state.
Proposal (scoped, explicit)
1) App release dashboard:
asc statusEntry point:
Goals:
--output table/--output markdownrenders a "dashboard" with section headersSuggested flags:
--app(required; respectsASC_APP_ID)--include(comma-separated sections; default = sensible set)app,builds,testflight,appstore,submission,review,phased-release,links--output json|table|markdown,--prettyDashboard formatting rules (table output):
✓,⏳,✗,—Implementation note:
registerDirect/ direct render registry) to emit multiple tables in a single command.2) Weekly insights summary (opt-in):
asc insights weeklyEntry point:
Goals:
Potential sources (choose explicit
--source):--source analytics(App Analytics exports viaanalyticsReportRequests/downloads)--source sales(Sales & trends report downloads)Suggested flags:
--app(required)--source analytics|sales(required)--week "YYYY-MM-DD"(week start date, or a documented convention)--vendorwhen--source sales(respectsASC_VENDOR_NUMBER)--output json|table|markdown,--prettyOutput model:
thisWeek,lastWeek,delta,deltaPercent(when meaningful)Non-goals (phase 1):
3) Account / workspace health (separate scope)
Avoid overloading
asc statuswith non-app checks. Provide explicit commands:asc account status(team-level signals)asc doctor(local + auth sanity)4) Multi-app portfolio view (future)
For true cross-app "what needs attention" workflows, add a portfolio runner later:
asc apps status --file .asc/apps.json(bounded concurrency, aggregated result)Implementation notes
ASC_TIMEOUT.linkssection) to relevant App Store Connect web UI pages.Acceptance criteria
asc statusasc status --helpexists and documents sections/flags--appreturns exit code 2 (usage)--includereliably filters sections--output tableproduces a readable multi-section dashboardasc insights weeklyasc insights weekly --helpexistsTest plan (TDD-first)
statusdefault JSON shape + include filteringRelated
@rudrankriyam commented on GitHub (Feb 20, 2026):
Closing as completed. Status dashboard now renders 'Needs Attention' only when blockers exist; fix is on main in
e8f1c3bd.