skippr user¶
Manage your Skippr account -- authentication, API keys, credits, and usage. See Authentication for the getting-started guide.
Subcommands¶
login¶
Sign up or log in. Verify via SMS and you're authenticated -- an LLM key and cloud storage are provisioned automatically.
skippr user login
Session tokens are stored in ~/.skippr/credentials.json.
logout¶
Remove local credentials.
skippr user logout
account¶
Check your balance and recent usage.
skippr user account
buy-credits¶
Purchase a credit pack. Opens a Stripe checkout.
skippr user buy-credits --pack <pack>
| Pack | Credits | Price |
|---|---|---|
starter |
500 | $50 |
growth |
2,000 | $180 |
scale |
10,000 | $800 |
usage¶
Show a detailed usage log.
skippr user usage
create-api-key¶
Create an API key for CI/CD or automation. Requires an active login.
skippr user create-api-key --name "github-actions"
The key (prefixed sk_live_) is shown once and can't be retrieved again. Set it as SKIPPR_API_KEY in your CI environment.
list-api-keys¶
List all API keys on your account.
skippr user list-api-keys
revoke-api-key¶
Revoke a key by ID (shown in list-api-keys output).
skippr user revoke-api-key --key-id <id>