veirox todo
Manage action items
Synopsis
veirox todo <subcommand> [args] [flags]
Description
Manage action items
Subcommands
| Command | Description |
|---|---|
veirox todo count | Count action items matching the filter |
veirox todo done <todo-id> | Resolve an action item |
veirox todo info <todo-id> | Show one action item |
veirox todo list | List action items |
veirox todo new | Create a new action item |
veirox todo rm <todo-id> | Delete an action item |
veirox todo update <todo-id> | Update an action item |
veirox todo count
Count action items matching the filter
| Flag | Type | Default | Description |
|---|---|---|---|
--context | string | — | filter by context tag |
--priority | string | — | filter by priority |
--search | string | — | search text |
--status | string | — | filter by status |
veirox todo count --status open
veirox todo done <todo-id>
Resolve an action item
veirox todo done <uuid>
veirox todo info <todo-id>
Show one action item
veirox todo info <uuid>
veirox todo list
List action items
| Flag | Type | Default | Description |
|---|---|---|---|
--context | string | — | filter by context tag |
--limit | int | 0 | page size |
--offset | int | 0 | pagination offset |
--priority | string | — | filter by priority (low | medium | high) |
--search | string | — | search text |
--status | string | — | filter by status (open | resolved | dismissed) |
veirox todo list --status open --priority high
veirox todo new
Create a new action item
| Flag | Type | Default | Description |
|---|---|---|---|
--priority | string | medium | priority (low | medium | high) |
--status | string | open | initial status |
--title | string | — | action item title |
veirox todo new --title 'rotate prod creds' --priority high
veirox todo rm <todo-id>
Delete an action item
| Flag | Type | Default | Description |
|---|---|---|---|
--yes | bool | false | confirm deletion |
veirox todo rm <uuid> --yes
veirox todo update <todo-id>
Update an action item
| Flag | Type | Default | Description |
|---|---|---|---|
--priority | string | — | new priority |
--status | string | — | new status |
--title | string | — | new title |
veirox todo update <uuid> --status open --priority high
Exit codes
| Code | Meaning |
|---|---|
0 | Success. |
1 | Generic error (network, API 5xx). |
2 | Validation error (bad flag, missing required arg). |
3 | Unauthenticated — run veirox login or set VEIROX_API_KEY. |
4 | Not found (resource does not exist in this project). |
5 | Permission denied (your role / API key lacks the scope). |