orun get
orun get lists resources in a kubectl-style interface.
Usage
orun get <resource>
Supported resources: plans, runs, jobs, components, environments.
Subcommands
orun get plans
List stored plans:
orun get plans
Output shows revision IDs, job counts, age, and status:
REVISION JOBS AGE STATUS
latest 38 now ● ready
a1b2c3d4ef12 38 now ● ready
A summary line below the table shows the revision count and latest checksum.
orun get jobs
List jobs from the latest (or named) plan, grouped by component and environment:
orun get jobs
When run from inside a component directory, the job list is automatically scoped to that component and its dependencies. Use --all to see all jobs.
Default view (tree):
PLAN: my-plan (a1b2c3d) · 38 jobs
api-edge-worker
production
○ verify-deploy pending
staging
○ verify-deploy pending
platform-shared
production
✓ build completed
View modes
| Flag | View |
|---|---|
--view=tree | Grouped component → env → job tree (default) |
--view=compact | One line per job: icon, component, env, job name |
--view=table or --output wide | Full job ID table |
Plan reference
orun get jobs --plan release-candidate
orun get jobs --plan a1b2c3
orun get runs
List execution records (alias for orun status --all):
orun get runs
orun get components
List components from the intent:
orun get components
Default compact view:
15 components
✓ api-edge-worker cloudflare-worker-turbo prod,staging,dev
✓ platform-shared turbo-package prod,staging,dev
– legacy-service terraform prod
Use --long for the full detail view with inputs and instance paths.
orun get environments
List environments from the intent:
orun get environments
Output is sorted alphabetically with associated metadata:
ENVIRONMENTS 4
dev prefix=dev-
prod prefix=prod-
staging prefix=stg-
Flags
| Flag | Meaning |
|---|---|
--output, -o | Output format: json, yaml, or wide |
--plan | Plan reference for get jobs (name, checksum prefix, or latest) |
--view | View mode for get jobs: tree, compact, or table |
--intent, -i | Intent file for get components and get environments (auto-discovered if not set) |
--all | Disable CWD-based scoping for get jobs |
All subcommands support -o json for machine-readable output.
See context-aware discovery for details on automatic scoping.