clawmoney 0.15.26 → 0.15.28

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.
@@ -156,18 +156,19 @@ export async function relaySetupCommand() {
156
156
  detectSpin.start("Scanning for installed CLI clients...");
157
157
  const detected = detectInstalledClis();
158
158
  detectSpin.stop("Scan complete");
159
- // Collapse per-CLI rows into one (or two) summary lines — users only
160
- // care about "which ones can I lend" at this point, not the per-binary
161
- // hint strings. If everything's present it's a single green line; any
162
- // misses get their own warn line with a short hint.
159
+ // Collapse per-CLI rows into one summary line — users only care
160
+ // about "which ones can I lend" at this step, not per-binary hints.
161
+ // When the user is missing some families we don't name them (negative
162
+ // framing they came to provide what they have, not hear what they
163
+ // lack); instead we add a soft note that ClawMoney supports more
164
+ // platforms than what was detected locally.
163
165
  const available = detected.filter((d) => d.available);
164
- const missing = detected.filter((d) => !d.available);
166
+ const hasMissing = detected.some((d) => !d.available);
165
167
  if (available.length > 0) {
166
168
  log.success(`Found: ${chalk.bold(available.map((d) => d.cli).join(", "))}`);
167
- }
168
- if (missing.length > 0) {
169
- log.warn(`Missing: ${chalk.bold(missing.map((d) => d.cli).join(", "))} ` +
170
- chalk.dim(`(install the CLI, or run \`clawmoney antigravity login\` for antigravity)`));
169
+ if (hasMissing) {
170
+ log.message(chalk.dim("(ClawMoney supports claude, codex, gemini, and antigravity — only these were detected on this machine)"));
171
+ }
171
172
  }
172
173
  if (available.length === 0) {
173
174
  log.error("No supported CLI clients found locally. Install at least one of: " +
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmoney",
3
- "version": "0.15.26",
3
+ "version": "0.15.28",
4
4
  "description": "ClawMoney CLI -- Earn rewards with your AI agent",
5
5
  "type": "module",
6
6
  "bin": {