hirotm tasks commands list, show by id, create, and change work items on a board: filterable listing, fetch one task by global id, add a card, edit fields, move it to another column, or send it through Trash (delete → restore or purge). Global options and output modes: hirotm CLI.
You need the right CLI permissions on each board—see CLI access policy. Use hirotm boards describe and Lists to look up board slugs, list ids, and group ids. For shared flags (--profile, --client-name), see hirotm CLI.
Access policy
Turn on the toggles your workflow needs in Board settings. If the CLI is not allowed to do something, the command fails with an error message.
For how Trash fits together, see the Trash: delete, restore, and purge section in Concepts.
Task Operations
tasks list
List tasks on a board. --board is required. Optional flags limit by column, group, priority, workflow status, release, or date range (same filters as the former boards tasks command).
Accepts global
-q / --quiet (with --format ndjson); default field taskId. See Pipe-friendly quiet.
CLI Examples
tasks show
Print one task by global numeric id (GET /api/tasks/:taskId). The API resolves the board and applies readBoard for that board—no --board flag.
CLI examples
tasks add
Create a task on a board. You must pass board, list (column), and group. The app fills in a default title if you skip --title.
CLI Examples
Add a task "Buy metro tickets" on board bucket-lists in list 2 and group 1.
tasks update
Change any mix of fields on an existing task. The CLI resolves the board from the task id, so there is no --board flag. You must include at least one change flag.
CLI Examples
Set task 101 title to "Done when shipped".
tasks move
Move a task to another column (--to-list), optionally change its status in that column, and choose exactly one ordering hint: --first, --last, --before-task, or --after-task. The CLI resolves the board from the task id.
CLI Examples
Move task 101 to list 3 at the top.
tasks delete
Send a task to Trash. The CLI resolves the board from the task id for permission checks, confirmation text, and dry-run previews.
CLI Examples
Move task 101 to Trash (non-interactive).
tasks restore
Bring a task back from Trash. Only the task id is required (no board flag).
CLI Examples
Restore task 101 from Trash (non-interactive).
tasks purge
Remove a task from Trash permanently. Cannot be undone. Only the task id is required.
CLI Examples
Permanently delete task 101 from Trash (non-interactive).
Learn more
Runhirotm help tasks or hirotm help tasks <subcommand> for the full help text in your installed CLI.