openclaw-overlay-plugin 0.8.33 → 0.8.35

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/index.js CHANGED
@@ -136843,7 +136843,7 @@ function checkBudget(walletDir, requestedSats, dailyLimit) {
136843
136843
  };
136844
136844
  }
136845
136845
  function register(api) {
136846
- const version = "0.8.31";
136846
+ const version = "0.8.35";
136847
136847
  if (isInitialized) return;
136848
136848
  isInitialized = true;
136849
136849
  const config = api.pluginConfig || {};
@@ -137092,6 +137092,15 @@ ${typeof result === "string" ? result : JSON.stringify(result, null, 2)}` };
137092
137092
  });
137093
137093
  api.registerCli(({ program }) => {
137094
137094
  const overlay = program.command("overlay").description("BSV Overlay Network management");
137095
+ overlay.addHelpText("after", `
137096
+ \u{1F310} Overlay Examples:
137097
+ $ openclaw overlay status # Show your marketplace identity and balance
137098
+ $ openclaw overlay balance # Show current wallet funds
137099
+ $ openclaw overlay discover -s baemail # Discover agents providing the 'baemail' service
137100
+
137101
+ \u{1F4A1} Tip: The overlay network is a decentralized marketplace.
137102
+ You can find services by their type or specific agent names.
137103
+ `);
137095
137104
  overlay.command("status").description("Show identity and balance").action(async () => {
137096
137105
  syncEnv();
137097
137106
  const res = await cmdStatus();