# Linear Statuses

> View and manage workflow states. Use when checking or configuring issue statuses for a team.

- Skill: `nesszer/linear-statuses` (Agent Skill)
- Install (CLI): `npx skillmds@latest add nesszer/linear-statuses`
- Raw SKILL.md: https://api.skillmd.com/api/skills/nesszer/linear-statuses/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: nesszer (https://skillmd.com/u/nesszer)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/nesszer/linear-statuses

---


# Statuses

```bash
# List all statuses for a team
linear-cli st list -t ENG
linear-cli st list -t ENG --output json

# Get status details
linear-cli st get "In Progress" -t ENG

# Update a workflow state
linear-cli st update STATE_ID --name "Reviewing" --color "#3B82F6"
```

## Flags

| Flag | Purpose |
|------|---------|
| `-t TEAM` | Team key (required) |
| `--name NAME` | Status name |
| `--color HEX` | Status color |
| `--output json` | JSON output |

## Exit Codes

`0`=Success, `1`=Error, `2`=Not found, `3`=Auth error

