Status Command
Track the state of your deployments and see what is currently live in production.
Basic Usage
msh status
Output:
Project Status
┌──────────────┬─────────────┐
│ Asset │ Active Hash │
├──────────────┼─────────────┤
│ revenue_mart │ a1b2 │
│ orders │ c3d4 │
└──────────────┴─────────────┘
Output Formats
Table Format (Default)
msh status
The default table format provides a human-readable view of all assets and their active versions.
JSON Format
msh status --format json
The JSON format is useful for automation and CI/CD pipelines.
JSON Output:
{
"assets": [
{
"name": "orders",
"active_hash": "a1b2c3"
},
{
"name": "revenue",
"active_hash": "d4e5f6"
}
]
}