atlas completion#

file version: 10 July 2026

Overview#

atlas completion generates shell completion scripts.

Usage#

atlas completion <shell>

Supported Shells#

bash, zsh, fish, and powershell.

To load completions:

Bash:

source <(atlas completion bash)
# To load completions for each session, execute once:
# Linux:
atlas completion bash > /etc/bash_completion.d/atlas
# macOS:
atlas completion bash > $(brew --prefix)/etc/bash_completion.d/atlas

Zsh:

source <(atlas completion zsh)
# To load completions for each session, execute once:
atlas completion zsh > "${fpath[1]}/_atlas"

Fish:

atlas completion fish | source
# To load completions for each session, execute once:
atlas completion fish > ~/.config/fish/completions/atlas.fish

PowerShell:

atlas completion powershell | Out-String | Invoke-Expression

Examples#

atlas completion bash

Global Flags#

Flag

Description

--ca-cert string

Path to CA certificate for server verification

--format string

Machine-readable output format (json or csv); omit for the default human-readable output

-L, --lang string

Interface language (en, de)

--no-color

Disable color output

-P, --plaintext

Use plaintext (non-TLS) connection

-s, --server string

ATLAS server address; defaults to ACLI_SERVER, then the stored session, /etc/atlas/atlas.conf, and finally localhost:7449

--tls-skip-verify

Skip TLS certificate verification; enabled by default for self-signed setups