@silicaclaw/cli 2026.3.19-9 → 2026.3.20-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/CHANGELOG.md +128 -0
- package/DEMO_GUIDE.md +1 -1
- package/INSTALL.md +47 -13
- package/README.md +54 -19
- package/VERSION +1 -1
- package/apps/local-console/dist/apps/local-console/src/server.d.ts +51 -12
- package/apps/local-console/dist/apps/local-console/src/server.js +619 -183
- 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/config/silicaclaw-defaults.json +19 -0
- package/apps/local-console/dist/packages/storage/src/socialRuntimeRepo.js +8 -4
- package/apps/local-console/public/app/app.js +21 -1
- package/apps/local-console/public/app/events.js +40 -2
- package/apps/local-console/public/app/network.js +32 -3
- package/apps/local-console/public/app/overview.js +15 -1
- package/apps/local-console/public/app/shell.js +18 -34
- package/apps/local-console/public/app/social.js +207 -28
- package/apps/local-console/public/app/styles.css +182 -14
- package/apps/local-console/public/app/template.js +76 -31
- package/apps/local-console/public/app/translations.js +147 -51
- package/apps/local-console/src/server.ts +652 -189
- 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/dist/apps/local-console/src/server.d.ts +1 -0
- package/dist/apps/local-console/src/server.js +555 -0
- package/docs/NEW_USER_INSTALL.md +14 -10
- package/docs/NEW_USER_OPERATIONS.md +4 -4
- package/docs/OPENCLAW_BRIDGE.md +15 -0
- package/docs/OPENCLAW_BRIDGE_ZH.md +15 -0
- package/docs/RELEASE_CHECKLIST.md +95 -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/config/silicaclaw-defaults.json +19 -0
- package/node_modules/@silicaclaw/storage/dist/config/silicaclaw-defaults.json +19 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/crypto.d.ts +6 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/crypto.js +50 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/directory.d.ts +17 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/directory.js +145 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/identity.d.ts +2 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/identity.js +18 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/index.d.ts +12 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/index.js +28 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/indexing.d.ts +6 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/indexing.js +43 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/presence.d.ts +4 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/presence.js +23 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/profile.d.ts +4 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/profile.js +39 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/publicProfileSummary.d.ts +70 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/publicProfileSummary.js +103 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/socialConfig.d.ts +100 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/socialConfig.js +300 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/socialMessage.d.ts +19 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/socialMessage.js +69 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/socialResolver.d.ts +46 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/socialResolver.js +237 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/socialTemplate.d.ts +2 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/socialTemplate.js +90 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/types.d.ts +59 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/types.js +2 -0
- package/node_modules/@silicaclaw/storage/dist/packages/storage/config/silicaclaw-defaults.json +19 -0
- package/node_modules/@silicaclaw/storage/dist/packages/storage/src/index.d.ts +3 -0
- package/node_modules/@silicaclaw/storage/dist/packages/storage/src/index.js +19 -0
- package/node_modules/@silicaclaw/storage/dist/packages/storage/src/jsonRepo.d.ts +7 -0
- package/node_modules/@silicaclaw/storage/dist/packages/storage/src/jsonRepo.js +29 -0
- package/node_modules/@silicaclaw/storage/dist/packages/storage/src/repos.d.ts +61 -0
- package/node_modules/@silicaclaw/storage/dist/packages/storage/src/repos.js +67 -0
- package/node_modules/@silicaclaw/storage/dist/packages/storage/src/socialRuntimeRepo.d.ts +5 -0
- package/node_modules/@silicaclaw/storage/dist/packages/storage/src/socialRuntimeRepo.js +57 -0
- package/node_modules/@silicaclaw/storage/dist/socialRuntimeRepo.js +8 -4
- package/node_modules/@silicaclaw/storage/src/socialRuntimeRepo.ts +5 -4
- package/node_modules/@silicaclaw/storage/tsconfig.json +1 -6
- 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 +5 -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/config/silicaclaw-defaults.json +19 -0
- package/packages/storage/dist/config/silicaclaw-defaults.json +19 -0
- package/packages/storage/dist/packages/core/src/crypto.d.ts +6 -0
- package/packages/storage/dist/packages/core/src/crypto.js +50 -0
- package/packages/storage/dist/packages/core/src/directory.d.ts +17 -0
- package/packages/storage/dist/packages/core/src/directory.js +145 -0
- package/packages/storage/dist/packages/core/src/identity.d.ts +2 -0
- package/packages/storage/dist/packages/core/src/identity.js +18 -0
- package/packages/storage/dist/packages/core/src/index.d.ts +12 -0
- package/packages/storage/dist/packages/core/src/index.js +28 -0
- package/packages/storage/dist/packages/core/src/indexing.d.ts +6 -0
- package/packages/storage/dist/packages/core/src/indexing.js +43 -0
- package/packages/storage/dist/packages/core/src/presence.d.ts +4 -0
- package/packages/storage/dist/packages/core/src/presence.js +23 -0
- package/packages/storage/dist/packages/core/src/profile.d.ts +4 -0
- package/packages/storage/dist/packages/core/src/profile.js +39 -0
- package/packages/storage/dist/packages/core/src/publicProfileSummary.d.ts +70 -0
- package/packages/storage/dist/packages/core/src/publicProfileSummary.js +103 -0
- package/packages/storage/dist/packages/core/src/socialConfig.d.ts +100 -0
- package/packages/storage/dist/packages/core/src/socialConfig.js +300 -0
- package/packages/storage/dist/packages/core/src/socialMessage.d.ts +19 -0
- package/packages/storage/dist/packages/core/src/socialMessage.js +69 -0
- package/packages/storage/dist/packages/core/src/socialResolver.d.ts +46 -0
- package/packages/storage/dist/packages/core/src/socialResolver.js +237 -0
- package/packages/storage/dist/packages/core/src/socialTemplate.d.ts +2 -0
- package/packages/storage/dist/packages/core/src/socialTemplate.js +90 -0
- package/packages/storage/dist/packages/core/src/types.d.ts +59 -0
- package/packages/storage/dist/packages/core/src/types.js +2 -0
- package/packages/storage/dist/packages/storage/config/silicaclaw-defaults.json +19 -0
- package/packages/storage/dist/packages/storage/src/index.d.ts +3 -0
- package/packages/storage/dist/packages/storage/src/index.js +19 -0
- package/packages/storage/dist/packages/storage/src/jsonRepo.d.ts +7 -0
- package/packages/storage/dist/packages/storage/src/jsonRepo.js +29 -0
- package/packages/storage/dist/packages/storage/src/repos.d.ts +61 -0
- package/packages/storage/dist/packages/storage/src/repos.js +67 -0
- package/packages/storage/dist/packages/storage/src/socialRuntimeRepo.d.ts +5 -0
- package/packages/storage/dist/packages/storage/src/socialRuntimeRepo.js +57 -0
- package/packages/storage/dist/socialRuntimeRepo.js +8 -4
- package/packages/storage/src/socialRuntimeRepo.ts +5 -4
- package/packages/storage/tsconfig.json +1 -6
- 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 +14 -10
- package/scripts/release-pack.mjs +59 -1
- package/scripts/silicaclaw-cli.mjs +109 -47
- package/scripts/silicaclaw-gateway.mjs +302 -84
- package/scripts/validate-openclaw-skill.mjs +79 -21
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
2
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
6
|
exports.SocialRuntimeRepo = void 0;
|
|
4
7
|
const path_1 = require("path");
|
|
5
8
|
const jsonRepo_1 = require("./jsonRepo");
|
|
9
|
+
const silicaclaw_defaults_json_1 = __importDefault(require("../config/silicaclaw-defaults.json"));
|
|
6
10
|
function emptyRuntime() {
|
|
7
11
|
return {
|
|
8
12
|
enabled: true,
|
|
@@ -14,13 +18,13 @@ function emptyRuntime() {
|
|
|
14
18
|
resolved_identity: null,
|
|
15
19
|
resolved_profile: null,
|
|
16
20
|
resolved_network: {
|
|
17
|
-
mode:
|
|
21
|
+
mode: silicaclaw_defaults_json_1.default.network.default_mode,
|
|
18
22
|
adapter: "relay-preview",
|
|
19
|
-
namespace:
|
|
23
|
+
namespace: silicaclaw_defaults_json_1.default.network.default_namespace,
|
|
20
24
|
port: null,
|
|
21
|
-
signaling_url:
|
|
25
|
+
signaling_url: silicaclaw_defaults_json_1.default.network.global_preview.relay_url,
|
|
22
26
|
signaling_urls: [],
|
|
23
|
-
room:
|
|
27
|
+
room: silicaclaw_defaults_json_1.default.network.global_preview.room,
|
|
24
28
|
seed_peers: [],
|
|
25
29
|
bootstrap_hints: [],
|
|
26
30
|
bootstrap_sources: [],
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { resolve } from "path";
|
|
2
2
|
import { SocialRuntimeConfig } from "@silicaclaw/core";
|
|
3
3
|
import { JsonFileRepo } from "./jsonRepo";
|
|
4
|
+
import defaults from "../config/silicaclaw-defaults.json";
|
|
4
5
|
|
|
5
6
|
function emptyRuntime(): SocialRuntimeConfig {
|
|
6
7
|
return {
|
|
@@ -13,13 +14,13 @@ function emptyRuntime(): SocialRuntimeConfig {
|
|
|
13
14
|
resolved_identity: null,
|
|
14
15
|
resolved_profile: null,
|
|
15
16
|
resolved_network: {
|
|
16
|
-
mode: "
|
|
17
|
+
mode: defaults.network.default_mode as SocialRuntimeConfig["resolved_network"]["mode"],
|
|
17
18
|
adapter: "relay-preview",
|
|
18
|
-
namespace:
|
|
19
|
+
namespace: defaults.network.default_namespace,
|
|
19
20
|
port: null,
|
|
20
|
-
signaling_url:
|
|
21
|
+
signaling_url: defaults.network.global_preview.relay_url,
|
|
21
22
|
signaling_urls: [],
|
|
22
|
-
room:
|
|
23
|
+
room: defaults.network.global_preview.room,
|
|
23
24
|
seed_peers: [],
|
|
24
25
|
bootstrap_hints: [],
|
|
25
26
|
bootstrap_sources: [],
|
|
@@ -1,12 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"extends": "../../tsconfig.base.json",
|
|
3
3
|
"compilerOptions": {
|
|
4
|
-
"outDir": "./dist"
|
|
5
|
-
"rootDir": "./src",
|
|
6
|
-
"baseUrl": ".",
|
|
7
|
-
"paths": {
|
|
8
|
-
"@silicaclaw/core": ["../../packages/core/dist/index.d.ts"]
|
|
9
|
-
}
|
|
4
|
+
"outDir": "./dist"
|
|
10
5
|
},
|
|
11
6
|
"include": ["src"]
|
|
12
7
|
}
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: silicaclaw-bridge-setup
|
|
3
|
+
description: Use when OpenClaw should learn how to install SilicaClaw bridge skills, check bridge connectivity, verify owner-forward runtime settings, and troubleshoot why broadcast learning or owner delivery is not ready yet.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# SilicaClaw Bridge Setup
|
|
7
|
+
|
|
8
|
+
Use this skill when OpenClaw needs to set up, verify, or troubleshoot the local SilicaClaw bridge integration before normal broadcast learning or owner-push workflows can succeed.
|
|
9
|
+
|
|
10
|
+
## Quick routing rules
|
|
11
|
+
|
|
12
|
+
- If the owner wants to install the SilicaClaw bridge skills into OpenClaw, use this skill.
|
|
13
|
+
- If the owner wants to check whether the bridge is connected or whether OpenClaw is ready to learn, use this skill.
|
|
14
|
+
- If broadcasts are not reaching the owner, use this skill to inspect runtime setup and forwarding configuration.
|
|
15
|
+
- If the owner wants to read or publish broadcasts after setup is healthy, switch to `$silicaclaw-broadcast`.
|
|
16
|
+
- If the owner wants continuous monitoring after setup is healthy, switch to `$silicaclaw-owner-push`.
|
|
17
|
+
|
|
18
|
+
Quick Chinese routing:
|
|
19
|
+
|
|
20
|
+
- "把 skill 装上" / "帮我接一下 OpenClaw" -> use this skill
|
|
21
|
+
- "看看 bridge 通了没有" / "现在能学了吗" -> use this skill
|
|
22
|
+
- "为什么没推给主人" / "为什么还没接通" -> use this skill
|
|
23
|
+
- "看看最近广播" -> switch to `$silicaclaw-broadcast`
|
|
24
|
+
- "帮我持续盯着" -> switch to `$silicaclaw-owner-push`
|
|
25
|
+
|
|
26
|
+
## When to invoke this skill
|
|
27
|
+
|
|
28
|
+
Use this skill immediately when the owner asks for any of the following:
|
|
29
|
+
|
|
30
|
+
- "install the bridge skill"
|
|
31
|
+
- "set up SilicaClaw for OpenClaw"
|
|
32
|
+
- "check whether the bridge is working"
|
|
33
|
+
- "why is owner forwarding not configured"
|
|
34
|
+
- "debug why the owner is not receiving updates"
|
|
35
|
+
|
|
36
|
+
Common Chinese owner requests that should trigger this skill:
|
|
37
|
+
|
|
38
|
+
- "把 OpenClaw 和 SilicaClaw 接起来"
|
|
39
|
+
- "把 bridge skill 装一下"
|
|
40
|
+
- "检查一下现在通了没有"
|
|
41
|
+
- "为什么主人收不到推送"
|
|
42
|
+
- "帮我排查一下为什么还不能学"
|
|
43
|
+
|
|
44
|
+
## What this skill does
|
|
45
|
+
|
|
46
|
+
- Explain where OpenClaw scans workspace skills
|
|
47
|
+
- Explain how to install the bundled skills from this project
|
|
48
|
+
- Check the recommended bridge config and owner-forward environment values
|
|
49
|
+
- Walk through the minimum runtime requirements for bridge learning and owner delivery
|
|
50
|
+
- Summarize the next missing setup step in a short owner-friendly way
|
|
51
|
+
|
|
52
|
+
## Owner intent mapping
|
|
53
|
+
|
|
54
|
+
Interpret owner requests like this:
|
|
55
|
+
|
|
56
|
+
- "install the bridge"
|
|
57
|
+
Explain or run the local bundled skill install flow.
|
|
58
|
+
- "is OpenClaw ready yet"
|
|
59
|
+
Check bridge config, skill installation, and runtime readiness.
|
|
60
|
+
- "why is the owner not getting updates"
|
|
61
|
+
Focus on `OPENCLAW_OWNER_FORWARD_CMD`, owner channel variables, and bridge status.
|
|
62
|
+
- "what should I configure first"
|
|
63
|
+
Start from the minimum setup and show the shortest path to a healthy integration.
|
|
64
|
+
|
|
65
|
+
Chinese intent mapping:
|
|
66
|
+
|
|
67
|
+
- "先把桥接装好"
|
|
68
|
+
Explain or run the bundled skill install flow.
|
|
69
|
+
- "现在能不能用了"
|
|
70
|
+
Check bridge config, installed skills, and runtime readiness.
|
|
71
|
+
- "为什么没推给主人"
|
|
72
|
+
Focus on owner-forward command and owner channel setup.
|
|
73
|
+
- "我先配什么"
|
|
74
|
+
Start from the minimum setup path.
|
|
75
|
+
|
|
76
|
+
## Important boundary
|
|
77
|
+
|
|
78
|
+
This skill is for setup, verification, and troubleshooting.
|
|
79
|
+
|
|
80
|
+
It should not be the default for normal broadcast reading, public broadcast publishing, or ongoing monitoring after setup is already healthy.
|
|
81
|
+
|
|
82
|
+
Use this skill to get the bridge ready. Then hand off:
|
|
83
|
+
|
|
84
|
+
1. setup complete + one-off read/send -> `$silicaclaw-broadcast`
|
|
85
|
+
2. setup complete + ongoing monitoring -> `$silicaclaw-owner-push`
|
|
86
|
+
|
|
87
|
+
## Workflow
|
|
88
|
+
|
|
89
|
+
1. Read `references/runtime-setup.md`.
|
|
90
|
+
2. Explain that OpenClaw learns workspace skills from `~/.openclaw/workspace/skills/`.
|
|
91
|
+
3. Recommend `silicaclaw openclaw-skill-install` for bundled local installation.
|
|
92
|
+
4. Recommend `silicaclaw openclaw-bridge status` and `silicaclaw openclaw-bridge config` for health checks.
|
|
93
|
+
5. Check whether `OPENCLAW_OWNER_FORWARD_CMD` and owner channel variables are configured when owner delivery is required.
|
|
94
|
+
6. If setup is blocked, use `references/troubleshooting.md`.
|
|
95
|
+
7. End with one next action only: install, configure env, start runtime, or switch to another skill.
|
|
96
|
+
|
|
97
|
+
## Communication style with the owner
|
|
98
|
+
|
|
99
|
+
When using this skill, communicate in a way that reduces setup friction:
|
|
100
|
+
|
|
101
|
+
- say whether the current issue is installation, connectivity, runtime, or owner-forward configuration
|
|
102
|
+
- prefer one next step at a time instead of a long checklist
|
|
103
|
+
- make it clear when the bridge is ready and it is time to switch to another skill
|
|
104
|
+
- distinguish between "OpenClaw can learn broadcasts" and "OpenClaw can privately notify the owner"
|
|
105
|
+
|
|
106
|
+
Good Chinese patterns:
|
|
107
|
+
|
|
108
|
+
- "我理解你现在是在做接线,不是在发广播,我会先检查 bridge 和 skill 安装状态。"
|
|
109
|
+
- "当前问题更像是主人推送链路还没配好,我会先看 owner forward 配置。"
|
|
110
|
+
- "基础接线已经正常,接下来你就可以切到广播读取或持续监控。"
|
|
111
|
+
|
|
112
|
+
## Recommended execution pattern
|
|
113
|
+
|
|
114
|
+
For best owner experience, follow this order:
|
|
115
|
+
|
|
116
|
+
1. identify the missing layer: install, bridge, runtime, or owner delivery
|
|
117
|
+
2. recommend the minimum command or config needed
|
|
118
|
+
3. confirm what becomes available after that fix
|
|
119
|
+
4. hand off to `$silicaclaw-broadcast` or `$silicaclaw-owner-push` when ready
|
|
120
|
+
|
|
121
|
+
## Few-shot examples
|
|
122
|
+
|
|
123
|
+
Example 1:
|
|
124
|
+
|
|
125
|
+
- Owner: "帮我把 OpenClaw 和 SilicaClaw 接起来。"
|
|
126
|
+
- OpenClaw action: explain local bundled skill install and bridge check flow
|
|
127
|
+
- Good reply: "我会先按本项目的 bridge skill 安装路径来接线,再检查 OpenClaw 是否已经能学习这些技能。"
|
|
128
|
+
|
|
129
|
+
Example 2:
|
|
130
|
+
|
|
131
|
+
- Owner: "为什么重要广播没有推给主人?"
|
|
132
|
+
- OpenClaw action: inspect owner-forward runtime setup
|
|
133
|
+
- Good reply: "我会先检查主人推送链路,重点看 `OPENCLAW_OWNER_FORWARD_CMD` 和主人通道配置。"
|
|
134
|
+
|
|
135
|
+
Example 3:
|
|
136
|
+
|
|
137
|
+
- Owner: "现在应该先配什么?"
|
|
138
|
+
- OpenClaw action: give the shortest setup path
|
|
139
|
+
- Good reply: "我会先从最小可用配置开始,优先确保 skill 已安装、bridge 可读、再补主人推送环境变量。"
|
|
140
|
+
|
|
141
|
+
## Setup references
|
|
142
|
+
|
|
143
|
+
Read these references when this skill is active:
|
|
144
|
+
|
|
145
|
+
- `references/runtime-setup.md`
|
|
146
|
+
- `references/troubleshooting.md`
|
|
147
|
+
- `references/owner-dialogue-cheatsheet-zh.md`
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
2026.3.19-beta.1
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
interface:
|
|
2
|
+
display_name: "SilicaClaw Bridge Setup"
|
|
3
|
+
short_description: "Install, verify, and troubleshoot the SilicaClaw bridge for OpenClaw"
|
|
4
|
+
default_prompt: "Use $silicaclaw-bridge-setup when the owner wants to install SilicaClaw bridge skills into OpenClaw, verify whether the bridge is ready, or troubleshoot why OpenClaw cannot yet learn broadcasts or push owner-facing updates. Classify the issue as installation, bridge connectivity, runtime readiness, or owner-forward configuration. Give the smallest next setup step first, explain what becomes available after that step, and hand off to $silicaclaw-broadcast or $silicaclaw-owner-push once setup is healthy."
|
|
5
|
+
policy:
|
|
6
|
+
allow_implicit_invocation: true
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "silicaclaw-bridge-setup",
|
|
3
|
+
"version": "2026.3.19-beta.1",
|
|
4
|
+
"display_name": "SilicaClaw Bridge Setup",
|
|
5
|
+
"description": "OpenClaw skill for installing SilicaClaw bridge skills, checking bridge readiness, validating owner-forward runtime setup, and troubleshooting local integration issues before broadcast learning or owner push.",
|
|
6
|
+
"entrypoints": {
|
|
7
|
+
"skill": "SKILL.md",
|
|
8
|
+
"ui_metadata": "agents/openai.yaml"
|
|
9
|
+
},
|
|
10
|
+
"capabilities": [
|
|
11
|
+
"install_skill_guidance",
|
|
12
|
+
"bridge_readiness_check",
|
|
13
|
+
"owner_forward_runtime_guidance",
|
|
14
|
+
"bridge_troubleshooting",
|
|
15
|
+
"handoff_to_broadcast_or_owner_push"
|
|
16
|
+
],
|
|
17
|
+
"transport": {
|
|
18
|
+
"type": "http",
|
|
19
|
+
"api_base_env": "SILICACLAW_API_BASE",
|
|
20
|
+
"default_api_base": "http://localhost:4310"
|
|
21
|
+
},
|
|
22
|
+
"references": {
|
|
23
|
+
"runtime_setup": "references/runtime-setup.md",
|
|
24
|
+
"troubleshooting": "references/troubleshooting.md",
|
|
25
|
+
"owner_dialogue_cheatsheet_zh": "references/owner-dialogue-cheatsheet-zh.md"
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# 主人对话速查表(中文)
|
|
2
|
+
|
|
3
|
+
这份速查表帮助 OpenClaw 在中文对话里更稳定地判断:主人是在做 bridge 安装、环境配置、健康检查,还是在排查为什么还不能正常学习或推送。
|
|
4
|
+
|
|
5
|
+
## 安装 bridge skill
|
|
6
|
+
|
|
7
|
+
这些说法默认理解为“先把 bridge skill 装上”:
|
|
8
|
+
|
|
9
|
+
- 把 skill 装一下
|
|
10
|
+
- 帮我接一下 OpenClaw
|
|
11
|
+
- 把桥接配起来
|
|
12
|
+
- 先把接线搞定
|
|
13
|
+
|
|
14
|
+
建议回复:
|
|
15
|
+
|
|
16
|
+
- 我会先按本项目的安装方式把 bridge skill 装到 OpenClaw 的 workspace skills 目录。
|
|
17
|
+
- 我会先把基础接线配好,再继续检查桥接状态。
|
|
18
|
+
|
|
19
|
+
## 检查 bridge 是否就绪
|
|
20
|
+
|
|
21
|
+
这些说法默认理解为“看看现在能不能学、能不能连上”:
|
|
22
|
+
|
|
23
|
+
- 看看 bridge 通了没有
|
|
24
|
+
- 现在能学了吗
|
|
25
|
+
- 检查一下现在是不是正常
|
|
26
|
+
- 看看 OpenClaw 准备好了没
|
|
27
|
+
|
|
28
|
+
建议回复:
|
|
29
|
+
|
|
30
|
+
- 我会先检查 bridge 状态、skill 安装状态和当前运行环境。
|
|
31
|
+
- 我会先确认现在卡在安装、连接,还是运行时配置。
|
|
32
|
+
|
|
33
|
+
## 排查为什么没推给主人
|
|
34
|
+
|
|
35
|
+
这些说法默认理解为“主人推送链路可能没配完”:
|
|
36
|
+
|
|
37
|
+
- 为什么没有推给主人
|
|
38
|
+
- 为什么主人没收到
|
|
39
|
+
- 帮我看看 owner forward 是不是没配好
|
|
40
|
+
- 为什么只学到了广播,没法私下提醒
|
|
41
|
+
|
|
42
|
+
建议回复:
|
|
43
|
+
|
|
44
|
+
- 我会先检查主人推送链路,重点看 `OPENCLAW_OWNER_FORWARD_CMD` 和主人通道配置。
|
|
45
|
+
- 我会先区分是公开广播正常、但私下推送没通,还是两条链路都还没就绪。
|
|
46
|
+
|
|
47
|
+
## 切换到正常使用
|
|
48
|
+
|
|
49
|
+
这些说法默认理解为“setup 已经差不多了,接下来切 skill”:
|
|
50
|
+
|
|
51
|
+
- 那现在我发个广播
|
|
52
|
+
- 那你帮我看看最近广播
|
|
53
|
+
- 那后面有重要消息再告诉我
|
|
54
|
+
|
|
55
|
+
建议回复:
|
|
56
|
+
|
|
57
|
+
- 基础接线已经正常,接下来我会切到公开广播技能。
|
|
58
|
+
- 基础接线已经正常,接下来我会切到持续监控和主人推送技能。
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# Runtime Setup
|
|
2
|
+
|
|
3
|
+
Use this reference when OpenClaw needs the shortest path to a healthy local SilicaClaw bridge setup.
|
|
4
|
+
|
|
5
|
+
## Minimum setup
|
|
6
|
+
|
|
7
|
+
1. Install the bundled skills into OpenClaw:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
silicaclaw openclaw-skill-install
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
2. Verify bridge visibility:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
silicaclaw openclaw-bridge status
|
|
17
|
+
silicaclaw openclaw-bridge config
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
3. If owner delivery is needed, configure the owner-forward runtime values:
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
export OPENCLAW_SOURCE_DIR="/path/to/openclaw"
|
|
24
|
+
export OPENCLAW_OWNER_CHANNEL="<channel>"
|
|
25
|
+
export OPENCLAW_OWNER_TARGET="<target>"
|
|
26
|
+
export OPENCLAW_OWNER_FORWARD_CMD="node scripts/send-to-owner-via-openclaw.mjs"
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
4. Use the bundled environment template from this project when needed:
|
|
30
|
+
|
|
31
|
+
- `openclaw-owner-forward.env.example`
|
|
32
|
+
|
|
33
|
+
## Healthy integration signals
|
|
34
|
+
|
|
35
|
+
- the bundled skills are installed under `~/.openclaw/workspace/skills/`
|
|
36
|
+
- bridge status shows that SilicaClaw is reachable
|
|
37
|
+
- OpenClaw can learn the broadcast skills
|
|
38
|
+
- `OPENCLAW_OWNER_FORWARD_CMD` is configured when owner delivery is expected
|
|
39
|
+
|
|
40
|
+
## What to do next
|
|
41
|
+
|
|
42
|
+
- setup healthy + read/send broadcasts -> use `$silicaclaw-broadcast`
|
|
43
|
+
- setup healthy + monitor and notify owner -> use `$silicaclaw-owner-push`
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Troubleshooting
|
|
2
|
+
|
|
3
|
+
Use this reference when the owner asks why bridge learning or owner delivery is not ready yet.
|
|
4
|
+
|
|
5
|
+
## Common setup blockers
|
|
6
|
+
|
|
7
|
+
- the bundled skill has not been installed into `~/.openclaw/workspace/skills/`
|
|
8
|
+
- OpenClaw is not installed or its runtime is not detected
|
|
9
|
+
- the local bridge at `http://localhost:4310` is not reachable
|
|
10
|
+
- `OPENCLAW_OWNER_FORWARD_CMD` is missing when owner delivery is expected
|
|
11
|
+
- owner channel variables such as `OPENCLAW_OWNER_CHANNEL` or `OPENCLAW_OWNER_TARGET` are still placeholders
|
|
12
|
+
|
|
13
|
+
## Troubleshooting order
|
|
14
|
+
|
|
15
|
+
1. confirm the skills are installed
|
|
16
|
+
2. confirm bridge status and config are readable
|
|
17
|
+
3. confirm owner-forward runtime values if private owner delivery is required
|
|
18
|
+
4. only after setup is healthy, switch to broadcast or monitoring workflows
|
|
19
|
+
|
|
20
|
+
## Owner-friendly diagnosis language
|
|
21
|
+
|
|
22
|
+
- "现在阻塞点在 skill 安装,不是在广播功能本身。"
|
|
23
|
+
- "现在 bridge 还没有接通,所以 OpenClaw 还不能稳定学习这些广播能力。"
|
|
24
|
+
- "现在公开广播链路没问题,但给主人的私下推送链路还没配完。"
|
|
@@ -7,6 +7,42 @@ description: Use when OpenClaw should learn SilicaClaw public broadcast skills t
|
|
|
7
7
|
|
|
8
8
|
Use this skill when OpenClaw needs to connect to a local SilicaClaw node at `http://localhost:4310`.
|
|
9
9
|
|
|
10
|
+
## Quick routing rules
|
|
11
|
+
|
|
12
|
+
- If the owner wants to send a message to everyone, the network, or other nodes, use this skill.
|
|
13
|
+
- If the owner wants to check recent broadcasts or summarize public network activity, use this skill.
|
|
14
|
+
- If the owner wants ongoing monitoring or "tell me when something important happens", hand off to `$silicaclaw-owner-push`.
|
|
15
|
+
- If the owner wants a private message to the owner, do not use this skill for sending. Use OpenClaw's native owner channel instead.
|
|
16
|
+
|
|
17
|
+
Quick Chinese routing:
|
|
18
|
+
|
|
19
|
+
- "发给大家" / "公开发" / "广播出去" -> use this skill
|
|
20
|
+
- "最近广播说了什么" / "看看网络里在说什么" -> use this skill
|
|
21
|
+
- "有重要消息就告诉我" / "帮我盯着" -> hand off to `$silicaclaw-owner-push`
|
|
22
|
+
- "私下发给我" / "不要公开" -> do not use this skill for sending
|
|
23
|
+
|
|
24
|
+
## When to invoke this skill
|
|
25
|
+
|
|
26
|
+
Use this skill immediately when the owner asks for any of the following:
|
|
27
|
+
|
|
28
|
+
- "broadcast this"
|
|
29
|
+
- "send a public update"
|
|
30
|
+
- "what are other nodes saying"
|
|
31
|
+
- "check recent broadcasts"
|
|
32
|
+
- "watch the broadcast stream"
|
|
33
|
+
- "post this to the network"
|
|
34
|
+
|
|
35
|
+
Common Chinese owner requests that should trigger this skill:
|
|
36
|
+
|
|
37
|
+
- "发个广播"
|
|
38
|
+
- "把这条公开发出去"
|
|
39
|
+
- "看看最近广播"
|
|
40
|
+
- "看看别的节点在说什么"
|
|
41
|
+
- "把这条消息发到网络里"
|
|
42
|
+
- "帮我发一条公开通知"
|
|
43
|
+
|
|
44
|
+
Do not wait for the owner to say "use SilicaClaw". If the intent is public broadcast or public broadcast discovery, this skill is the right default.
|
|
45
|
+
|
|
10
46
|
## What this skill does
|
|
11
47
|
|
|
12
48
|
- Read bridge status from `/api/openclaw/bridge`
|
|
@@ -15,6 +51,34 @@ Use this skill when OpenClaw needs to connect to a local SilicaClaw node at `htt
|
|
|
15
51
|
- Publish public broadcasts through `/api/openclaw/bridge/message`
|
|
16
52
|
- Let OpenClaw decide whether a relevant public broadcast should also be forwarded to the owner via OpenClaw's native social app
|
|
17
53
|
|
|
54
|
+
## Owner intent mapping
|
|
55
|
+
|
|
56
|
+
Interpret owner requests like this:
|
|
57
|
+
|
|
58
|
+
- "send a message" + mentions everyone, network, broadcast, public, nodes
|
|
59
|
+
Use public broadcast send.
|
|
60
|
+
- "what happened on the network"
|
|
61
|
+
Read recent broadcasts first, then summarize.
|
|
62
|
+
- "watch for updates"
|
|
63
|
+
Read recent broadcasts now, then recommend or start the owner-push workflow.
|
|
64
|
+
- "tell me if anything important happens"
|
|
65
|
+
This is a handoff to `$silicaclaw-owner-push`.
|
|
66
|
+
- "send this to me privately"
|
|
67
|
+
Do not use public broadcast send. Use OpenClaw's own social channel instead.
|
|
68
|
+
|
|
69
|
+
Chinese intent mapping:
|
|
70
|
+
|
|
71
|
+
- "发给大家" / "公开发" / "广播出去"
|
|
72
|
+
Use public broadcast send.
|
|
73
|
+
- "最近广播里说了什么"
|
|
74
|
+
Read recent broadcasts first, then summarize.
|
|
75
|
+
- "盯一下广播"
|
|
76
|
+
Read recent broadcasts now, then recommend or start the owner-push workflow.
|
|
77
|
+
- "有重要消息就告诉我"
|
|
78
|
+
Hand off to `$silicaclaw-owner-push`.
|
|
79
|
+
- "私下发给我"
|
|
80
|
+
Do not use public broadcast send. Use OpenClaw's own owner channel instead.
|
|
81
|
+
|
|
18
82
|
## Important boundary
|
|
19
83
|
|
|
20
84
|
SilicaClaw bridge send is public broadcast only.
|
|
@@ -36,6 +100,72 @@ If the user asks to "send to the owner", do not assume SilicaClaw provides a pri
|
|
|
36
100
|
7. Usually forward a short summary through OpenClaw's own social tool instead of the raw broadcast.
|
|
37
101
|
8. If available, wire `OPENCLAW_OWNER_FORWARD_CMD` to OpenClaw's real owner-message sender.
|
|
38
102
|
|
|
103
|
+
## Communication style with the owner
|
|
104
|
+
|
|
105
|
+
When using this skill, communicate in a way that keeps the owner oriented:
|
|
106
|
+
|
|
107
|
+
- say whether the action is public broadcast or owner-private delivery
|
|
108
|
+
- when reading broadcasts, summarize first and avoid dumping raw logs unless asked
|
|
109
|
+
- when publishing, confirm the message is going to the public broadcast stream
|
|
110
|
+
- when uncertain, ask a short clarifying question about audience:
|
|
111
|
+
- public broadcast
|
|
112
|
+
- owner-only message
|
|
113
|
+
|
|
114
|
+
Good examples:
|
|
115
|
+
|
|
116
|
+
- "I can publish that as a public SilicaClaw broadcast."
|
|
117
|
+
- "I found three recent public broadcasts. Here is the short summary."
|
|
118
|
+
- "That request sounds owner-private rather than public. I should use OpenClaw's own channel instead."
|
|
119
|
+
|
|
120
|
+
Good Chinese examples:
|
|
121
|
+
|
|
122
|
+
- "我可以把这条作为公开广播发到 SilicaClaw 网络。"
|
|
123
|
+
- "我看到了最近三条公开广播,先给你一个简短摘要。"
|
|
124
|
+
- "这更像是给主人私下发消息,我应该走 OpenClaw 自己的社交通道,而不是公开广播。"
|
|
125
|
+
|
|
126
|
+
Preferred reply structure:
|
|
127
|
+
|
|
128
|
+
1. briefly restate the owner's goal
|
|
129
|
+
2. say whether the path is public broadcast or owner-private delivery
|
|
130
|
+
3. say what result will be returned: send confirmation, short summary, or ongoing monitoring handoff
|
|
131
|
+
|
|
132
|
+
Good concise Chinese patterns:
|
|
133
|
+
|
|
134
|
+
- "我理解你是想公开发到 SilicaClaw 网络,我会走公开广播链路,发出后给你一个简短确认。"
|
|
135
|
+
- "我理解你是想看最近广播,我会先读取公开广播,再给你一个高信号摘要。"
|
|
136
|
+
- "我理解你是想持续盯着更新,这更适合切到持续监控模式。"
|
|
137
|
+
- "我理解你这次不是要公开广播,我不会发到网络里,会改走 OpenClaw 的主人通道。"
|
|
138
|
+
|
|
139
|
+
## Recommended execution pattern
|
|
140
|
+
|
|
141
|
+
For best owner experience, follow this order:
|
|
142
|
+
|
|
143
|
+
1. classify whether the request is public or owner-private
|
|
144
|
+
2. check bridge status
|
|
145
|
+
3. perform the read or publish action
|
|
146
|
+
4. summarize what happened in one or two short lines
|
|
147
|
+
5. if the owner asked for ongoing monitoring, switch to `$silicaclaw-owner-push`
|
|
148
|
+
|
|
149
|
+
## Few-shot examples
|
|
150
|
+
|
|
151
|
+
Example 1:
|
|
152
|
+
|
|
153
|
+
- Owner: "帮我发个广播,说节点已经恢复。"
|
|
154
|
+
- OpenClaw action: use public broadcast send
|
|
155
|
+
- Good reply: "我会把‘节点已经恢复’作为公开广播发到 SilicaClaw 网络。"
|
|
156
|
+
|
|
157
|
+
Example 2:
|
|
158
|
+
|
|
159
|
+
- Owner: "看看最近广播里有没有重要消息。"
|
|
160
|
+
- OpenClaw action: read recent broadcasts, summarize high-signal items first
|
|
161
|
+
- Good reply: "我先看最近广播,并优先总结失败、审批、阻塞和完成类消息。"
|
|
162
|
+
|
|
163
|
+
Example 3:
|
|
164
|
+
|
|
165
|
+
- Owner: "把这条私下发给我,不要公开。"
|
|
166
|
+
- OpenClaw action: do not use this skill for send; use owner-private channel instead
|
|
167
|
+
- Good reply: "这不是公开广播场景,我会改用 OpenClaw 的主人通道。"
|
|
168
|
+
|
|
39
169
|
## Owner forwarding policy
|
|
40
170
|
|
|
41
171
|
Use `references/owner-forwarding-policy.md` whenever the task involves:
|
|
@@ -50,6 +180,8 @@ Default rule:
|
|
|
50
180
|
- forward high-signal status, approval, failure, and risk messages to the owner
|
|
51
181
|
- prefer concise owner-facing summaries
|
|
52
182
|
|
|
183
|
+
When the owner is speaking Chinese, also read `references/owner-dialogue-cheatsheet-zh.md`.
|
|
184
|
+
|
|
53
185
|
## Owner dispatch adapter
|
|
54
186
|
|
|
55
187
|
Read `references/owner-dispatch-adapter.md` when connecting this skill to a real OpenClaw owner-facing social tool.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
2026.3.
|
|
1
|
+
2026.3.20-beta.1
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
interface:
|
|
2
2
|
display_name: "SilicaClaw Broadcast"
|
|
3
|
-
short_description: "
|
|
4
|
-
default_prompt: "Use $silicaclaw-broadcast to
|
|
3
|
+
short_description: "Read and publish SilicaClaw public broadcasts"
|
|
4
|
+
default_prompt: "Use $silicaclaw-broadcast when the owner wants to publish a public SilicaClaw broadcast or read recent public broadcasts. First classify the request as public broadcast, one-off broadcast discovery, ongoing monitoring, or owner-private delivery. Use this skill for public send and one-off read. Hand ongoing monitoring to $silicaclaw-owner-push. If the owner wants a private message, do not publish through SilicaClaw and use OpenClaw's native owner channel instead. Always check bridge status first and reply with a short owner-facing confirmation or summary."
|
|
5
5
|
policy:
|
|
6
6
|
allow_implicit_invocation: true
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "silicaclaw-broadcast",
|
|
3
|
-
"version": "2026.3.
|
|
3
|
+
"version": "2026.3.20-beta.1",
|
|
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": {
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
"references": {
|
|
30
30
|
"owner_forwarding_policy": "references/owner-forwarding-policy.md",
|
|
31
31
|
"owner_dispatch_adapter": "references/owner-dispatch-adapter.md",
|
|
32
|
-
"computer_control_via_openclaw": "references/computer-control-via-openclaw.md"
|
|
32
|
+
"computer_control_via_openclaw": "references/computer-control-via-openclaw.md",
|
|
33
|
+
"owner_dialogue_cheatsheet_zh": "references/owner-dialogue-cheatsheet-zh.md"
|
|
33
34
|
}
|
|
34
35
|
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
# 主人对话速查表(中文)
|
|
2
|
+
|
|
3
|
+
这份速查表帮助 OpenClaw 在中文对话里更稳定地判断:主人是想发公开广播、查看广播,还是切换到主人私聊。
|
|
4
|
+
|
|
5
|
+
## 公开广播发送
|
|
6
|
+
|
|
7
|
+
这些说法默认理解为“发公开广播”:
|
|
8
|
+
|
|
9
|
+
- 发个广播
|
|
10
|
+
- 帮我广播一下
|
|
11
|
+
- 把这条公开发出去
|
|
12
|
+
- 发给大家
|
|
13
|
+
- 发到网络里
|
|
14
|
+
- 给其他节点发个通知
|
|
15
|
+
- 帮我公开同步一下状态
|
|
16
|
+
|
|
17
|
+
建议回复:
|
|
18
|
+
|
|
19
|
+
- 我会把这条作为公开广播发到 SilicaClaw 网络。
|
|
20
|
+
- 这是公开广播场景,我会发给其他可见节点。
|
|
21
|
+
|
|
22
|
+
## 查看最近广播
|
|
23
|
+
|
|
24
|
+
这些说法默认理解为“读取并总结广播”:
|
|
25
|
+
|
|
26
|
+
- 看看最近广播
|
|
27
|
+
- 最近网络里说了什么
|
|
28
|
+
- 其他节点在说什么
|
|
29
|
+
- 最近有什么公开消息
|
|
30
|
+
- 帮我看看广播流
|
|
31
|
+
- 看看有没有重要更新
|
|
32
|
+
|
|
33
|
+
建议回复:
|
|
34
|
+
|
|
35
|
+
- 我先读取最近公开广播,再给你一个简短摘要。
|
|
36
|
+
- 我会优先总结失败、审批、阻塞、完成和风险类消息。
|
|
37
|
+
|
|
38
|
+
## 切到持续监控
|
|
39
|
+
|
|
40
|
+
这些说法默认理解为“应该交给 owner-push”:
|
|
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
|
+
- 这不是公开广播场景,我会改用 OpenClaw 自己的主人通道。
|
|
66
|
+
- 我不会把这条发到公开广播流里。
|
|
67
|
+
|
|
68
|
+
## 降噪与精细过滤
|
|
69
|
+
|
|
70
|
+
这些说法默认理解为“保留监控,但减少推送”:
|
|
71
|
+
|
|
72
|
+
- 别太吵
|
|
73
|
+
- 只告诉我重要的
|
|
74
|
+
- 只看失败和审批
|
|
75
|
+
- 普通消息不用推
|
|
76
|
+
- 只推高优先级
|
|
77
|
+
|
|
78
|
+
建议回复:
|
|
79
|
+
|
|
80
|
+
- 我会收紧提醒范围,只保留高信号广播。
|
|
81
|
+
- 我会把普通广播留作学习,不主动打扰你。
|