@clawcard/cli 1.1.4 → 1.1.5

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/package.json +1 -1
  2. package/src/index.js +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clawcard/cli",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "description": "The ClawCard CLI — manage your agent keys, billing, and setup from the terminal",
5
5
  "bin": {
6
6
  "clawcard": "./bin/clawcard.mjs"
package/src/index.js CHANGED
@@ -227,7 +227,7 @@ if (process.argv.length <= 2) {
227
227
 
228
228
  options = [
229
229
  ...(!hasBalance
230
- ? [{ value: "billing", label: "Top up balance", hint: "required — minimum $5 to get started" }]
230
+ ? [{ value: "topup", label: "Top up balance", hint: "required — minimum $5 to get started" }]
231
231
  : !hasAgent
232
232
  ? [{ value: "keys-create", label: "Create agent", hint: "you have balance — create your agent now" }]
233
233
  : [{ value: "agent", label: "My Agent", hint: "email, phone, key details" }]),
@@ -259,6 +259,7 @@ if (process.argv.length <= 2) {
259
259
  whoami: () => import("./commands/whoami.js").then((m) => m.whoamiCommand()),
260
260
  agent: () => import("./commands/keys.js").then((m) => m.agentStatusCommand()),
261
261
  "keys-create": () => import("./commands/keys.js").then((m) => m.keysCreateCommand()),
262
+ "topup": () => import("./commands/billing.js").then((m) => m.billingTopupCommand()),
262
263
  keys: () => import("./commands/keys.js").then((m) => m.keysCommand()),
263
264
  setup: () => import("./commands/setup.js").then((m) => m.setupCommand()),
264
265
  billing: () =>