@candledottv/cli 0.8.4 → 0.9.1

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 (3) hide show
  1. package/README.md +5 -1
  2. package/dist/index.js +8987 -5989
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -57,6 +57,7 @@ node packages/cli/dist/index.js auth login
57
57
  | `candle keys create [--scopes <a,b,c>] [--label <name>] [--expires-in <days>] [--tx-limit <usd> [--reset daily\|weekly\|monthly\|never]]` | Creates a new API key and prints the plaintext exactly once, with the same optional name, expiration, and USD transaction limit the portal's create form takes. Stored locally only if the CLI does not already hold a working key. |
58
58
  | `candle keys revoke <prefix>` | Revokes an API key by prefix. Revoking the CLI's own stored key also clears it locally. |
59
59
  | `candle wallets` | Shows the account's embedded (launch) wallets and any linked wallets, using the API key, with a `Signer` column saying whether this machine holds each linked wallet's signing key. |
60
+ | `candle tee new\|enable\|fund\|status\|disable\|sweep` | A dedicated, capped TEE wallet for one agent: the CLI generates the key and seals it locally in `tee-wallets.enc`, `enable` delegates it to this profile's API key with a pinned sweep vault, `fund` prints what your vault signs, and `disable` then `sweep` stop the agent and move everything back to the vault, signed locally. Solana only. See [TEE wallets](https://docs.candle.tv/developers/cli#tee-wallets). |
60
61
  | `candle profile list` | Lists profiles on this machine, with cached accounts. |
61
62
  | `candle profile add <name> --api-url <url>` | Creates a profile before authenticating it. |
62
63
  | `candle profile use <name>` | Makes a profile the active one. |
@@ -117,7 +118,10 @@ transparency log: [Verify a Candle release](https://docs.candle.tv/developers/ve
117
118
  For agents and scripts, `--json` guarantees: **stdout carries exactly one JSON value** -- the
118
119
  result on success, or a failure envelope -- and stderr carries diagnostics only. Exit codes:
119
120
  `0` success, `1` failure (the envelope says why), `2` usage error (the arguments themselves were
120
- wrong; nothing ran).
121
+ wrong; nothing ran), `3` not yet verified (the command did its part, but the outcome it exists to
122
+ guarantee is unconfirmed: a wallet stop whose remote enforcement is still pending, a TEE wallet
123
+ enabled without verified signing authority, or a sweep that left a residual). Treat `3` as not
124
+ done: follow the printed next step, usually re-running the same command.
121
125
 
122
126
  The failure envelope is stable:
123
127