We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The public CLI connects to the Kablewy production service at https://kablewy.ai. Customers do not need to choose an environment.
https://kablewy.ai
Most users only need:
kablewy login kablewy whoami kablewy status
Use config when Kablewy support asks you to inspect or update local settings:
config
kablewy config --show kablewy config --validate kablewy config --get apiUrl kablewy config --set orgId=<org-id>
Never let CI read a developer's local CLI profile. Use a throwaway KABLEWY_CONFIG_DIR and pass credentials through CI secrets.
KABLEWY_CONFIG_DIR
KABLEWY_API_KEY=<api-key> \ KABLEWY_ORG_ID=<org-id> \ KABLEWY_USER_ID=<user-id> \ KABLEWY_CONFIG_DIR=/tmp/kablewy-cli-config \ kablewy status --json
Global flags override config for one invocation. Place them before the subcommand:
kablewy \ --org-id <org-id> \ --user-id <user-id> \ --api-key <api-key> \ status --json