Skip to main content
Requires an active project (guillo lock project <id>).

Commands

guillo tasks list

List all tasks in the active project.
guillo tasks list

guillo tasks get <id>

Get a single task by ID, including its description.
guillo tasks get <task-id>

guillo tasks create <title>

Create a new task.
guillo tasks create <title>
guillo tasks create <title> --description <text>
guillo tasks create <title> --status in_progress
FlagDescriptionDefault
--description <text>Optional description or details for the task
--status <status>Initial status (see below)open

guillo tasks update <id>

Update an existing task. At least one flag is required.
guillo tasks update <task-id> --title <title>
guillo tasks update <task-id> --status <status>
guillo tasks update <task-id> --description <text>
FlagDescription
--title <text>New title
--description <text>New description (pass empty string to clear)
--status <status>New status (see below)

guillo tasks delete <id>

Delete a task. Prompts for confirmation on a TTY.
guillo tasks delete <task-id>

Statuses

openin_progressexecuted | pardoned

Execute a task

guillo execute <task-id>