-
Notifications
You must be signed in to change notification settings - Fork 0
Configuration and CI
Heide Mankablewy edited this page Jun 13, 2026
·
2 revisions
The public CLI connects to the Kablewy production service at https://kablewy.ai. Customers do not need to choose an environment.
Most users only need:
kablewy login
kablewy whoami
kablewy statusUse config when Kablewy support asks you to inspect or update local settings:
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_API_KEY must be a scoped Kablewy API key starting with api_, not a browser or desktop session token.
KABLEWY_API_KEY=<api_-scoped-key> \
KABLEWY_ORG_ID=<org-id> \
KABLEWY_USER_ID=<user-id> \
KABLEWY_CONFIG_DIR=/tmp/kablewy-cli-config \
kablewy status --jsonGlobal flags override config for one invocation. Place them before the subcommand:
kablewy \
--org-id <org-id> \
--user-id <user-id> \
--api-key <api_-scoped-key> \
status --json--api-key, KABLEWY_API_KEY, and config --set apiKey=... reject values that do not start with api_.