@silicaclaw/cli 2026.3.20-15 → 2026.3.20-16
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/public/app/styles.css +22 -42
- package/apps/local-console/public/app/template.js +87 -77
- 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
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
## v1.0 beta - 2026-03-20
|
|
4
4
|
|
|
5
|
+
### 2026.3.20-16
|
|
6
|
+
|
|
7
|
+
- release build:
|
|
8
|
+
- prepared another fresh latest-channel package build without publishing
|
|
9
|
+
- regenerated the npm tarball through the verified release packing workflow
|
|
10
|
+
|
|
5
11
|
### 2026.3.20-15
|
|
6
12
|
|
|
7
13
|
- release build:
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
v2026.3.20-
|
|
1
|
+
v2026.3.20-16
|
|
@@ -334,17 +334,6 @@
|
|
|
334
334
|
width: 18px;
|
|
335
335
|
height: 18px;
|
|
336
336
|
}
|
|
337
|
-
.app.nav-collapsed .nav button.active::before {
|
|
338
|
-
content: "";
|
|
339
|
-
position: absolute;
|
|
340
|
-
left: 8px;
|
|
341
|
-
top: 10px;
|
|
342
|
-
bottom: 10px;
|
|
343
|
-
width: 3px;
|
|
344
|
-
border-radius: 999px;
|
|
345
|
-
background: color-mix(in srgb, var(--accent) 86%, transparent);
|
|
346
|
-
box-shadow: 0 0 14px color-mix(in srgb, var(--accent) 34%, transparent);
|
|
347
|
-
}
|
|
348
337
|
.app.nav-collapsed .sidebar-shell__footer {
|
|
349
338
|
padding: 8px 0 2px;
|
|
350
339
|
display: grid;
|
|
@@ -394,8 +383,16 @@
|
|
|
394
383
|
.nav-section {
|
|
395
384
|
display: grid;
|
|
396
385
|
align-content: start;
|
|
397
|
-
gap:
|
|
398
|
-
margin-bottom:
|
|
386
|
+
gap: 8px;
|
|
387
|
+
margin-bottom: 12px;
|
|
388
|
+
padding: 10px;
|
|
389
|
+
border-radius: 18px;
|
|
390
|
+
background:
|
|
391
|
+
linear-gradient(180deg, color-mix(in srgb, var(--bg-elevated) 88%, transparent) 0%, color-mix(in srgb, var(--bg) 94%, transparent) 100%);
|
|
392
|
+
border: 1px solid color-mix(in srgb, var(--border) 54%, transparent);
|
|
393
|
+
box-shadow:
|
|
394
|
+
inset 0 1px 0 color-mix(in srgb, white 8%, transparent),
|
|
395
|
+
0 10px 24px color-mix(in srgb, black 8%, transparent);
|
|
399
396
|
}
|
|
400
397
|
.nav-section:last-child {
|
|
401
398
|
margin-bottom: 0;
|
|
@@ -406,12 +403,12 @@
|
|
|
406
403
|
justify-content: space-between;
|
|
407
404
|
gap: 8px;
|
|
408
405
|
width: 100%;
|
|
409
|
-
min-height:
|
|
410
|
-
padding: 0
|
|
411
|
-
color: var(--
|
|
412
|
-
font-size:
|
|
406
|
+
min-height: 24px;
|
|
407
|
+
padding: 0 4px;
|
|
408
|
+
color: color-mix(in srgb, var(--text) 78%, transparent);
|
|
409
|
+
font-size: 11px;
|
|
413
410
|
font-weight: 700;
|
|
414
|
-
letter-spacing: 0.
|
|
411
|
+
letter-spacing: 0.12em;
|
|
415
412
|
text-transform: uppercase;
|
|
416
413
|
}
|
|
417
414
|
.nav-section__items {
|
|
@@ -425,13 +422,13 @@
|
|
|
425
422
|
align-items: flex-start;
|
|
426
423
|
justify-content: flex-start;
|
|
427
424
|
gap: 10px;
|
|
428
|
-
min-height:
|
|
425
|
+
min-height: 54px;
|
|
429
426
|
text-align: left;
|
|
430
|
-
border: 1px solid transparent;
|
|
431
|
-
background: transparent;
|
|
427
|
+
border: 1px solid color-mix(in srgb, var(--border) 42%, transparent);
|
|
428
|
+
background: color-mix(in srgb, var(--bg) 92%, transparent);
|
|
432
429
|
color: var(--muted);
|
|
433
430
|
padding: 10px 12px;
|
|
434
|
-
border-radius:
|
|
431
|
+
border-radius: 15px;
|
|
435
432
|
cursor: pointer;
|
|
436
433
|
font: inherit;
|
|
437
434
|
line-height: 1;
|
|
@@ -488,17 +485,6 @@
|
|
|
488
485
|
inset 0 1px 0 color-mix(in srgb, white 10%, transparent),
|
|
489
486
|
0 10px 18px color-mix(in srgb, black 8%, transparent);
|
|
490
487
|
}
|
|
491
|
-
.nav button.active::before {
|
|
492
|
-
content: "";
|
|
493
|
-
position: absolute;
|
|
494
|
-
left: 8px;
|
|
495
|
-
top: 9px;
|
|
496
|
-
bottom: 9px;
|
|
497
|
-
width: 3px;
|
|
498
|
-
border-radius: 999px;
|
|
499
|
-
background: color-mix(in srgb, var(--accent) 86%, transparent);
|
|
500
|
-
box-shadow: 0 0 12px color-mix(in srgb, var(--accent) 28%, transparent);
|
|
501
|
-
}
|
|
502
488
|
.nav button.active .tab-icon {
|
|
503
489
|
opacity: 1;
|
|
504
490
|
color: var(--accent);
|
|
@@ -508,8 +494,9 @@
|
|
|
508
494
|
}
|
|
509
495
|
.nav button:hover {
|
|
510
496
|
color: var(--text);
|
|
511
|
-
background: color-mix(in srgb, var(--bg-hover)
|
|
512
|
-
border-color: color-mix(in srgb, var(--
|
|
497
|
+
background: color-mix(in srgb, var(--bg-hover) 82%, transparent);
|
|
498
|
+
border-color: color-mix(in srgb, var(--accent) 26%, var(--border) 74%);
|
|
499
|
+
transform: translateY(-1px);
|
|
513
500
|
}
|
|
514
501
|
.nav button:hover .tab-icon {
|
|
515
502
|
opacity: 1;
|
|
@@ -2565,13 +2552,6 @@
|
|
|
2565
2552
|
background: color-mix(in srgb, var(--bg-elevated) 84%, transparent);
|
|
2566
2553
|
border-color: color-mix(in srgb, var(--border) 72%, transparent);
|
|
2567
2554
|
}
|
|
2568
|
-
.nav button.active::before {
|
|
2569
|
-
left: 10px;
|
|
2570
|
-
top: auto;
|
|
2571
|
-
bottom: 6px;
|
|
2572
|
-
width: calc(100% - 20px);
|
|
2573
|
-
height: 3px;
|
|
2574
|
-
}
|
|
2575
2555
|
.grid,
|
|
2576
2556
|
#view-network #networkCards,
|
|
2577
2557
|
#socialPrimaryCards,
|
|
@@ -23,84 +23,94 @@ export const appTemplate = String.raw`<div class="app" id="appShell">
|
|
|
23
23
|
<div class="sidebar-shell__body">
|
|
24
24
|
<nav class="sidebar-nav nav">
|
|
25
25
|
<section class="nav-section">
|
|
26
|
-
<div class="nav-section__label">
|
|
26
|
+
<div class="nav-section__label">Workspace</div>
|
|
27
27
|
<div class="nav-section__items">
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
</
|
|
60
|
-
<
|
|
61
|
-
<
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
<
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
<
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
<
|
|
98
|
-
<
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
28
|
+
<button class="tab nav-item active" data-tab="overview">
|
|
29
|
+
<span class="tab-icon" aria-hidden="true">
|
|
30
|
+
<svg viewBox="0 0 24 24">
|
|
31
|
+
<line x1="12" x2="12" y1="20" y2="10"></line>
|
|
32
|
+
<line x1="18" x2="18" y1="20" y2="4"></line>
|
|
33
|
+
<line x1="6" x2="6" y1="20" y2="16"></line>
|
|
34
|
+
</svg>
|
|
35
|
+
</span>
|
|
36
|
+
<span class="tab-labels"><span class="tab-title">Overview</span><span class="tab-copy">Agent health, visibility, and next steps</span></span>
|
|
37
|
+
</button>
|
|
38
|
+
<button class="tab nav-item" data-tab="profile">
|
|
39
|
+
<span class="tab-icon" aria-hidden="true">
|
|
40
|
+
<svg viewBox="0 0 24 24">
|
|
41
|
+
<path d="M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"></path>
|
|
42
|
+
<polyline points="14 2 14 8 20 8"></polyline>
|
|
43
|
+
<line x1="16" x2="8" y1="13" y2="13"></line>
|
|
44
|
+
<line x1="16" x2="8" y1="17" y2="17"></line>
|
|
45
|
+
<line x1="10" x2="8" y1="9" y2="9"></line>
|
|
46
|
+
</svg>
|
|
47
|
+
</span>
|
|
48
|
+
<span class="tab-labels"><span class="tab-title">Profile</span><span class="tab-copy">Public card, visibility, and saved identity</span></span>
|
|
49
|
+
</button>
|
|
50
|
+
<button class="tab nav-item" data-tab="skills">
|
|
51
|
+
<span class="tab-icon" aria-hidden="true">
|
|
52
|
+
<svg viewBox="0 0 24 24">
|
|
53
|
+
<path d="M12 3l2.5 5 5.5.8-4 3.9.9 5.5-4.9-2.6-4.9 2.6.9-5.5-4-3.9 5.5-.8z"></path>
|
|
54
|
+
</svg>
|
|
55
|
+
</span>
|
|
56
|
+
<span class="tab-labels"><span class="tab-title">Skills</span><span class="tab-copy">Bundled skills and OpenClaw-installed skills</span></span>
|
|
57
|
+
</button>
|
|
58
|
+
</div>
|
|
59
|
+
</section>
|
|
60
|
+
<section class="nav-section">
|
|
61
|
+
<div class="nav-section__label">Messages</div>
|
|
62
|
+
<div class="nav-section__items">
|
|
63
|
+
<button class="tab nav-item" data-tab="chat">
|
|
64
|
+
<span class="tab-icon" aria-hidden="true">
|
|
65
|
+
<svg viewBox="0 0 24 24">
|
|
66
|
+
<path d="M21 15a2 2 0 0 1-2 2H8l-5 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"></path>
|
|
67
|
+
<path d="M8 9h8"></path>
|
|
68
|
+
<path d="M8 13h6"></path>
|
|
69
|
+
</svg>
|
|
70
|
+
</span>
|
|
71
|
+
<span class="tab-labels"><span class="tab-title">Messages</span><span class="tab-copy">Public message composer and observed feed</span></span>
|
|
72
|
+
</button>
|
|
73
|
+
<button class="tab nav-item" data-tab="private">
|
|
74
|
+
<span class="tab-icon" aria-hidden="true">
|
|
75
|
+
<svg viewBox="0 0 24 24">
|
|
76
|
+
<path d="M7 11V7a5 5 0 0 1 10 0v4"></path>
|
|
77
|
+
<rect x="4" y="11" width="16" height="10" rx="2"></rect>
|
|
78
|
+
<circle cx="12" cy="16" r="1"></circle>
|
|
79
|
+
</svg>
|
|
80
|
+
</span>
|
|
81
|
+
<span class="tab-labels"><span class="tab-title">Private</span><span class="tab-copy">Private messages between visible agents</span></span>
|
|
82
|
+
</button>
|
|
83
|
+
</div>
|
|
84
|
+
</section>
|
|
85
|
+
<section class="nav-section">
|
|
86
|
+
<div class="nav-section__label">Network</div>
|
|
87
|
+
<div class="nav-section__items">
|
|
88
|
+
<button class="tab nav-item" data-tab="agent">
|
|
89
|
+
<span class="tab-icon" aria-hidden="true">
|
|
90
|
+
<svg viewBox="0 0 24 24">
|
|
91
|
+
<circle cx="12" cy="8" r="4"></circle>
|
|
92
|
+
<path d="M5 20c1.6-3.8 4.2-5.7 7-5.7s5.4 1.9 7 5.7"></path>
|
|
93
|
+
</svg>
|
|
94
|
+
</span>
|
|
95
|
+
<span class="tab-labels"><span class="tab-title">Agents</span><span class="tab-copy">Discovered public agents and live directory</span></span>
|
|
96
|
+
</button>
|
|
97
|
+
<button class="tab nav-item" data-tab="network">
|
|
98
|
+
<span class="tab-icon" aria-hidden="true">
|
|
99
|
+
<svg viewBox="0 0 24 24">
|
|
100
|
+
<circle cx="12" cy="12" r="2"></circle>
|
|
101
|
+
<path d="M16.24 7.76a6 6 0 0 1 0 8.49m-8.48-.01a6 6 0 0 1 0-8.49m11.31-2.82a10 10 0 0 1 0 14.14m-14.14 0a10 10 0 0 1 0-14.14"></path>
|
|
102
|
+
</svg>
|
|
103
|
+
</span>
|
|
104
|
+
<span class="tab-labels"><span class="tab-title">Network</span><span class="tab-copy">Broadcast controls, peers, and diagnostics</span></span>
|
|
105
|
+
</button>
|
|
106
|
+
<button class="tab nav-item" data-tab="social">
|
|
107
|
+
<span class="tab-icon" aria-hidden="true">
|
|
108
|
+
<svg viewBox="0 0 24 24">
|
|
109
|
+
<path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"></path>
|
|
110
|
+
</svg>
|
|
111
|
+
</span>
|
|
112
|
+
<span class="tab-labels"><span class="tab-title">Social</span><span class="tab-copy">Runtime mode, bridge status, and social.md</span></span>
|
|
113
|
+
</button>
|
|
104
114
|
</div>
|
|
105
115
|
</section>
|
|
106
116
|
</nav>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
2026.3.20-beta.
|
|
1
|
+
2026.3.20-beta.16
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "silicaclaw-broadcast",
|
|
3
|
-
"version": "2026.3.20-beta.
|
|
3
|
+
"version": "2026.3.20-beta.16",
|
|
4
4
|
"display_name": "SilicaClaw Broadcast",
|
|
5
5
|
"description": "Official OpenClaw skill for a bounded local SilicaClaw broadcast workflow: read public broadcasts, publish public broadcasts, and optionally forward owner-relevant summaries through OpenClaw's native channel.",
|
|
6
6
|
"entrypoints": {
|