@clawcard/cli 3.2.3 → 3.2.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/package.json +1 -1
  2. package/src/index.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clawcard/cli",
3
- "version": "3.2.3",
3
+ "version": "3.2.6",
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
@@ -544,7 +544,7 @@ if (process.argv.length <= 2) {
544
544
  signup: () => import("./commands/signup.js").then((m) => m.signupCommand()),
545
545
  logout: () => import("./commands/logout.js").then((m) => m.logoutCommand()),
546
546
  whoami: () => import("./commands/whoami.js").then((m) => m.whoamiCommand()),
547
- agent: () => import("./commands/keys.js").then((m) => m.agentStatusCommand()),
547
+ agent: () => import("./commands/agent.js").then((m) => m.agentInfoCmd({})),
548
548
  "agent-fund": () => import("./commands/keys.js").then((m) => m.agentFundCommand()),
549
549
  "keys-create": () => import("./commands/keys.js").then((m) => m.keysCreateCommand()),
550
550
  "topup": () => import("./commands/billing.js").then((m) => m.billingTopupCommand()),