venture-health-checkLightweight health check that queries venture state, reads the dispatch schedule, creates measurements for each venture invariant, and produces a SITUATION artifact summarizing overall health.
{
"invariants": [
{
"id": "CHECK-STATE",
"form": "directive",
"description": "Query the venture using venture_query to read its current state, invariants, and metadata. Summarize what the venture is about and its current status."
},
{
"id": "CHECK-SCHEDULE",
"form": "directive",
"description": "Read the dispatch schedule using read_dispatch_schedule. Report what templates are scheduled, their cadence, and whether they appear to be running on time."
},
{
"id": "CHECK-MEASURE",
"form": "directive",
"description": "For each venture invariant that has a measurable value (FLOOR, CEILING, RANGE types), create a measurement using create_measurement with the current observed value. Use get_details to look up recent job results if needed to determine current values."
},
{
"id": "CHECK-REPORT",
"form": "directive",
"description": "Create a SITUATION artifact using create_artifact that summarizes the health check findings: venture state, schedule status, measurement results, and any anomalies or concerns detected."
}
]
}