View and manage Shipables CLI configuration.
shipables config
Read and write CLI configuration values stored in ~/.shipables/config.json.
Usage
shipables config <subcommand> [args]
Subcommands
config set
Set a configuration value:
shipables config set <key> <value>
config get
Get a configuration value:
shipables config get <key>
config list
Show all configuration values and auth status:
shipables config list
config delete
Remove a configuration value:
shipables config delete <key>
Configuration keys
| Key | Description | Default |
|---|---|---|
registry | Registry URL | https://api.shipables.dev |
defaultAgents | Comma-separated list of default agents for install | — |
scope | Default publish scope | — |
Examples
View all config:
shipables config list
Change the registry URL:
shipables config set registry https://my-registry.example.com
Set default agents so install doesn't prompt:
shipables config set defaultAgents claude,cursor
Reset to the default registry:
shipables config delete registry
Config file location
Configuration is stored at ~/.shipables/config.json. The file also contains your auth token and username (set by shipables login).