clawmoney 0.15.64 → 0.15.65

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.
@@ -280,9 +280,6 @@ export async function relaySetupCommand() {
280
280
  });
281
281
  }
282
282
  }
283
- if (cliSummary.length > 0) {
284
- log.success(`Registering: ${cliSummary.join(chalk.dim(" · "))}`);
285
- }
286
283
  if (registrations.length === 0) {
287
284
  cancel("No models selected — nothing to register");
288
285
  process.exit(0);
@@ -455,7 +452,8 @@ export async function relaySetupCommand() {
455
452
  process.exit(1);
456
453
  }
457
454
  if (failed === 0) {
458
- regSpin.stop(`${chalk.green(`✓ ${succeeded} providers registered`)} ` +
455
+ const breakdown = cliSummary.length > 0 ? `: ${cliSummary.join(chalk.dim(" · "))}` : "";
456
+ regSpin.stop(`${chalk.green(`✓ Registered${breakdown}`)} ` +
459
457
  chalk.dim(`(${limitLabel[dailyLimit] ?? `$${dailyLimit}`} quota share · you earn ~${earnPct}%)`));
460
458
  }
461
459
  else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmoney",
3
- "version": "0.15.64",
3
+ "version": "0.15.65",
4
4
  "description": "ClawMoney CLI -- Earn rewards with your AI agent",
5
5
  "type": "module",
6
6
  "bin": {