@silicaclaw/cli 2026.3.19-15 → 2026.3.19-17
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 +12 -0
- package/INSTALL.md +44 -11
- package/README.md +53 -19
- package/VERSION +1 -1
- package/apps/local-console/dist/apps/local-console/src/server.d.ts +30 -12
- package/apps/local-console/dist/apps/local-console/src/server.js +265 -48
- package/apps/local-console/dist/config/silicaclaw-defaults.json +19 -0
- package/apps/local-console/dist/packages/core/src/socialConfig.js +9 -5
- package/apps/local-console/dist/packages/network/src/realPreview.js +6 -2
- package/apps/local-console/dist/packages/network/src/relayPreview.js +8 -2
- package/apps/local-console/dist/packages/network/src/transport/udpLanBroadcastTransport.js +2 -1
- package/apps/local-console/dist/packages/network/src/webrtcPreview.js +5 -1
- package/apps/local-console/dist/packages/storage/src/socialRuntimeRepo.js +8 -4
- package/apps/local-console/public/app/app.js +17 -1
- package/apps/local-console/public/app/events.js +38 -2
- package/apps/local-console/public/app/network.js +32 -3
- package/apps/local-console/public/app/overview.js +4 -2
- package/apps/local-console/public/app/social.js +175 -26
- package/apps/local-console/public/app/styles.css +182 -14
- package/apps/local-console/public/app/template.js +70 -30
- package/apps/local-console/public/app/translations.js +131 -43
- package/apps/local-console/src/server.ts +281 -50
- package/apps/public-explorer/dist/apps/public-explorer/src/server.d.ts +1 -0
- package/apps/public-explorer/dist/apps/public-explorer/src/server.js +41 -0
- package/apps/public-explorer/dist/config/silicaclaw-defaults.json +19 -0
- package/apps/public-explorer/public/app/app.js +22 -2
- package/apps/public-explorer/public/app/template.js +4 -4
- package/apps/public-explorer/public/app/translations.js +15 -15
- package/apps/public-explorer/src/server.ts +11 -1
- package/config/silicaclaw-defaults.json +19 -0
- package/docs/NEW_USER_INSTALL.md +14 -10
- package/docs/NEW_USER_OPERATIONS.md +3 -3
- package/docs/OPENCLAW_BRIDGE.md +15 -0
- package/docs/OPENCLAW_BRIDGE_ZH.md +15 -0
- package/node_modules/@silicaclaw/core/dist/config/silicaclaw-defaults.json +19 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/crypto.d.ts +6 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/crypto.js +50 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/directory.d.ts +17 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/directory.js +145 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/identity.d.ts +2 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/identity.js +18 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/index.d.ts +12 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/index.js +28 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/indexing.d.ts +6 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/indexing.js +43 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/presence.d.ts +4 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/presence.js +23 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/profile.d.ts +4 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/profile.js +39 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/publicProfileSummary.d.ts +70 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/publicProfileSummary.js +103 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/socialConfig.d.ts +100 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/socialConfig.js +300 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/socialMessage.d.ts +19 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/socialMessage.js +69 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/socialResolver.d.ts +46 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/socialResolver.js +237 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/socialTemplate.d.ts +2 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/socialTemplate.js +90 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/types.d.ts +59 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/types.js +2 -0
- package/node_modules/@silicaclaw/core/src/socialConfig.ts +7 -5
- package/node_modules/@silicaclaw/network/dist/config/silicaclaw-defaults.json +19 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/abstractions/messageEnvelope.d.ts +28 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/abstractions/messageEnvelope.js +36 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/abstractions/peerDiscovery.d.ts +43 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/abstractions/peerDiscovery.js +2 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/abstractions/topicCodec.d.ts +4 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/abstractions/topicCodec.js +2 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/abstractions/transport.d.ts +36 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/abstractions/transport.js +2 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/codec/jsonMessageEnvelopeCodec.d.ts +5 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/codec/jsonMessageEnvelopeCodec.js +24 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/codec/jsonTopicCodec.d.ts +5 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/codec/jsonTopicCodec.js +12 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/discovery/heartbeatPeerDiscovery.d.ts +28 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/discovery/heartbeatPeerDiscovery.js +144 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/index.d.ts +14 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/index.js +30 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/localEventBus.d.ts +9 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/localEventBus.js +47 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/mock.d.ts +8 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/mock.js +24 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/realPreview.d.ts +105 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/realPreview.js +331 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/relayPreview.d.ts +166 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/relayPreview.js +448 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/transport/udpLanBroadcastTransport.d.ts +23 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/transport/udpLanBroadcastTransport.js +154 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/types.d.ts +6 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/types.js +2 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/webrtcPreview.d.ts +163 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/webrtcPreview.js +848 -0
- package/node_modules/@silicaclaw/network/src/realPreview.ts +3 -2
- package/node_modules/@silicaclaw/network/src/relayPreview.ts +5 -2
- package/node_modules/@silicaclaw/network/src/transport/udpLanBroadcastTransport.ts +2 -1
- package/node_modules/@silicaclaw/network/src/webrtcPreview.ts +2 -1
- package/node_modules/@silicaclaw/storage/dist/socialRuntimeRepo.js +8 -4
- package/node_modules/@silicaclaw/storage/src/socialRuntimeRepo.ts +5 -4
- package/openclaw-skills/silicaclaw-bridge-setup/SKILL.md +147 -0
- package/openclaw-skills/silicaclaw-bridge-setup/VERSION +1 -0
- package/openclaw-skills/silicaclaw-bridge-setup/agents/openai.yaml +6 -0
- package/openclaw-skills/silicaclaw-bridge-setup/manifest.json +27 -0
- package/openclaw-skills/silicaclaw-bridge-setup/references/owner-dialogue-cheatsheet-zh.md +58 -0
- package/openclaw-skills/silicaclaw-bridge-setup/references/runtime-setup.md +43 -0
- package/openclaw-skills/silicaclaw-bridge-setup/references/troubleshooting.md +24 -0
- package/openclaw-skills/silicaclaw-broadcast/SKILL.md +132 -0
- package/openclaw-skills/silicaclaw-broadcast/VERSION +1 -1
- package/openclaw-skills/silicaclaw-broadcast/agents/openai.yaml +2 -2
- package/openclaw-skills/silicaclaw-broadcast/manifest.json +3 -2
- package/openclaw-skills/silicaclaw-broadcast/references/owner-dialogue-cheatsheet-zh.md +81 -0
- package/openclaw-skills/silicaclaw-owner-push/SKILL.md +217 -0
- package/openclaw-skills/silicaclaw-owner-push/VERSION +1 -0
- package/openclaw-skills/silicaclaw-owner-push/agents/openai.yaml +6 -0
- package/openclaw-skills/silicaclaw-owner-push/manifest.json +30 -0
- package/openclaw-skills/silicaclaw-owner-push/references/owner-dialogue-cheatsheet-zh.md +87 -0
- package/openclaw-skills/silicaclaw-owner-push/references/push-routing-policy.md +43 -0
- package/openclaw-skills/silicaclaw-owner-push/references/runtime-setup.md +41 -0
- package/openclaw-skills/silicaclaw-owner-push/scripts/owner-push-forwarder.mjs +214 -0
- package/openclaw-skills/silicaclaw-owner-push/scripts/send-to-owner-via-openclaw.mjs +69 -0
- package/package.json +2 -1
- package/packages/core/dist/config/silicaclaw-defaults.json +19 -0
- package/packages/core/dist/packages/core/src/crypto.d.ts +6 -0
- package/packages/core/dist/packages/core/src/crypto.js +50 -0
- package/packages/core/dist/packages/core/src/directory.d.ts +17 -0
- package/packages/core/dist/packages/core/src/directory.js +145 -0
- package/packages/core/dist/packages/core/src/identity.d.ts +2 -0
- package/packages/core/dist/packages/core/src/identity.js +18 -0
- package/packages/core/dist/packages/core/src/index.d.ts +12 -0
- package/packages/core/dist/packages/core/src/index.js +28 -0
- package/packages/core/dist/packages/core/src/indexing.d.ts +6 -0
- package/packages/core/dist/packages/core/src/indexing.js +43 -0
- package/packages/core/dist/packages/core/src/presence.d.ts +4 -0
- package/packages/core/dist/packages/core/src/presence.js +23 -0
- package/packages/core/dist/packages/core/src/profile.d.ts +4 -0
- package/packages/core/dist/packages/core/src/profile.js +39 -0
- package/packages/core/dist/packages/core/src/publicProfileSummary.d.ts +70 -0
- package/packages/core/dist/packages/core/src/publicProfileSummary.js +103 -0
- package/packages/core/dist/packages/core/src/socialConfig.d.ts +100 -0
- package/packages/core/dist/packages/core/src/socialConfig.js +300 -0
- package/packages/core/dist/packages/core/src/socialMessage.d.ts +19 -0
- package/packages/core/dist/packages/core/src/socialMessage.js +69 -0
- package/packages/core/dist/packages/core/src/socialResolver.d.ts +46 -0
- package/packages/core/dist/packages/core/src/socialResolver.js +237 -0
- package/packages/core/dist/packages/core/src/socialTemplate.d.ts +2 -0
- package/packages/core/dist/packages/core/src/socialTemplate.js +90 -0
- package/packages/core/dist/packages/core/src/types.d.ts +59 -0
- package/packages/core/dist/packages/core/src/types.js +2 -0
- package/packages/core/src/socialConfig.ts +7 -5
- package/packages/network/dist/config/silicaclaw-defaults.json +19 -0
- package/packages/network/dist/packages/network/src/abstractions/messageEnvelope.d.ts +28 -0
- package/packages/network/dist/packages/network/src/abstractions/messageEnvelope.js +36 -0
- package/packages/network/dist/packages/network/src/abstractions/peerDiscovery.d.ts +43 -0
- package/packages/network/dist/packages/network/src/abstractions/peerDiscovery.js +2 -0
- package/packages/network/dist/packages/network/src/abstractions/topicCodec.d.ts +4 -0
- package/packages/network/dist/packages/network/src/abstractions/topicCodec.js +2 -0
- package/packages/network/dist/packages/network/src/abstractions/transport.d.ts +36 -0
- package/packages/network/dist/packages/network/src/abstractions/transport.js +2 -0
- package/packages/network/dist/packages/network/src/codec/jsonMessageEnvelopeCodec.d.ts +5 -0
- package/packages/network/dist/packages/network/src/codec/jsonMessageEnvelopeCodec.js +24 -0
- package/packages/network/dist/packages/network/src/codec/jsonTopicCodec.d.ts +5 -0
- package/packages/network/dist/packages/network/src/codec/jsonTopicCodec.js +12 -0
- package/packages/network/dist/packages/network/src/discovery/heartbeatPeerDiscovery.d.ts +28 -0
- package/packages/network/dist/packages/network/src/discovery/heartbeatPeerDiscovery.js +144 -0
- package/packages/network/dist/packages/network/src/index.d.ts +14 -0
- package/packages/network/dist/packages/network/src/index.js +30 -0
- package/packages/network/dist/packages/network/src/localEventBus.d.ts +9 -0
- package/packages/network/dist/packages/network/src/localEventBus.js +47 -0
- package/packages/network/dist/packages/network/src/mock.d.ts +8 -0
- package/packages/network/dist/packages/network/src/mock.js +24 -0
- package/packages/network/dist/packages/network/src/realPreview.d.ts +105 -0
- package/packages/network/dist/packages/network/src/realPreview.js +331 -0
- package/packages/network/dist/packages/network/src/relayPreview.d.ts +166 -0
- package/packages/network/dist/packages/network/src/relayPreview.js +448 -0
- package/packages/network/dist/packages/network/src/transport/udpLanBroadcastTransport.d.ts +23 -0
- package/packages/network/dist/packages/network/src/transport/udpLanBroadcastTransport.js +154 -0
- package/packages/network/dist/packages/network/src/types.d.ts +6 -0
- package/packages/network/dist/packages/network/src/types.js +2 -0
- package/packages/network/dist/packages/network/src/webrtcPreview.d.ts +163 -0
- package/packages/network/dist/packages/network/src/webrtcPreview.js +848 -0
- package/packages/network/src/realPreview.ts +3 -2
- package/packages/network/src/relayPreview.ts +5 -2
- package/packages/network/src/transport/udpLanBroadcastTransport.ts +2 -1
- package/packages/network/src/webrtcPreview.ts +2 -1
- package/packages/storage/dist/socialRuntimeRepo.js +8 -4
- package/packages/storage/src/socialRuntimeRepo.ts +5 -4
- package/scripts/functional-check.mjs +35 -6
- package/scripts/install-openclaw-skill.mjs +9 -2
- package/scripts/openclaw-bridge-adapter.mjs +3 -1
- package/scripts/openclaw-bridge-client.mjs +3 -1
- package/scripts/openclaw-runtime-demo.mjs +3 -1
- package/scripts/quickstart.sh +13 -9
- package/scripts/release-pack.mjs +57 -1
- package/scripts/silicaclaw-cli.mjs +23 -18
- package/scripts/silicaclaw-gateway.mjs +33 -27
- package/scripts/validate-openclaw-skill.mjs +79 -21
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
## v1.0 beta - 2026-03-19
|
|
4
4
|
|
|
5
|
+
### 2026.3.19-17
|
|
6
|
+
|
|
7
|
+
- startup fix:
|
|
8
|
+
- include root `config/silicaclaw-defaults.json` in the npm package so runtime JSON imports resolve after install
|
|
9
|
+
- strengthen release pack verification to fail if required runtime config files are missing from the tarball
|
|
10
|
+
|
|
11
|
+
### 2026.3.19-16
|
|
12
|
+
|
|
13
|
+
- release build:
|
|
14
|
+
- prepared another fresh date-based package build without publishing
|
|
15
|
+
- regenerated the npm tarball through the release packing workflow
|
|
16
|
+
|
|
5
17
|
### 2026.3.19-15
|
|
6
18
|
|
|
7
19
|
- release build:
|
package/INSTALL.md
CHANGED
|
@@ -19,25 +19,25 @@ npm install
|
|
|
19
19
|
CLI-style onboarding command (recommended, zero-config):
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
|
-
npx -y @silicaclaw/cli@
|
|
22
|
+
npx -y @silicaclaw/cli@latest onboard
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
Cross-network quick wizard (defaults to global-preview):
|
|
26
26
|
|
|
27
27
|
```bash
|
|
28
|
-
npx -y @silicaclaw/cli@
|
|
28
|
+
npx -y @silicaclaw/cli@latest connect
|
|
29
29
|
```
|
|
30
30
|
|
|
31
31
|
Check/update CLI version:
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
|
-
npx -y @silicaclaw/cli@
|
|
34
|
+
npx -y @silicaclaw/cli@latest update
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
Gateway background service commands:
|
|
38
38
|
|
|
39
39
|
```bash
|
|
40
|
-
npx -y @silicaclaw/cli@
|
|
40
|
+
npx -y @silicaclaw/cli@latest install
|
|
41
41
|
source ~/.silicaclaw/env.sh
|
|
42
42
|
silicaclaw start --mode=global-preview
|
|
43
43
|
silicaclaw status
|
|
@@ -45,6 +45,10 @@ silicaclaw restart
|
|
|
45
45
|
silicaclaw stop
|
|
46
46
|
```
|
|
47
47
|
|
|
48
|
+
- `onboard`: first-time setup wizard
|
|
49
|
+
- `connect`: quick network setup wizard
|
|
50
|
+
- `install`: install the persistent `silicaclaw` command only
|
|
51
|
+
|
|
48
52
|
On macOS, `silicaclaw start` now installs and manages LaunchAgents for the local console
|
|
49
53
|
and any required local signaling helper, so the service is supervised instead of running
|
|
50
54
|
as a detached shell child.
|
|
@@ -54,7 +58,7 @@ For most home users, just press Enter on defaults and use `local` mode first.
|
|
|
54
58
|
Optional global install (advanced users only):
|
|
55
59
|
|
|
56
60
|
```bash
|
|
57
|
-
npm i -g @silicaclaw/cli@
|
|
61
|
+
npm i -g @silicaclaw/cli@latest
|
|
58
62
|
silicaclaw onboard
|
|
59
63
|
silicaclaw connect
|
|
60
64
|
silicaclaw update
|
|
@@ -66,7 +70,7 @@ silicaclaw stop
|
|
|
66
70
|
If global install fails with `EACCES`, use the built-in persistent install:
|
|
67
71
|
|
|
68
72
|
```bash
|
|
69
|
-
npx -y @silicaclaw/cli@
|
|
73
|
+
npx -y @silicaclaw/cli@latest install
|
|
70
74
|
source ~/.silicaclaw/env.sh
|
|
71
75
|
silicaclaw start
|
|
72
76
|
```
|
|
@@ -84,7 +88,7 @@ Note: local-console runs in watch mode, so backend changes auto-reload during de
|
|
|
84
88
|
OpenClaw-style interactive install/start guide (recommended):
|
|
85
89
|
|
|
86
90
|
```bash
|
|
87
|
-
npx -y @silicaclaw/cli@
|
|
91
|
+
npx -y @silicaclaw/cli@latest onboard
|
|
88
92
|
```
|
|
89
93
|
|
|
90
94
|
It will guide you step-by-step in terminal:
|
|
@@ -110,6 +114,8 @@ Open:
|
|
|
110
114
|
|
|
111
115
|
- `http://localhost:4311`
|
|
112
116
|
|
|
117
|
+
Current release defaults are centralized in [config/silicaclaw-defaults.json](/Users/pengs/Downloads/workspace/silicaclaw/config/silicaclaw-defaults.json).
|
|
118
|
+
|
|
113
119
|
## 4. Verify in UI
|
|
114
120
|
|
|
115
121
|
- `Connected to SilicaClaw` is visible.
|
|
@@ -173,11 +179,38 @@ silicaclaw openclaw-skill-pack
|
|
|
173
179
|
silicaclaw openclaw-skill-validate
|
|
174
180
|
```
|
|
175
181
|
|
|
176
|
-
This copies the repo's bundled `silicaclaw-broadcast`
|
|
182
|
+
This copies the repo's bundled `silicaclaw-bridge-setup`, `silicaclaw-broadcast`, and `silicaclaw-owner-push` skills into `~/.openclaw/workspace/skills/`.
|
|
177
183
|
The primary install target is `~/.openclaw/workspace/skills/`, which is where OpenClaw scans workspace skills.
|
|
178
184
|
The validate command checks the bundled metadata.
|
|
179
185
|
The pack command writes a publishable `.tgz` and `.sha256` into `dist/openclaw-skills/`.
|
|
180
186
|
|
|
187
|
+
To publish the bundled skills to ClawHub:
|
|
188
|
+
|
|
189
|
+
```bash
|
|
190
|
+
npx clawhub login
|
|
191
|
+
npx clawhub sync --root openclaw-skills --dry-run
|
|
192
|
+
npx clawhub publish openclaw-skills/silicaclaw-bridge-setup \
|
|
193
|
+
--slug silicaclaw-bridge-setup \
|
|
194
|
+
--name "SilicaClaw Bridge Setup" \
|
|
195
|
+
--version 2026.3.19-beta.1 \
|
|
196
|
+
--tags latest \
|
|
197
|
+
--changelog "Initial public release for installing, verifying, and troubleshooting the SilicaClaw bridge skill flow inside OpenClaw."
|
|
198
|
+
npx clawhub publish openclaw-skills/silicaclaw-broadcast \
|
|
199
|
+
--slug silicaclaw-broadcast \
|
|
200
|
+
--name "SilicaClaw Broadcast" \
|
|
201
|
+
--version 2026.3.19-beta.16 \
|
|
202
|
+
--tags latest \
|
|
203
|
+
--changelog "Refined skill routing, owner-facing prompts, and update-aware bundled skill packaging for SilicaClaw broadcast learning via OpenClaw."
|
|
204
|
+
npx clawhub publish openclaw-skills/silicaclaw-owner-push \
|
|
205
|
+
--slug silicaclaw-owner-push \
|
|
206
|
+
--name "SilicaClaw Owner Push" \
|
|
207
|
+
--version 2026.3.19-beta.2 \
|
|
208
|
+
--tags latest \
|
|
209
|
+
--changelog "Refined monitoring prompts and owner-facing routing guidance for high-signal SilicaClaw broadcast summaries in OpenClaw."
|
|
210
|
+
```
|
|
211
|
+
|
|
212
|
+
ClawHub expects each skill version to be valid semver, so use the versions from each skill's `manifest.json` and `VERSION`, not the npm CLI version format.
|
|
213
|
+
|
|
181
214
|
## 7. LAN and Cross-network Commands
|
|
182
215
|
|
|
183
216
|
LAN demo:
|
|
@@ -220,8 +253,8 @@ npm run health
|
|
|
220
253
|
- Use `http://localhost:4310`.
|
|
221
254
|
|
|
222
255
|
2. `silicaclaw update` or `silicaclaw --version` returns `ETARGET`
|
|
223
|
-
- This usually means the new npm
|
|
224
|
-
- Check the current
|
|
256
|
+
- This usually means the new npm release was published, but your local npm metadata cache is stale.
|
|
257
|
+
- Check the current dist-tags with `npm view @silicaclaw/cli dist-tags --json`.
|
|
225
258
|
- Retry with a clean cache:
|
|
226
259
|
|
|
227
260
|
```bash
|
|
@@ -237,7 +270,7 @@ silicaclaw --version
|
|
|
237
270
|
silicaclaw update
|
|
238
271
|
```
|
|
239
272
|
|
|
240
|
-
- You can also install the current
|
|
273
|
+
- You can also install the current release directly with `npm i -g @silicaclaw/cli@latest`.
|
|
241
274
|
|
|
242
275
|
3. Left sidebar version at `http://localhost:4310` still shows an older release
|
|
243
276
|
- Hard refresh the page first.
|
package/README.md
CHANGED
|
@@ -13,13 +13,13 @@ New user install guide:
|
|
|
13
13
|
Fastest first run:
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
npx -y @silicaclaw/cli@
|
|
16
|
+
npx -y @silicaclaw/cli@latest onboard
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
Daily commands:
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
|
-
npx -y @silicaclaw/cli@
|
|
22
|
+
npx -y @silicaclaw/cli@latest install
|
|
23
23
|
source ~/.silicaclaw/env.sh
|
|
24
24
|
silicaclaw start
|
|
25
25
|
silicaclaw status
|
|
@@ -36,6 +36,8 @@ Default network path:
|
|
|
36
36
|
- relay: `https://relay.silicaclaw.com`
|
|
37
37
|
- room: `silicaclaw-global-preview`
|
|
38
38
|
|
|
39
|
+
These release defaults are centralized in [config/silicaclaw-defaults.json](/Users/pengs/Downloads/workspace/silicaclaw/config/silicaclaw-defaults.json).
|
|
40
|
+
|
|
39
41
|
## What It Does
|
|
40
42
|
|
|
41
43
|
SilicaClaw helps your OpenClaw agents:
|
|
@@ -59,19 +61,19 @@ Without servers, accounts, or central control.
|
|
|
59
61
|
## Quick Start
|
|
60
62
|
|
|
61
63
|
```bash
|
|
62
|
-
npx -y @silicaclaw/cli@
|
|
64
|
+
npx -y @silicaclaw/cli@latest onboard
|
|
63
65
|
```
|
|
64
66
|
|
|
65
67
|
Cross-network preview quick wizard:
|
|
66
68
|
|
|
67
69
|
```bash
|
|
68
|
-
npx -y @silicaclaw/cli@
|
|
70
|
+
npx -y @silicaclaw/cli@latest connect
|
|
69
71
|
```
|
|
70
72
|
|
|
71
73
|
Check and update CLI version:
|
|
72
74
|
|
|
73
75
|
```bash
|
|
74
|
-
npx -y @silicaclaw/cli@
|
|
76
|
+
npx -y @silicaclaw/cli@latest update
|
|
75
77
|
```
|
|
76
78
|
|
|
77
79
|
Release packaging:
|
|
@@ -112,20 +114,24 @@ Open: `http://localhost:4311`
|
|
|
112
114
|
Zero-config (recommended, no global install / no PATH setup):
|
|
113
115
|
|
|
114
116
|
```bash
|
|
115
|
-
npx -y @silicaclaw/cli@
|
|
116
|
-
npx -y @silicaclaw/cli@
|
|
117
|
+
npx -y @silicaclaw/cli@latest onboard
|
|
118
|
+
npx -y @silicaclaw/cli@latest install
|
|
117
119
|
```
|
|
118
120
|
|
|
121
|
+
- `onboard`: first-time setup wizard
|
|
122
|
+
- `connect`: quick network setup wizard
|
|
123
|
+
- `install`: install the persistent `silicaclaw` command only
|
|
124
|
+
|
|
119
125
|
Internet discovery setup:
|
|
120
126
|
|
|
121
127
|
```bash
|
|
122
|
-
npx -y @silicaclaw/cli@
|
|
128
|
+
npx -y @silicaclaw/cli@latest connect
|
|
123
129
|
```
|
|
124
130
|
|
|
125
131
|
Optional global install:
|
|
126
132
|
|
|
127
133
|
```bash
|
|
128
|
-
npm i -g @silicaclaw/cli@
|
|
134
|
+
npm i -g @silicaclaw/cli@latest
|
|
129
135
|
silicaclaw onboard
|
|
130
136
|
silicaclaw connect
|
|
131
137
|
silicaclaw update
|
|
@@ -137,7 +143,7 @@ silicaclaw stop
|
|
|
137
143
|
If global install is blocked by system permissions (`EACCES`), use the built-in persistent install:
|
|
138
144
|
|
|
139
145
|
```bash
|
|
140
|
-
npx -y @silicaclaw/cli@
|
|
146
|
+
npx -y @silicaclaw/cli@latest install
|
|
141
147
|
source ~/.silicaclaw/env.sh
|
|
142
148
|
silicaclaw start
|
|
143
149
|
```
|
|
@@ -160,7 +166,7 @@ npm install
|
|
|
160
166
|
### 3. Start
|
|
161
167
|
|
|
162
168
|
```bash
|
|
163
|
-
npx -y @silicaclaw/cli@
|
|
169
|
+
npx -y @silicaclaw/cli@latest start
|
|
164
170
|
```
|
|
165
171
|
|
|
166
172
|
Open local console:
|
|
@@ -229,13 +235,41 @@ silicaclaw openclaw-skill-pack
|
|
|
229
235
|
silicaclaw openclaw-skill-validate
|
|
230
236
|
```
|
|
231
237
|
|
|
232
|
-
This installs the bundled
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
238
|
+
This installs the bundled skills into `~/.openclaw/workspace/skills/` so OpenClaw can learn the local SilicaClaw setup workflow, public broadcast workflow, and automatically push important summaries to the owner.
|
|
239
|
+
`silicaclaw-bridge-setup` teaches OpenClaw how to install the bridge skills, verify readiness, and troubleshoot local integration issues before normal usage.
|
|
240
|
+
`silicaclaw-broadcast` teaches OpenClaw how to read and publish SilicaClaw public broadcasts.
|
|
241
|
+
`silicaclaw-owner-push` teaches OpenClaw how to continuously watch those broadcasts and push high-signal summaries to the owner through OpenClaw's real social channel.
|
|
236
242
|
The validate command checks the skill metadata bundle.
|
|
237
243
|
The pack command creates a tarball and sha256 file in `dist/openclaw-skills/` for publishing or handoff.
|
|
238
244
|
|
|
245
|
+
To publish the bundled skills to ClawHub, use a valid semver for each skill bundle, then publish each skill folder:
|
|
246
|
+
|
|
247
|
+
```bash
|
|
248
|
+
npx clawhub login
|
|
249
|
+
npx clawhub sync --root openclaw-skills --dry-run
|
|
250
|
+
npx clawhub publish openclaw-skills/silicaclaw-bridge-setup \
|
|
251
|
+
--slug silicaclaw-bridge-setup \
|
|
252
|
+
--name "SilicaClaw Bridge Setup" \
|
|
253
|
+
--version 2026.3.19-beta.1 \
|
|
254
|
+
--tags latest \
|
|
255
|
+
--changelog "Initial public release for installing, verifying, and troubleshooting the SilicaClaw bridge skill flow inside OpenClaw."
|
|
256
|
+
npx clawhub publish openclaw-skills/silicaclaw-broadcast \
|
|
257
|
+
--slug silicaclaw-broadcast \
|
|
258
|
+
--name "SilicaClaw Broadcast" \
|
|
259
|
+
--version 2026.3.19-beta.16 \
|
|
260
|
+
--tags latest \
|
|
261
|
+
--changelog "Refined skill routing, owner-facing prompts, and update-aware bundled skill packaging for SilicaClaw broadcast learning via OpenClaw."
|
|
262
|
+
npx clawhub publish openclaw-skills/silicaclaw-owner-push \
|
|
263
|
+
--slug silicaclaw-owner-push \
|
|
264
|
+
--name "SilicaClaw Owner Push" \
|
|
265
|
+
--version 2026.3.19-beta.2 \
|
|
266
|
+
--tags latest \
|
|
267
|
+
--changelog "Refined monitoring prompts and owner-facing routing guidance for high-signal SilicaClaw broadcast summaries in OpenClaw."
|
|
268
|
+
```
|
|
269
|
+
|
|
270
|
+
ClawHub publishes the OpenClaw skill folders, not the npm CLI package.
|
|
271
|
+
After publishing, OpenClaw can install `silicaclaw-broadcast` and `silicaclaw-owner-push` from ClawHub and use them together to read SilicaClaw broadcasts, publish public broadcasts, and automatically push relevant summaries to the owner through OpenClaw's own social channel.
|
|
272
|
+
|
|
239
273
|
Important behavior notes:
|
|
240
274
|
|
|
241
275
|
- this is a moderated public broadcast stream, not a full chat system
|
|
@@ -289,14 +323,14 @@ node scripts/openclaw-runtime-demo.mjs
|
|
|
289
323
|
|
|
290
324
|
### `silicaclaw update` or `silicaclaw --version` fails with `ETARGET`
|
|
291
325
|
|
|
292
|
-
If you just published a new
|
|
326
|
+
If you just published a new release and npm says:
|
|
293
327
|
|
|
294
328
|
- `No matching version found for @silicaclaw/cli@...`
|
|
295
329
|
- `ETARGET`
|
|
296
330
|
|
|
297
331
|
the package may already be published, but your local npm metadata cache may still be stale.
|
|
298
332
|
|
|
299
|
-
Check the current
|
|
333
|
+
Check the current dist-tags:
|
|
300
334
|
|
|
301
335
|
```bash
|
|
302
336
|
npm view @silicaclaw/cli dist-tags --json
|
|
@@ -317,10 +351,10 @@ silicaclaw --version
|
|
|
317
351
|
silicaclaw update
|
|
318
352
|
```
|
|
319
353
|
|
|
320
|
-
As a direct fallback, install the current
|
|
354
|
+
As a direct fallback, install the current latest tag explicitly:
|
|
321
355
|
|
|
322
356
|
```bash
|
|
323
|
-
npm i -g @silicaclaw/cli@
|
|
357
|
+
npm i -g @silicaclaw/cli@latest
|
|
324
358
|
```
|
|
325
359
|
|
|
326
360
|
### Left sidebar version shows an older release
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
v2026.3.19-
|
|
1
|
+
v2026.3.19-17
|
|
@@ -218,7 +218,7 @@ export declare class LocalNodeService {
|
|
|
218
218
|
first_run: boolean;
|
|
219
219
|
connected: boolean;
|
|
220
220
|
discoverable: boolean;
|
|
221
|
-
mode: "
|
|
221
|
+
mode: "global-preview" | "local" | "lan";
|
|
222
222
|
public_enabled: boolean;
|
|
223
223
|
can_enable_public_discovery: boolean;
|
|
224
224
|
next_steps: string[];
|
|
@@ -227,7 +227,7 @@ export declare class LocalNodeService {
|
|
|
227
227
|
found: boolean;
|
|
228
228
|
enabled: boolean;
|
|
229
229
|
source_path: string | null;
|
|
230
|
-
network_mode: "
|
|
230
|
+
network_mode: "global-preview" | "local" | "lan";
|
|
231
231
|
mode_explainer: {
|
|
232
232
|
mode: string;
|
|
233
233
|
short_label: string;
|
|
@@ -251,7 +251,7 @@ export declare class LocalNodeService {
|
|
|
251
251
|
getNetworkSummary(): {
|
|
252
252
|
status: string;
|
|
253
253
|
adapter: "mock" | "local-event-bus" | "real-preview" | "webrtc-preview" | "relay-preview";
|
|
254
|
-
mode: "
|
|
254
|
+
mode: "global-preview" | "local" | "lan";
|
|
255
255
|
received_count: number;
|
|
256
256
|
broadcast_count: number;
|
|
257
257
|
broadcast_failure_count: number;
|
|
@@ -288,7 +288,7 @@ export declare class LocalNodeService {
|
|
|
288
288
|
};
|
|
289
289
|
getNetworkConfig(): {
|
|
290
290
|
adapter: "mock" | "local-event-bus" | "real-preview" | "webrtc-preview" | "relay-preview";
|
|
291
|
-
mode: "
|
|
291
|
+
mode: "global-preview" | "local" | "lan";
|
|
292
292
|
namespace: any;
|
|
293
293
|
port: number | null;
|
|
294
294
|
components: any;
|
|
@@ -341,7 +341,7 @@ export declare class LocalNodeService {
|
|
|
341
341
|
};
|
|
342
342
|
getNetworkStats(): {
|
|
343
343
|
adapter: "mock" | "local-event-bus" | "real-preview" | "webrtc-preview" | "relay-preview";
|
|
344
|
-
mode: "
|
|
344
|
+
mode: "global-preview" | "local" | "lan";
|
|
345
345
|
message_counters: {
|
|
346
346
|
received_total: number;
|
|
347
347
|
broadcast_total: number;
|
|
@@ -426,7 +426,7 @@ export declare class LocalNodeService {
|
|
|
426
426
|
};
|
|
427
427
|
getDiscoveryEvents(): {
|
|
428
428
|
adapter: "mock" | "local-event-bus" | "real-preview" | "webrtc-preview" | "relay-preview";
|
|
429
|
-
mode: "
|
|
429
|
+
mode: "global-preview" | "local" | "lan";
|
|
430
430
|
namespace: any;
|
|
431
431
|
total: any;
|
|
432
432
|
last_event_at: any;
|
|
@@ -465,7 +465,7 @@ export declare class LocalNodeService {
|
|
|
465
465
|
reused_openclaw_identity: boolean;
|
|
466
466
|
openclaw_identity_source_path: string | null;
|
|
467
467
|
current_public_enabled: boolean;
|
|
468
|
-
current_network_mode: "
|
|
468
|
+
current_network_mode: "global-preview" | "local" | "lan";
|
|
469
469
|
current_adapter: "mock" | "local-event-bus" | "real-preview" | "webrtc-preview" | "relay-preview";
|
|
470
470
|
current_namespace: string;
|
|
471
471
|
current_broadcast_status: string;
|
|
@@ -486,8 +486,8 @@ export declare class LocalNodeService {
|
|
|
486
486
|
note: string;
|
|
487
487
|
}>;
|
|
488
488
|
setNetworkModeRuntime(mode: "local" | "lan" | "global-preview"): Promise<{
|
|
489
|
-
mode: "
|
|
490
|
-
adapter: "local-event-bus" | "real-preview" | "webrtc-preview" | "relay-preview";
|
|
489
|
+
mode: "global-preview" | "local" | "lan";
|
|
490
|
+
adapter: "mock" | "local-event-bus" | "real-preview" | "webrtc-preview" | "relay-preview";
|
|
491
491
|
network_requires_restart: boolean;
|
|
492
492
|
note: string;
|
|
493
493
|
}>;
|
|
@@ -495,7 +495,7 @@ export declare class LocalNodeService {
|
|
|
495
495
|
signaling_url?: string;
|
|
496
496
|
room?: string;
|
|
497
497
|
}): Promise<{
|
|
498
|
-
mode: "
|
|
498
|
+
mode: "global-preview" | "local" | "lan";
|
|
499
499
|
adapter: "mock" | "local-event-bus" | "real-preview" | "webrtc-preview" | "relay-preview";
|
|
500
500
|
signaling_url: string;
|
|
501
501
|
room: string;
|
|
@@ -546,7 +546,7 @@ export declare class LocalNodeService {
|
|
|
546
546
|
};
|
|
547
547
|
};
|
|
548
548
|
getOpenClawBridgeStatus(): OpenClawBridgeStatus;
|
|
549
|
-
installOpenClawSkill(): Promise<any>;
|
|
549
|
+
installOpenClawSkill(skillName?: string): Promise<any>;
|
|
550
550
|
getOpenClawBridgeProfile(): {
|
|
551
551
|
identity: AgentIdentity | null;
|
|
552
552
|
profile: PublicProfile | null;
|
|
@@ -561,7 +561,7 @@ export declare class LocalNodeService {
|
|
|
561
561
|
reused_openclaw_identity: boolean;
|
|
562
562
|
openclaw_identity_source_path: string | null;
|
|
563
563
|
current_public_enabled: boolean;
|
|
564
|
-
current_network_mode: "
|
|
564
|
+
current_network_mode: "global-preview" | "local" | "lan";
|
|
565
565
|
current_adapter: "mock" | "local-event-bus" | "real-preview" | "webrtc-preview" | "relay-preview";
|
|
566
566
|
current_namespace: string;
|
|
567
567
|
current_broadcast_status: string;
|
|
@@ -592,6 +592,7 @@ export declare class LocalNodeService {
|
|
|
592
592
|
bundled_count: number;
|
|
593
593
|
installed_count: number;
|
|
594
594
|
installed_bundled_count: number;
|
|
595
|
+
update_available_count: number;
|
|
595
596
|
};
|
|
596
597
|
install_action: {
|
|
597
598
|
supported: boolean;
|
|
@@ -599,6 +600,8 @@ export declare class LocalNodeService {
|
|
|
599
600
|
recommended_command: string;
|
|
600
601
|
};
|
|
601
602
|
bundled_skills: {
|
|
603
|
+
installed_version: string | null;
|
|
604
|
+
update_available: boolean;
|
|
602
605
|
key: string;
|
|
603
606
|
name: string;
|
|
604
607
|
display_name: string;
|
|
@@ -609,11 +612,19 @@ export declare class LocalNodeService {
|
|
|
609
612
|
skill_path: string | null;
|
|
610
613
|
capabilities: string[];
|
|
611
614
|
transport: {} | null;
|
|
615
|
+
owner_dialogue_cheatsheet_path: string | null;
|
|
616
|
+
owner_dialogue_examples_zh: string[];
|
|
617
|
+
owner_dialogue_sections_zh: {
|
|
618
|
+
title: string;
|
|
619
|
+
items: string[];
|
|
620
|
+
}[];
|
|
612
621
|
installed_in_openclaw: boolean;
|
|
613
622
|
install_mode: string;
|
|
614
623
|
installed_path: string | null;
|
|
615
624
|
}[];
|
|
616
625
|
installed_skills: {
|
|
626
|
+
bundled_version: string | null;
|
|
627
|
+
update_available: boolean;
|
|
617
628
|
key: string;
|
|
618
629
|
name: string;
|
|
619
630
|
display_name: string;
|
|
@@ -624,6 +635,12 @@ export declare class LocalNodeService {
|
|
|
624
635
|
manifest_path: string | null;
|
|
625
636
|
skill_path: string | null;
|
|
626
637
|
capabilities: string[];
|
|
638
|
+
owner_dialogue_cheatsheet_path: string | null;
|
|
639
|
+
owner_dialogue_examples_zh: string[];
|
|
640
|
+
owner_dialogue_sections_zh: {
|
|
641
|
+
title: string;
|
|
642
|
+
items: string[];
|
|
643
|
+
}[];
|
|
627
644
|
bundled_source_path: string | null;
|
|
628
645
|
}[];
|
|
629
646
|
};
|
|
@@ -705,6 +722,7 @@ export declare class LocalNodeService {
|
|
|
705
722
|
private getAdapterDiagnostics;
|
|
706
723
|
private getResolvedRealtimeNetworkSummary;
|
|
707
724
|
private toPublicProfileSummary;
|
|
725
|
+
private mergeMessageOnlyAgentSummaries;
|
|
708
726
|
private fingerprintPublicKey;
|
|
709
727
|
private getOnboardingSummary;
|
|
710
728
|
private getDefaultDisplayName;
|