[eas-cli] Add project:status command - #4006
Draft
jonsamp wants to merge 4 commits into
Draft
Conversation
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## main #4006 +/- ##
==========================================
+ Coverage 62.47% 62.57% +0.10%
==========================================
Files 1008 1010 +2
Lines 45778 45979 +201
Branches 9632 9706 +74
==========================================
+ Hits 28596 28765 +169
- Misses 15721 15753 +32
Partials 1461 1461 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
jonsamp
force-pushed
the
jon/eng-24460-eas-projectstatus-command
branch
2 times, most recently
from
August 1, 2026 20:22
d30d6ed to
2442547
Compare
jonsamp
force-pushed
the
jon/eng-24460-eas-projectstatus-command
branch
from
August 2, 2026 15:39
2442547 to
54f1a06
Compare
Adds `eas project:status` (alias `eas status`), a snapshot of the project overview: recent production builds, development builds, workflow runs, submissions, and updates. Mirrors the website project dashboard and supports --json and --non-interactive for agent consumption.
jonsamp
force-pushed
the
jon/eng-24460-eas-projectstatus-command
branch
from
August 6, 2026 14:55
54f1a06 to
6ae101c
Compare
|
✅ Thank you for adding the changelog entry! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
Resolves ENG-24460.
We want a single command that outputs the same information you'd see on the website's project dashboard (the Overview page) — the latest builds, development builds, workflow runs, submissions, and updates. A big motivating use case is letting agents call one command and get back the current state of a project.
How
Adds
eas project:status(aliased aseas status).packages/eas-cli/src/commands/project/status.ts(thin: flags, context, dispatch).packages/eas-cli/src/project/projectStatus.tsthat aggregates all sections in parallel (Promise.all) and renders both human-readable text and a structured JSON snapshot.ProjectDashboardquery:filter: { developmentClient: false, distribution: STORE }filter: { developmentClient: true }AppQuery.byIdWorkflowRunsFilteredByStatusAsyncSubmissionQuery.allForAppAsyncUpdateQuery.viewUpdateGroupsOnAppAsync--json(emits{ project, productionBuilds, developmentBuilds, workflowRuns, submissions, updates }, nulls/__typenamestripped),--non-interactive(implied by--json), and--limit(default 3, cap 25).Notes for reviewers
SubmissionFragmentdoesn't includecreatedAt.Test Plan
src/commands/project/__tests__/status.test.ts(5 tests, passing): verifies the production/development build filter split, that--limitpropagates to every section, JSON snapshot shape, default text rendering, and the empty-project case.yarn fmt:check,yarn lint(0 errors),yarn typecheck(0 errors) all pass../bin/run project:status --helpand./bin/run status --helpboth resolve.