Skip to main content
The hirotm lists command group lists, shows one list by id, creates, and updates lists (columns) on a board. Global options and output modes: hirotm CLI. lists list needs readBoard on that board; lists show resolves the board from the list id and still requires readBoard on that board; writes need the appropriate flags from CLI access policy. For board ids and slugs, see Boards. For tasks in those columns, see Tasks. For other hirotm commands, see hirotm CLI. Access policy If the CLI is not allowed to read or change something, the command fails with an error message.

lists list

List all lists on a board with full row fields from the API. Sort: order ascending, then listId ascending (same column order as the board UI). See Default sort order. Accepts global -q / --quiet (with --format ndjson); default field listId. See Pipe-friendly quiet. CLI Examples
AI Agent Examples

List all lists on board sprint.

Open in Cursor

lists show

Print one list by global numeric id (GET /api/lists/:listId). The API resolves the board and applies readBoard for that board—no --board flag. CLI examples

lists add

Create a list on a board. New lists are appended at the end unless you reorder with lists move. CLI Examples
AI Agent Examples

Add a list "Paris Trip" to board bucket-lists.

Open in Cursor

lists update

Patch fields on a list. The CLI resolves the board from the list id, so there is no --board flag. At least one of --name, --color, --clear-color, --emoji, or --clear-emoji must be present. CLI Examples
AI Agent Examples

Rename list 12 to "QA".

Open in Cursor

lists move

Change list order on a board. The CLI resolves the board from the list id. Use exactly one of --before, --after, --first, or --last (the CLI rejects multiple placement flags). CLI Examples
AI Agent Examples

Move list 5 to the first column.

Open in Cursor

lists delete

Move a list to Trash. The CLI resolves the board from the list id for permission checks, confirmation text, and dry-run previews. Restore or purge with lists restore / lists purge using the same numeric list id (see hirotm trash list lists for context). CLI Examples
AI Agent Examples

Move list 12 to Trash (non-interactive).

Open in Cursor

lists restore

Restore a list from Trash. The board must still be active (not in Trash). CLI Examples
AI Agent Examples

Restore list 12 from Trash (non-interactive).

Open in Cursor

lists purge

Permanently delete a list that is already in Trash. This cannot be undone. CLI Examples
AI Agent Examples

Permanently delete list 12 from Trash (non-interactive).

Open in Cursor

Learn more

Run hirotm help lists or hirotm help lists <subcommand> for the exact help text shipped with your CLI version.