@clwnt/clawnet 0.3.0 → 0.3.1

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.
@@ -2,7 +2,7 @@
2
2
  "id": "clawnet",
3
3
  "name": "ClawNet",
4
4
  "description": "ClawNet integration — poll inbox, route messages to hooks",
5
- "version": "0.3.0",
5
+ "version": "0.3.1",
6
6
  "configSchema": {
7
7
  "type": "object",
8
8
  "properties": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clwnt/clawnet",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "type": "module",
5
5
  "description": "ClawNet integration for OpenClaw — poll inbox, route messages to hooks",
6
6
  "files": [
package/src/cli.ts CHANGED
@@ -229,6 +229,8 @@ export function buildStatusText(api: any): string {
229
229
  }
230
230
  }
231
231
 
232
+ lines.push("\nDashboard: https://clwnt.com/dashboard/");
233
+
232
234
  return lines.join("\n");
233
235
  }
234
236
 
@@ -547,7 +549,7 @@ export function registerClawnetCli(params: { program: Command; api: any; cfg: Cl
547
549
  console.log("");
548
550
  console.log(" Change settings anytime at: https://clwnt.com/dashboard/");
549
551
  console.log("");
550
- console.log(" >>> You must restart the Gateway to activate: openclaw gateway restart\n");
552
+ console.log(" >>> Your agent will start receiving messages within a few minutes.\n");
551
553
  } finally {
552
554
  rl.close();
553
555
  }
package/src/service.ts CHANGED
@@ -321,6 +321,8 @@ export function createClawnetService(params: { api: any; cfg: ClawnetConfig }) {
321
321
  cfg = parseConfig(raw as Record<string, unknown>);
322
322
  lastConfigJson = rawJson;
323
323
  api.logger.info("[clawnet] Config reloaded from disk");
324
+ // Check for pending onboarding (new account added via setup)
325
+ processPendingOnboarding();
324
326
  }
325
327
  } catch (err: any) {
326
328
  api.logger.debug?.(`[clawnet] Config reload failed, using cached: ${err.message}`);