onboarding
Scan and install local provider CLIs for Clanker Cloud onboarding.
The onboarding command is the local setup contract for Clanker Cloud and MCP agents. It detects installed tools, local credential signals, missing provider dependencies, and the next official authentication steps before an agent asks the user to install anything.
Usage
clanker onboarding [command]Commands
| Command | Description |
|---|---|
scan | Scan local provider CLIs and detected provider context |
install | Install missing provider CLIs using allowlisted platform commands |
agent-prompt | Print setup instructions for a local agent |
Scan
clanker onboarding scan
clanker onboarding scan --provider aws,gcp,azure,kubernetes --format json
clanker onboarding scan --provider cloudflare --provider digitaloceanscan reports provider readiness, installed tools, missing tools, recommended installs, official docs URLs, auth commands, and token/account URLs. Use --format json when an agent or Clanker Cloud setup flow will parse the result.
| Flag | Type | Default | Description |
|---|---|---|---|
--provider | strings | empty | Provider or workflow the user wants to use. Can be comma-separated or repeated |
--format | string | text | Output format: text or json |
Install
clanker onboarding install --dry-run --provider aws,gcp,azure,kubernetes
clanker onboarding install --yes aws gcloud az kubectl
clanker onboarding install --yes --provider cloudflareinstall only runs allowlisted install commands for selected or detected providers. If no tool names are passed, Clanker chooses missing tools from the scan result and --provider selection.
| Flag | Type | Default | Description |
|---|---|---|---|
--provider | strings | empty | Provider or workflow the user wants to use |
--dry-run | bool | false | Print install commands without running them |
--yes | bool | false | Run install commands without interactive confirmation |
--timeout | string | 20m | Timeout per install command |
--format | string | text | Output format: text or json |
Supported tools include aws, gcloud, az, wrangler, doctl, hcloud, kubectl, gh, railway, supabase, vercel, flyctl, terraform, opentofu, and docker.
Agent Workflow
For Clanker Cloud setup, agents should:
- Run
clanker onboarding scan --format json. - Ask which providers to set up if none are selected or detected.
- Run
clanker onboarding install --yes <tool>only for selected or detected providers. - Run
clanker onboarding scan --format jsonagain. - Use the returned official docs, login commands, and token URLs for any browser login, SSO, sudo, or API-token step.
See Also
- Agent onboarding - Clanker Cloud app setup flow
- Installation - CLI install and helper binaries
- Prerequisites - Runtime dependency matrix