@blockrun/clawrouter 0.10.2 → 0.10.3

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/cli.js CHANGED
@@ -4679,7 +4679,7 @@ async function proxyRequest(req, res, apiBase, payFetch, options, routerOpts, de
4679
4679
  } catch (err) {
4680
4680
  const errorMsg = err instanceof Error ? err.message : String(err);
4681
4681
  console.error(`[ClawRouter] Routing error: ${errorMsg}`);
4682
- console.error(`[ClawRouter] Run 'npx @blockrun/clawrouter doctor' for help`);
4682
+ console.error(`[ClawRouter] Need help? Run: npx @blockrun/clawrouter doctor`);
4683
4683
  options.onError?.(new Error(`Routing failed: ${errorMsg}`));
4684
4684
  }
4685
4685
  }
@@ -5625,7 +5625,7 @@ async function main() {
5625
5625
  console.error(
5626
5626
  `[ClawRouter] Insufficient funds. Balance: ${info.balanceUSD}, Need: ${info.requiredUSD}`
5627
5627
  );
5628
- console.error(`[ClawRouter] Run 'npx @blockrun/clawrouter doctor' for funding help`);
5628
+ console.error(`[ClawRouter] Need help? Run: npx @blockrun/clawrouter doctor`);
5629
5629
  }
5630
5630
  });
5631
5631
  const monitor = new BalanceMonitor(address);
@@ -5662,7 +5662,7 @@ async function main() {
5662
5662
  }
5663
5663
  main().catch((err) => {
5664
5664
  console.error(`[ClawRouter] Fatal error: ${err.message}`);
5665
- console.error(`[ClawRouter] Run 'npx @blockrun/clawrouter doctor' for AI-powered diagnostics`);
5665
+ console.error(`[ClawRouter] Need help? Run: npx @blockrun/clawrouter doctor`);
5666
5666
  process.exit(1);
5667
5667
  });
5668
5668
  //# sourceMappingURL=cli.js.map