@allowance/cli 0.1.5 → 0.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +7 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -120,11 +120,16 @@ allowance setup --for generic
120
120
 
121
121
  Authenticates via phone OTP, mints a connection token, and writes skill files for every detected agent (Claude Desktop, Codex, OpenClaw).
122
122
 
123
+ The connection token secret is stored in OS credential storage via `keyring`
124
+ (macOS Keychain, Windows Credential Manager, or Linux Secret Service where
125
+ available). `~/.allowance/config.json` stores non-secret metadata such as
126
+ `token_id` and `api_base_url`.
127
+
123
128
  ### Runtime checkout (used by agents)
124
129
 
125
130
  | Command | What It Does |
126
131
  |---|---|
127
- | `allowance request` | Request spend approval from the user; blocks until approved/denied |
132
+ | `allowance request` | Request spend approval for local browser checkout; requires `--local-browser-tool` and blocks until approved/denied |
128
133
  | `allowance card issue` | Issue a one-time virtual card for an approved request |
129
134
  | `allowance identity` | Fetch name, email, phone for checkout forms |
130
135
  | `allowance address shipping` | Fetch shipping address for an approved request |
@@ -142,6 +147,7 @@ Runtime checkout commands output human-readable text by default. Pass `--json` t
142
147
 
143
148
  - `ALLOWANCE_API_BASE_URL` (default: `https://api.useallowance.com`)
144
149
  - `ALLOWANCE_HTTP_TIMEOUT_SECONDS` (default: `20`)
150
+ - `ALLOWANCE_CONNECTION_TOKEN` overrides configured credential storage for CI/debugging.
145
151
 
146
152
  ## Tests
147
153
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@allowance/cli",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Allowance agent purchase wallet CLI",
5
5
  "license": "MIT",
6
6
  "repository": {