clawmoney 0.15.17 → 0.15.18

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.
@@ -253,28 +253,28 @@ export async function relaySetupCommand() {
253
253
  const dailyLimitChoice = await select({
254
254
  message: "Daily quota share per model? (applies independently to each model you register)",
255
255
  options: [
256
- {
257
- value: 6,
258
- label: "~10% · Minimal",
259
- hint: "barely touches your subscription, leaves nearly all of it for personal use",
260
- },
261
256
  {
262
257
  value: 15,
263
- label: "~25% · Balanced (recommended)",
264
- hint: "shares a quarter of each model's quota, leaves 75% for your own use",
258
+ label: "~25% · Light",
259
+ hint: "share a quarter, leaves 75% for your personal use",
265
260
  },
266
261
  {
267
262
  value: 30,
268
- label: "~50% · Heavy",
263
+ label: "~50% · Balanced (recommended)",
269
264
  hint: "splits each model's quota evenly between you and the relay",
270
265
  },
266
+ {
267
+ value: 45,
268
+ label: "~75% · Heavy",
269
+ hint: "most of your subscription goes to relay, 25% reserved for personal use",
270
+ },
271
271
  {
272
272
  value: 60,
273
273
  label: "~100% · Full",
274
- hint: "dedicates your subscription to relay use — best for accounts you don't use personally",
274
+ hint: "dedicates your subscription to relay — best for accounts you don't use personally",
275
275
  },
276
276
  ],
277
- initialValue: 15,
277
+ initialValue: 30,
278
278
  });
279
279
  if (isCancel(dailyLimitChoice)) {
280
280
  cancel("Setup cancelled");
@@ -286,9 +286,9 @@ export async function relaySetupCommand() {
286
286
  // label the user picked, so what they see in the summary matches what
287
287
  // they answered in the prompt.
288
288
  const limitLabel = {
289
- 6: "~10% (Minimal)",
290
- 15: "~25% (Balanced)",
291
- 30: "~50% (Heavy)",
289
+ 15: "~25% (Light)",
290
+ 30: "~50% (Balanced)",
291
+ 45: "~75% (Heavy)",
292
292
  60: "~100% (Full)",
293
293
  };
294
294
  log.step(chalk.bold("Summary"));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmoney",
3
- "version": "0.15.17",
3
+ "version": "0.15.18",
4
4
  "description": "ClawMoney CLI -- Earn rewards with your AI agent",
5
5
  "type": "module",
6
6
  "bin": {