Advertise task ID capability in health

This commit is contained in:
Himanshu Dongre 2026-04-14 00:35:24 +05:30
parent 638e6a15d3
commit 9e570a04e3
2 changed files with 2 additions and 0 deletions

View file

@ -77,6 +77,7 @@ def create_app() -> FastAPI:
_capabilities = [
"claims", # /api/v5/claims
"structured_tasks", # task objects with intent_hint/blocked_by/status
"task_ids", # structured task ids + claim.task_id support
"checkpoint_notes", # /api/v5/checkpoint/{id}/notes
"branch_disposition", # PATCH /api/v5/lineage/branches/disposition
"freshness", # since_commit_id on state endpoint

View file

@ -29,6 +29,7 @@ def test_health_includes_required_capabilities(client):
required = [
"claims",
"structured_tasks",
"task_ids",
"checkpoint_notes",
"branch_disposition",
"freshness",