← ClaudeAtlas

cola-regctl-clientlisted

Complete reference for the Command Launcher registry client CLI (regctl). Use when helping users manage registries, packages, and versions, authenticate with a server, or troubleshoot client connectivity. Covers all commands, flags, environment variables, and credential storage.
criteo/command-launcher-registry · ★ 2 · API & Backend · score 66
Install: claude install-skill criteo/command-launcher-registry
# Command Launcher Registry Client (regctl) Complete CLI reference for the registry client (`cola-regctl`). > **Prefix note:** The binary and environment variables use the `cola` prefix by default. Alternative prefixes (e.g. `cdt`) can be configured at build time, changing the binary to `cdt-regctl` and env vars to `CDT_REGISTRY_*`. All examples below use the default `cola` prefix. ## Global Flags Available on all commands: | Flag | Short | Type | Default | Description | |------|-------|------|---------|-------------| | `--url` | | string | _(empty)_ | Server URL (overrides stored/env) | | `--token` | | string | _(empty)_ | Auth token: `user:password` for basic auth, or a JWT token (overrides stored/env) | | `--json` | | bool | `false` | Output in JSON format | | `--verbose` | | bool | `false` | Enable verbose HTTP request logging | | `--timeout` | | duration | `30s` | HTTP request timeout | | `--yes` | `-y` | bool | `false` | Skip confirmation prompts | ### Environment Variables | Env Var | Description | |---------|-------------| | `COLA_REGISTRY_URL` | Server URL (used when `--url` flag is not set) | | `COLA_REGISTRY_TOKEN` | Auth token (used when `--token` flag is not set) | ### Resolution Precedence For both URL and token: **`--flag` > environment variable > stored credentials** --- ## Authentication Commands ### login — Authenticate with a server ``` cola-regctl login [server-url] ``` Authenticates with a registry server and stores credentials securely. If