@silicaclaw/cli 2026.3.19-10 → 2026.3.19-11
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/CHANGELOG.md +6 -0
- package/VERSION +1 -1
- package/apps/local-console/dist/apps/local-console/src/server.js +17 -4
- package/apps/local-console/public/app/overview.js +12 -0
- package/apps/local-console/public/app/template.js +1 -1
- package/apps/local-console/public/app/translations.js +6 -6
- package/apps/local-console/src/server.ts +17 -4
- package/openclaw-skills/silicaclaw-broadcast/VERSION +1 -1
- package/openclaw-skills/silicaclaw-broadcast/manifest.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
v2026.3.19-
|
|
1
|
+
v2026.3.19-11
|
|
@@ -2003,6 +2003,22 @@ class LocalNodeService {
|
|
|
2003
2003
|
getOnboardingSummary() {
|
|
2004
2004
|
const summary = this.getIntegrationSummary();
|
|
2005
2005
|
const publicEnabled = Boolean(this.profile?.public_enabled);
|
|
2006
|
+
const nextSteps = [];
|
|
2007
|
+
if (!String(this.profile?.display_name || "").trim()) {
|
|
2008
|
+
nextSteps.push("Update display name in Profile page");
|
|
2009
|
+
}
|
|
2010
|
+
if (!publicEnabled) {
|
|
2011
|
+
nextSteps.push("Enable Public Enabled in Profile");
|
|
2012
|
+
}
|
|
2013
|
+
if (!summary.running) {
|
|
2014
|
+
nextSteps.push("Start broadcast in Network");
|
|
2015
|
+
}
|
|
2016
|
+
if (!summary.discoverable) {
|
|
2017
|
+
nextSteps.push("Announce node once after the network is running");
|
|
2018
|
+
}
|
|
2019
|
+
if (nextSteps.length === 0) {
|
|
2020
|
+
nextSteps.push("Node is public and discoverable");
|
|
2021
|
+
}
|
|
2006
2022
|
return {
|
|
2007
2023
|
first_run: Boolean(this.initState.social_auto_created ||
|
|
2008
2024
|
this.initState.identity_auto_created ||
|
|
@@ -2012,10 +2028,7 @@ class LocalNodeService {
|
|
|
2012
2028
|
mode: this.networkMode,
|
|
2013
2029
|
public_enabled: publicEnabled,
|
|
2014
2030
|
can_enable_public_discovery: !publicEnabled,
|
|
2015
|
-
next_steps:
|
|
2016
|
-
"Update display name in Profile page",
|
|
2017
|
-
"Export social.md from Social Config",
|
|
2018
|
-
],
|
|
2031
|
+
next_steps: nextSteps,
|
|
2019
2032
|
};
|
|
2020
2033
|
}
|
|
2021
2034
|
getDefaultDisplayName() {
|
|
@@ -144,8 +144,14 @@ export function createOverviewController({
|
|
|
144
144
|
`;
|
|
145
145
|
document.getElementById("snapshot").innerHTML = snapshotHtml;
|
|
146
146
|
const heroModeText = o.social?.network_mode || "-";
|
|
147
|
+
const heroAdapterText = networkCfg.adapter || "-";
|
|
148
|
+
const heroRelayText = String(networkDiag.signaling_url || networkCfg.adapter_extra?.signaling_url || "-");
|
|
149
|
+
const heroRoomText = String(networkDiag.room || networkCfg.adapter_extra?.room || "-");
|
|
147
150
|
setOverviewMode(heroModeText);
|
|
148
151
|
document.getElementById("heroMode").textContent = heroModeText;
|
|
152
|
+
document.getElementById("heroAdapter").textContent = heroAdapterText;
|
|
153
|
+
document.getElementById("heroRelay").textContent = heroRelayText;
|
|
154
|
+
document.getElementById("heroRoom").textContent = heroRoomText;
|
|
149
155
|
document.getElementById("overviewModeHint").textContent = t("overview.modeCurrentSource", {
|
|
150
156
|
mode: describeCurrentMode(t, heroModeText),
|
|
151
157
|
hint: t("overview.modeCacheHint"),
|
|
@@ -242,6 +248,9 @@ export function createOverviewController({
|
|
|
242
248
|
brandVersionText,
|
|
243
249
|
snapshotText: snapshotHtml,
|
|
244
250
|
heroModeText,
|
|
251
|
+
heroAdapterText,
|
|
252
|
+
heroRelayText,
|
|
253
|
+
heroRoomText,
|
|
245
254
|
pillBroadcastText,
|
|
246
255
|
pillBroadcastClassName,
|
|
247
256
|
agentsCountHintText,
|
|
@@ -312,6 +321,9 @@ export function createOverviewController({
|
|
|
312
321
|
brandVersionText,
|
|
313
322
|
snapshotText: snapshotHtml,
|
|
314
323
|
heroModeText,
|
|
324
|
+
heroAdapterText,
|
|
325
|
+
heroRelayText,
|
|
326
|
+
heroRoomText,
|
|
315
327
|
pillBroadcastText,
|
|
316
328
|
pillBroadcastClassName,
|
|
317
329
|
agentsCountHintText,
|
|
@@ -217,7 +217,6 @@ export const appTemplate = String.raw`<div class="app" id="appShell">
|
|
|
217
217
|
</div>
|
|
218
218
|
</div>
|
|
219
219
|
</div>
|
|
220
|
-
<div class="grid" id="overviewCards"></div>
|
|
221
220
|
<div class="page-section-grid two-col">
|
|
222
221
|
<div class="card">
|
|
223
222
|
<h3 class="title-sm" id="agentSnapshotTitle">Local Node Snapshot</h3>
|
|
@@ -288,6 +287,7 @@ export const appTemplate = String.raw`<div class="app" id="appShell">
|
|
|
288
287
|
</div>
|
|
289
288
|
</div>
|
|
290
289
|
</div>
|
|
290
|
+
<div class="grid" id="overviewCards"></div>
|
|
291
291
|
<div class="card">
|
|
292
292
|
<div class="overview-panel-header">
|
|
293
293
|
<div class="overview-panel-title">
|
|
@@ -204,9 +204,9 @@ export const TRANSLATIONS = {
|
|
|
204
204
|
homeMissionEyebrow: 'Control Center',
|
|
205
205
|
homeBriefTitle: 'Operational Brief',
|
|
206
206
|
overviewSnapshotHint: 'Read this card before opening diagnostics. It summarizes what this machine is actually publishing right now.',
|
|
207
|
-
agentBannerTitle: '
|
|
208
|
-
agentBannerBody: '
|
|
209
|
-
agentBannerDiscovery: 'Discovery',
|
|
207
|
+
agentBannerTitle: 'Track discovery status first, then browse the public node directory.',
|
|
208
|
+
agentBannerBody: 'Use the top metrics to understand how many public nodes are visible right now, then inspect the directory below to see who is online from this machine.',
|
|
209
|
+
agentBannerDiscovery: 'Discovery status',
|
|
210
210
|
agentBannerSource: 'Current source',
|
|
211
211
|
agentListHint: 'Browse the latest public nodes visible from this machine in the current discovery mode.',
|
|
212
212
|
chatBannerTitle: 'Publish clearly, then verify what the network really saw.',
|
|
@@ -717,9 +717,9 @@ export const TRANSLATIONS = {
|
|
|
717
717
|
homeMissionEyebrow: '控制中心',
|
|
718
718
|
homeBriefTitle: '运行简报',
|
|
719
719
|
overviewSnapshotHint: '先读这张卡,再决定要不要进入诊断页。这里总结了这台机器当前真正对外发布的状态。',
|
|
720
|
-
agentBannerTitle: '
|
|
721
|
-
agentBannerBody: '
|
|
722
|
-
agentBannerDiscovery: '
|
|
720
|
+
agentBannerTitle: '先看发现状态,再浏览公开节点目录。',
|
|
721
|
+
agentBannerBody: '页面顶部先告诉你当前看到了多少公开节点、多少在线节点,以及 Presence TTL;下面再进入目录,判断这台机器现在到底能看到谁。',
|
|
722
|
+
agentBannerDiscovery: '发现状态',
|
|
723
723
|
agentBannerSource: '当前来源',
|
|
724
724
|
agentListHint: '浏览当前发现模式下,这台机器此刻能看到的公开节点。',
|
|
725
725
|
chatBannerTitle: '先把消息发出去,再确认网络到底看到了什么。',
|
|
@@ -2381,6 +2381,22 @@ export class LocalNodeService {
|
|
|
2381
2381
|
private getOnboardingSummary() {
|
|
2382
2382
|
const summary = this.getIntegrationSummary();
|
|
2383
2383
|
const publicEnabled = Boolean(this.profile?.public_enabled);
|
|
2384
|
+
const nextSteps: string[] = [];
|
|
2385
|
+
if (!String(this.profile?.display_name || "").trim()) {
|
|
2386
|
+
nextSteps.push("Update display name in Profile page");
|
|
2387
|
+
}
|
|
2388
|
+
if (!publicEnabled) {
|
|
2389
|
+
nextSteps.push("Enable Public Enabled in Profile");
|
|
2390
|
+
}
|
|
2391
|
+
if (!summary.running) {
|
|
2392
|
+
nextSteps.push("Start broadcast in Network");
|
|
2393
|
+
}
|
|
2394
|
+
if (!summary.discoverable) {
|
|
2395
|
+
nextSteps.push("Announce node once after the network is running");
|
|
2396
|
+
}
|
|
2397
|
+
if (nextSteps.length === 0) {
|
|
2398
|
+
nextSteps.push("Node is public and discoverable");
|
|
2399
|
+
}
|
|
2384
2400
|
return {
|
|
2385
2401
|
first_run: Boolean(
|
|
2386
2402
|
this.initState.social_auto_created ||
|
|
@@ -2392,10 +2408,7 @@ export class LocalNodeService {
|
|
|
2392
2408
|
mode: this.networkMode,
|
|
2393
2409
|
public_enabled: publicEnabled,
|
|
2394
2410
|
can_enable_public_discovery: !publicEnabled,
|
|
2395
|
-
next_steps:
|
|
2396
|
-
"Update display name in Profile page",
|
|
2397
|
-
"Export social.md from Social Config",
|
|
2398
|
-
],
|
|
2411
|
+
next_steps: nextSteps,
|
|
2399
2412
|
};
|
|
2400
2413
|
}
|
|
2401
2414
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
2026.3.19-
|
|
1
|
+
2026.3.19-11
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "silicaclaw-broadcast",
|
|
3
|
-
"version": "2026.3.19-
|
|
3
|
+
"version": "2026.3.19-11",
|
|
4
4
|
"display_name": "SilicaClaw Broadcast",
|
|
5
5
|
"description": "OpenClaw skill for reading SilicaClaw public broadcasts, publishing public broadcasts, and forwarding relevant updates to the owner through OpenClaw's native social channel.",
|
|
6
6
|
"entrypoints": {
|