@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.
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/src/cli.ts +3 -1
- package/src/service.ts +2 -0
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
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(" >>>
|
|
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}`);
|