Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.atollhq.com/llms.txt

Use this file to discover all available pages before exploring further.

The CLI uses issue for task commands because the API resource is named issues.

List issues

atoll issue list
atoll issue list --status todo --priority 1
atoll issue list --project project-uuid
atoll issue list --team team-slug
atoll issue list --limit 50 --offset 50

View an issue

atoll issue view ATOLL-42
atoll issue get ATOLL-42
Identifiers can be UUIDs or human-readable identifiers like ATOLL-42.

Create and update

atoll issue create --title "Fix login bug" --status todo --priority 1
atoll issue create --title "Prepare launch checklist" --project project-uuid --team marketing
atoll issue update ATOLL-42 --status in_progress
atoll issue update ATOLL-42 --title "Fix OAuth callback" --priority 0

Assign and unassign

atoll issue assign ATOLL-42 --to member-uuid
atoll issue assign ATOLL-42 --to self
atoll issue unassign ATOLL-42

Archive and delete

Prefer reversible archive:
atoll issue archive ATOLL-42
atoll issue unarchive ATOLL-42
Permanent delete requires --force and owner/admin permissions:
atoll issue delete ATOLL-42 --dry-run
atoll issue delete ATOLL-42 --force

Comments

atoll comment list ATOLL-42
atoll comment add ATOLL-42 --body "Working on this now"
atoll comment update comment-uuid --body "Updated note"
atoll comment delete comment-uuid --issue ATOLL-42 --dry-run
atoll comment delete comment-uuid --issue ATOLL-42 --force

Projects

atoll project list
atoll project create "Growth" --description "Growth experiments" --color "#0F766E"
atoll project view project-uuid
atoll project get project-uuid

Milestones

atoll milestone list --project project-uuid
atoll milestone create "Launch docs" --project project-uuid --date 2026-06-30