The official CLI/TUI for Artifact Keeper, an enterprise artifact registry supporting 45+ package formats. Browse repositories, upload and download artifacts, run security scans, configure package managers, and more, all from your terminal.
curl -fsSL https://raw.githubusercontent.com/artifact-keeper/artifact-keeper-cli/main/install.sh | shThe installer auto-detects your OS and architecture, downloads the latest release binary, verifies its SHA-256 checksum, and installs to /usr/local/bin (or ~/.local/bin if not writable).
brew install artifact-keeper/tap/akRequires Rust 1.86+:
cargo install artifact-keeper-clisnap install ak --classicdocker run --rm ghcr.io/artifact-keeper/ak:latest --helpPre-built binaries for every platform are available on the Releases page:
| Platform | Binary |
|---|---|
| Linux x86_64 | ak-linux-amd64 |
| Linux ARM64 | ak-linux-arm64 |
| macOS x86_64 | ak-darwin-amd64 |
| macOS ARM64 (Apple Silicon) | ak-darwin-arm64 |
| Windows x86_64 | ak-windows-amd64.exe |
Each binary includes a .sha256 checksum file for verification.
# 1. Add your registry
ak instance add myserver https://registry.company.com
# 2. Log in
ak auth login
# 3. Browse repositories
ak repo list
# 4. Upload an artifact
ak artifact push my-repo ./package-1.0.tar.gz
# 5. Download an artifact
ak artifact pull my-repo org/pkg/1.0/pkg-1.0.jar
# 6. Configure your package managers automatically
ak setup autoCore
ak instance Add, remove, and switch between registry instances
ak auth Log in, manage tokens, check identity
ak repo List, show, create, and delete repositories
ak artifact Push, pull, list, search, copy, and delete artifacts
ak setup Auto-configure npm, pip, cargo, docker, maven, gradle, go, helm, nuget, and more
ak doctor Diagnose configuration and connectivity issues
ak config Get/set CLI configuration values
Security & Compliance
ak scan Trigger security scans and view findings
ak sign Signing and key management
ak sbom Software Bill of Materials operations
ak license License compliance management
ak quality-gate Manage artifact quality gates
ak totp Manage two-factor authentication (TOTP)
Organization
ak group Manage user groups
ak permission Manage fine-grained permission rules
ak profile Manage your user profile and API tokens
ak label Tag repositories with key-value labels
ak sso Manage SSO authentication providers (LDAP, OIDC, SAML)
Workflow & Lifecycle
ak promotion Promote artifacts between repositories
ak approval Manage promotion approval workflows
ak lifecycle Manage lifecycle and retention policies
ak migrate Migrate artifacts between instances in bulk
Federation & Integration
ak peer Manage federation peer instances
ak sync-policy Manage sync policies for automated replication
ak webhook Manage webhooks for event-driven integrations
ak dt Dependency-Track integration
ak analytics Usage analytics and storage insights
Administration
ak admin Backup, cleanup, metrics, user management, plugins
ak tui Launch interactive TUI dashboard
ak completion Generate shell completions (bash/zsh/fish/powershell)
ak man-pages Generate man pages for all commands
Run ak <command> --help for detailed usage and examples.
Every command supports multiple output modes:
ak repo list # Table (default in terminals)
ak repo list --format json # JSON (default when piped)
ak repo list --format yaml # YAML
ak repo list -q # Quiet: IDs only, one per lineManage multiple Artifact Keeper servers with named contexts:
ak instance add prod https://registry.company.com
ak instance add staging https://staging.company.com
ak instance use prod
# Or per-command:
ak repo list --instance staging# Bash
ak completion bash > ~/.bash_completion.d/ak
# Zsh
ak completion zsh > ~/.zfunc/_ak
# Fish
ak completion fish > ~/.config/fish/completions/ak.fish
# PowerShell
ak completion powershell > ak.ps1export AK_INSTANCE=prod
export AK_TOKEN=your-api-token
export AK_NO_INPUT=1
ak artifact push my-repo ./build/output.tar.gzSee the CI/CD Integration Guide for GitHub Actions, GitLab CI, and Jenkins examples.
| Variable | Description |
|---|---|
AK_FORMAT |
Default output format (table, json, yaml, quiet) |
AK_INSTANCE |
Override default instance |
AK_TOKEN |
API token (alternative to keychain) |
AK_NO_INPUT |
Disable interactive prompts |
AK_COLOR |
Color mode (auto, always, never) |
AK_CONFIG_DIR |
Override config directory |
NO_COLOR |
Standard no-color flag |
MIT