clawmoney 0.15.25 → 0.15.27
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.
- package/dist/commands/relay-setup.js +12 -7
- package/package.json +1 -1
|
@@ -156,15 +156,20 @@ 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
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
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.
|
|
165
|
+
const available = detected.filter((d) => d.available);
|
|
166
|
+
const hasMissing = detected.some((d) => !d.available);
|
|
167
|
+
if (available.length > 0) {
|
|
168
|
+
log.success(`Found: ${chalk.bold(available.map((d) => d.cli).join(", "))}`);
|
|
169
|
+
if (hasMissing) {
|
|
170
|
+
log.message(chalk.dim("(ClawMoney supports more platforms — only these were detected on this machine)"));
|
|
165
171
|
}
|
|
166
172
|
}
|
|
167
|
-
const available = detected.filter((d) => d.available);
|
|
168
173
|
if (available.length === 0) {
|
|
169
174
|
log.error("No supported CLI clients found locally. Install at least one of: " +
|
|
170
175
|
chalk.cyan("claude, codex, gemini") +
|