# atmos version track status

Show policy-aware lock and update status for each entry in a track.

## Status Values

- **`current`**
  The locked version matches the policy-eligible target.
- **`update-available`**
  A policy-eligible update differs from the locked version. 
  `update`
   would take it.
- **`newer-available (blocked)`**
  A newer version exists upstream, but policy holds it back. The entry still passes 
  `verify`
  .
- **`unlocked`**
  The entry has no lock file record.
- **`locked`**
  The entry is locked, but its target could not be resolved.

## Usage

```shell
atmos version track status [track] [flags]
```

## Flags

- **`--group`**
  Limit status to entries in the named version group.

## Examples

```shell
# Show status for prod
atmos version track status prod

# Show infrastructure group status as JSON
atmos version track status prod --group=infrastructure --format=json
```
