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.

Profiles let one machine work with multiple Atoll credentials.

Create profiles

atoll auth login --profile agent-a --key sk_atoll_... --org acme
atoll auth login --profile agent-b --key sk_atoll_... --org client --project project-uuid --team team-slug
atoll auth login --profile local --key sk_atoll_... --org dev --base-url http://localhost:3000
Each profile can store:
  • API key
  • Default organization
  • Default team
  • Default project
  • Base URL

Use profiles

Set the active profile:
atoll auth use agent-a
Run one command with another profile:
atoll --profile agent-b issue list
List profiles:
atoll auth profiles
Open the interactive manager:
atoll auth manage

Project and team defaults

Set defaults for the active profile:
atoll config set-project project-uuid
atoll config set-team team-slug
atoll config set-base-url https://atollhq.com
Clear project default:
atoll config clear-project
When a default project is configured, issue and milestone commands use it unless --project is passed. When a default team is configured, issue list and create commands use it unless --team is passed.

Debug configuration

atoll config show
The output shows where each resolved value came from, such as $ATOLL_API_KEY, the selected profile, or a command flag.