clawmoney 0.15.49 → 0.15.50
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 +10 -7
- package/package.json +1 -1
|
@@ -221,18 +221,21 @@ export async function relaySetupCommand() {
|
|
|
221
221
|
// Only claude is wired up for now; codex/gemini will follow the
|
|
222
222
|
// same pattern.
|
|
223
223
|
if (selectedClis.includes("claude") && !hasClaudeFingerprint()) {
|
|
224
|
-
|
|
225
|
-
|
|
224
|
+
// Use static log.step + log.success/log.warn instead of a spinner:
|
|
225
|
+
// some terminals (notably Claude Code's bash runner) don't honor
|
|
226
|
+
// `\r` cursor-return, which makes a clack spinner accumulate one
|
|
227
|
+
// frame per tick instead of animating in place.
|
|
228
|
+
log.step("Capturing Claude fingerprint (runs `claude -p hi` once, ~5-15s)...");
|
|
226
229
|
try {
|
|
227
230
|
const fp = await bootstrapClaudeFingerprint({ timeoutMs: 45_000 });
|
|
228
|
-
|
|
231
|
+
log.success(`Claude fingerprint captured ` +
|
|
229
232
|
chalk.dim(`(device=${fp.device_id.slice(0, 8)}… cc_version=${fp.cc_version || "?"})`));
|
|
230
233
|
}
|
|
231
234
|
catch (err) {
|
|
232
|
-
|
|
233
|
-
log.
|
|
234
|
-
"to serve them until you
|
|
235
|
-
"
|
|
235
|
+
log.warn(`Claude fingerprint capture failed: ${err.message}`);
|
|
236
|
+
log.message(chalk.dim("Claude providers will be registered but the daemon won't be able " +
|
|
237
|
+
"to serve them until you bootstrap the fingerprint. " +
|
|
238
|
+
"Make sure `claude` is installed and logged in, then re-run setup."));
|
|
236
239
|
}
|
|
237
240
|
}
|
|
238
241
|
const registrations = [];
|