---
model: haiku
---

# /ado-status $ARGUMENTS

Update only work item status on Azure DevOps (fast, no content push).

## Syntax
/ado-status <ado-id> --status <state> [--assign <name/email>]

## Examples
/ado-status 1234 --status "In Progress"
/ado-status 5678 --status "Resolved" --assign "user@example.com"

## Actions
1. Read `tas.yaml`, check `ado.enabled`. If `false` or missing: report "ADO integration is disabled (`ado.enabled: false` in tas.yaml)." then stop.
2. Run: python .tas/tools/tas-ado.py update-status <ado-id> --status <state> [--assign ...]
3. Script will:
   - Only update state and/or assigned-to on ADO
   - Find local file, update frontmatter: status, last_ado_sync
   - Update root/project-status.yaml
