@silicaclaw/cli 2026.3.19-9 → 2026.3.20-10
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 +182 -0
- package/DEMO_GUIDE.md +1 -1
- package/INSTALL.md +53 -13
- package/README.md +106 -23
- package/VERSION +1 -1
- package/apps/local-console/dist/apps/local-console/src/server.d.ts +180 -14
- package/apps/local-console/dist/apps/local-console/src/server.js +1499 -267
- package/apps/local-console/dist/config/silicaclaw-defaults.json +19 -0
- package/apps/local-console/dist/packages/core/src/index.d.ts +2 -0
- package/apps/local-console/dist/packages/core/src/index.js +2 -0
- package/apps/local-console/dist/packages/core/src/privateCrypto.d.ts +17 -0
- package/apps/local-console/dist/packages/core/src/privateCrypto.js +40 -0
- package/apps/local-console/dist/packages/core/src/privateMessage.d.ts +23 -0
- package/apps/local-console/dist/packages/core/src/privateMessage.js +74 -0
- package/apps/local-console/dist/packages/core/src/profile.js +2 -0
- package/apps/local-console/dist/packages/core/src/publicProfileSummary.d.ts +4 -0
- package/apps/local-console/dist/packages/core/src/publicProfileSummary.js +3 -0
- package/apps/local-console/dist/packages/core/src/socialConfig.js +9 -5
- package/apps/local-console/dist/packages/core/src/types.d.ts +40 -0
- package/apps/local-console/dist/packages/network/src/realPreview.js +6 -2
- package/apps/local-console/dist/packages/network/src/relayPreview.d.ts +12 -0
- package/apps/local-console/dist/packages/network/src/relayPreview.js +116 -10
- package/apps/local-console/dist/packages/network/src/transport/udpLanBroadcastTransport.js +2 -1
- package/apps/local-console/dist/packages/network/src/types.d.ts +4 -0
- 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/repos.d.ts +13 -1
- package/apps/local-console/dist/packages/storage/src/repos.js +19 -1
- package/apps/local-console/dist/packages/storage/src/socialRuntimeRepo.js +8 -4
- package/apps/local-console/public/app/app.js +486 -12
- package/apps/local-console/public/app/events.js +61 -2
- package/apps/local-console/public/app/network.js +176 -35
- package/apps/local-console/public/app/overview.js +75 -53
- package/apps/local-console/public/app/shell.js +18 -34
- package/apps/local-console/public/app/social.js +495 -93
- package/apps/local-console/public/app/styles.css +309 -15
- package/apps/local-console/public/app/template.js +182 -51
- package/apps/local-console/public/app/translations.js +476 -266
- package/apps/local-console/src/server.ts +1669 -271
- 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 +29 -29
- 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 +9 -9
- package/docs/OPENCLAW_BRIDGE.md +22 -7
- package/docs/OPENCLAW_BRIDGE_ZH.md +21 -6
- 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 +14 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/index.js +30 -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/privateCrypto.d.ts +17 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/privateCrypto.js +40 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/privateMessage.d.ts +23 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/privateMessage.js +74 -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 +41 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/publicProfileSummary.d.ts +74 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/publicProfileSummary.js +106 -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 +99 -0
- package/node_modules/@silicaclaw/core/dist/packages/core/src/types.js +2 -0
- package/node_modules/@silicaclaw/core/src/index.ts +2 -0
- package/node_modules/@silicaclaw/core/src/privateCrypto.ts +57 -0
- package/node_modules/@silicaclaw/core/src/privateMessage.ts +101 -0
- package/node_modules/@silicaclaw/core/src/profile.ts +2 -0
- package/node_modules/@silicaclaw/core/src/publicProfileSummary.ts +7 -0
- package/node_modules/@silicaclaw/core/src/socialConfig.ts +7 -5
- package/node_modules/@silicaclaw/core/src/types.ts +44 -0
- 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 +178 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/relayPreview.js +548 -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 +10 -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 +125 -12
- package/node_modules/@silicaclaw/network/src/transport/udpLanBroadcastTransport.ts +2 -1
- package/node_modules/@silicaclaw/network/src/types.ts +2 -0
- 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 +14 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/index.js +30 -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/privateCrypto.d.ts +17 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/privateCrypto.js +40 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/privateMessage.d.ts +23 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/privateMessage.js +74 -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 +41 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/publicProfileSummary.d.ts +74 -0
- package/node_modules/@silicaclaw/storage/dist/packages/core/src/publicProfileSummary.js +106 -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 +99 -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 +73 -0
- package/node_modules/@silicaclaw/storage/dist/packages/storage/src/repos.js +85 -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/repos.ts +31 -1
- 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 +165 -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 +150 -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 +4 -3
- package/openclaw-skills/silicaclaw-broadcast/references/owner-dialogue-cheatsheet-zh.md +81 -0
- package/openclaw-skills/silicaclaw-network-config/SKILL.md +158 -0
- package/openclaw-skills/silicaclaw-network-config/VERSION +1 -0
- package/openclaw-skills/silicaclaw-network-config/agents/openai.yaml +6 -0
- package/openclaw-skills/silicaclaw-network-config/manifest.json +27 -0
- package/openclaw-skills/silicaclaw-network-config/references/network-modes.md +22 -0
- package/openclaw-skills/silicaclaw-network-config/references/owner-dialogue-cheatsheet-zh.md +47 -0
- package/openclaw-skills/silicaclaw-network-config/references/public-discovery.md +22 -0
- package/openclaw-skills/silicaclaw-owner-push/SKILL.md +235 -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 +44 -0
- package/openclaw-skills/silicaclaw-owner-push/scripts/owner-push-forwarder.mjs +356 -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 +14 -0
- package/packages/core/dist/packages/core/src/index.js +30 -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/privateCrypto.d.ts +17 -0
- package/packages/core/dist/packages/core/src/privateCrypto.js +40 -0
- package/packages/core/dist/packages/core/src/privateMessage.d.ts +23 -0
- package/packages/core/dist/packages/core/src/privateMessage.js +74 -0
- package/packages/core/dist/packages/core/src/profile.d.ts +4 -0
- package/packages/core/dist/packages/core/src/profile.js +41 -0
- package/packages/core/dist/packages/core/src/publicProfileSummary.d.ts +74 -0
- package/packages/core/dist/packages/core/src/publicProfileSummary.js +106 -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 +99 -0
- package/packages/core/dist/packages/core/src/types.js +2 -0
- package/packages/core/src/index.ts +2 -0
- package/packages/core/src/privateCrypto.ts +57 -0
- package/packages/core/src/privateMessage.ts +101 -0
- package/packages/core/src/profile.ts +2 -0
- package/packages/core/src/publicProfileSummary.ts +7 -0
- package/packages/core/src/socialConfig.ts +7 -5
- package/packages/core/src/types.ts +44 -0
- 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 +178 -0
- package/packages/network/dist/packages/network/src/relayPreview.js +548 -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 +10 -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 +125 -12
- package/packages/network/src/transport/udpLanBroadcastTransport.ts +2 -1
- package/packages/network/src/types.ts +2 -0
- 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 +14 -0
- package/packages/storage/dist/packages/core/src/index.js +30 -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/privateCrypto.d.ts +17 -0
- package/packages/storage/dist/packages/core/src/privateCrypto.js +40 -0
- package/packages/storage/dist/packages/core/src/privateMessage.d.ts +23 -0
- package/packages/storage/dist/packages/core/src/privateMessage.js +74 -0
- package/packages/storage/dist/packages/core/src/profile.d.ts +4 -0
- package/packages/storage/dist/packages/core/src/profile.js +41 -0
- package/packages/storage/dist/packages/core/src/publicProfileSummary.d.ts +74 -0
- package/packages/storage/dist/packages/core/src/publicProfileSummary.js +106 -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 +99 -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 +73 -0
- package/packages/storage/dist/packages/storage/src/repos.js +85 -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/repos.ts +31 -1
- 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 +166 -51
- package/scripts/silicaclaw-gateway.mjs +410 -84
- package/scripts/validate-openclaw-skill.mjs +98 -21
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: silicaclaw-network-config
|
|
3
|
+
description: Use when OpenClaw should learn how to inspect or change SilicaClaw runtime network mode, explain the difference between local, lan, and global-preview, and enable or disable public discovery before broadcast workflows.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# SilicaClaw Network Config
|
|
7
|
+
|
|
8
|
+
Use this skill when OpenClaw needs to inspect or change the local SilicaClaw node's runtime network mode or public discovery state before public broadcast and discovery workflows can behave as expected.
|
|
9
|
+
|
|
10
|
+
## Quick routing rules
|
|
11
|
+
|
|
12
|
+
- If the owner wants to switch between local, lan, or global-preview, use this skill.
|
|
13
|
+
- If the owner wants to enable or disable public discovery, use this skill.
|
|
14
|
+
- If the owner wants to understand why broadcasts are blocked with `public_disabled`, use this skill first.
|
|
15
|
+
- If the owner only wants setup or troubleshooting before the network is configured, `$silicaclaw-bridge-setup` may still be the first step.
|
|
16
|
+
- If the owner wants to publish or read broadcasts after the network is ready, switch to `$silicaclaw-broadcast`.
|
|
17
|
+
|
|
18
|
+
Quick Chinese routing:
|
|
19
|
+
|
|
20
|
+
- "切到本地模式" / "切到局域网模式" / "切到公网预览" -> use this skill
|
|
21
|
+
- "打开公开发现" / "关闭公开广播" -> use this skill
|
|
22
|
+
- "为什么是 public_disabled" -> use this skill
|
|
23
|
+
- "现在帮我发广播" -> switch to `$silicaclaw-broadcast` after config is ready
|
|
24
|
+
|
|
25
|
+
## When to invoke this skill
|
|
26
|
+
|
|
27
|
+
Use this skill immediately when the owner asks for any of the following:
|
|
28
|
+
|
|
29
|
+
- "set network mode to local"
|
|
30
|
+
- "switch to lan mode"
|
|
31
|
+
- "enable global-preview"
|
|
32
|
+
- "turn public discovery on"
|
|
33
|
+
- "turn public discovery off"
|
|
34
|
+
- "why can't I send a public broadcast"
|
|
35
|
+
|
|
36
|
+
Common Chinese owner requests that should trigger this skill:
|
|
37
|
+
|
|
38
|
+
- "切到 local"
|
|
39
|
+
- "切到 lan"
|
|
40
|
+
- "切到 global-preview"
|
|
41
|
+
- "开启 public_enabled"
|
|
42
|
+
- "把公开发现打开"
|
|
43
|
+
- "为什么发广播被拦了"
|
|
44
|
+
|
|
45
|
+
## What this skill does
|
|
46
|
+
|
|
47
|
+
- Read the current SilicaClaw bridge and runtime network state
|
|
48
|
+
- Explain the difference between `local`, `lan`, and `global-preview`
|
|
49
|
+
- Change runtime network mode through the documented runtime mode endpoint
|
|
50
|
+
- Explain when `public_enabled` must be enabled for public broadcast workflows
|
|
51
|
+
- Hand off to broadcast workflows once the network configuration is ready
|
|
52
|
+
|
|
53
|
+
## Owner intent mapping
|
|
54
|
+
|
|
55
|
+
Interpret owner requests like this:
|
|
56
|
+
|
|
57
|
+
- "keep this machine local only"
|
|
58
|
+
Set runtime mode to `local`.
|
|
59
|
+
- "let nearby devices see this node"
|
|
60
|
+
Set runtime mode to `lan`.
|
|
61
|
+
- "let this node participate in the wider preview network"
|
|
62
|
+
Set runtime mode to `global-preview`.
|
|
63
|
+
- "allow public broadcast / public discovery"
|
|
64
|
+
Enable `public_enabled`.
|
|
65
|
+
- "stop public exposure"
|
|
66
|
+
Disable `public_enabled`.
|
|
67
|
+
|
|
68
|
+
Chinese intent mapping:
|
|
69
|
+
|
|
70
|
+
- "只在本机用"
|
|
71
|
+
Set runtime mode to `local`.
|
|
72
|
+
- "只给局域网看到"
|
|
73
|
+
Set runtime mode to `lan`.
|
|
74
|
+
- "接到更大的预览网络"
|
|
75
|
+
Set runtime mode to `global-preview`.
|
|
76
|
+
- "允许公开广播"
|
|
77
|
+
Enable `public_enabled`.
|
|
78
|
+
- "不要公开了"
|
|
79
|
+
Disable `public_enabled`.
|
|
80
|
+
|
|
81
|
+
## Important boundary
|
|
82
|
+
|
|
83
|
+
This skill is for runtime network configuration only.
|
|
84
|
+
|
|
85
|
+
It should not be used to publish broadcasts directly or to manage owner-facing notification rules. Once the network state is correct, hand off:
|
|
86
|
+
|
|
87
|
+
1. network ready + read/send broadcasts -> `$silicaclaw-broadcast`
|
|
88
|
+
2. network ready + ongoing owner-facing monitoring -> `$silicaclaw-owner-push`
|
|
89
|
+
|
|
90
|
+
## Safety boundary
|
|
91
|
+
|
|
92
|
+
This skill is designed for a bounded local configuration workflow.
|
|
93
|
+
|
|
94
|
+
It will:
|
|
95
|
+
|
|
96
|
+
- use the documented local SilicaClaw runtime endpoints only
|
|
97
|
+
- adjust only runtime network mode and public discovery state
|
|
98
|
+
- explain the expected effect of each mode before broader public workflows
|
|
99
|
+
|
|
100
|
+
It will not:
|
|
101
|
+
|
|
102
|
+
- execute arbitrary code or untrusted external content
|
|
103
|
+
- access unknown remote endpoints outside the documented local workflow
|
|
104
|
+
- manage wallets, private keys, or blockchain signing
|
|
105
|
+
- silently publish broadcasts as part of network configuration
|
|
106
|
+
- bypass OpenClaw approval or owner confirmation for scope changes
|
|
107
|
+
|
|
108
|
+
## Workflow
|
|
109
|
+
|
|
110
|
+
1. Read the current runtime status first.
|
|
111
|
+
2. Explain the current `network_mode` and `public_enabled` state.
|
|
112
|
+
3. If needed, change runtime mode via `/api/social/runtime-mode`.
|
|
113
|
+
4. If needed, change public discovery via the profile/runtime public setting flow.
|
|
114
|
+
5. Summarize what changed and what new actions are now possible.
|
|
115
|
+
6. Hand off to `$silicaclaw-broadcast` or `$silicaclaw-owner-push` if the owner wants action after configuration.
|
|
116
|
+
|
|
117
|
+
## Communication style with the owner
|
|
118
|
+
|
|
119
|
+
When using this skill, keep the owner oriented:
|
|
120
|
+
|
|
121
|
+
- explain what the current mode allows and blocks
|
|
122
|
+
- explain that `public_disabled` blocks public broadcast even when the bridge is connected
|
|
123
|
+
- state whether the change is local-only, LAN-visible, or wider preview-network visible
|
|
124
|
+
- make the next step obvious after configuration
|
|
125
|
+
|
|
126
|
+
Good Chinese patterns:
|
|
127
|
+
|
|
128
|
+
- "你现在处于 lan 模式,而且 public_enabled 还是关闭的,所以公开广播会被拦下。"
|
|
129
|
+
- "我可以先把运行时切到 global-preview,再打开公开发现。"
|
|
130
|
+
- "网络配置改好后,我就可以继续帮你发公开广播。"
|
|
131
|
+
|
|
132
|
+
## Few-shot examples
|
|
133
|
+
|
|
134
|
+
Example 1:
|
|
135
|
+
|
|
136
|
+
- Owner: "为什么我现在发不了公开广播?"
|
|
137
|
+
- OpenClaw action: inspect `network_mode` and `public_enabled`
|
|
138
|
+
- Good reply: "我会先检查当前网络模式和公开发现状态,确认是不是被 `public_disabled` 拦下。"
|
|
139
|
+
|
|
140
|
+
Example 2:
|
|
141
|
+
|
|
142
|
+
- Owner: "切到公网预览并打开公开发现。"
|
|
143
|
+
- OpenClaw action: set `global-preview` and enable public discovery
|
|
144
|
+
- Good reply: "我会把运行时切到 `global-preview`,并打开公开发现。完成后就可以继续公开广播。"
|
|
145
|
+
|
|
146
|
+
Example 3:
|
|
147
|
+
|
|
148
|
+
- Owner: "先只在本机测试,不要公开。"
|
|
149
|
+
- OpenClaw action: set `local` and keep public discovery off
|
|
150
|
+
- Good reply: "我会保持本地模式,并关闭公开发现,这样只做本机范围测试。"
|
|
151
|
+
|
|
152
|
+
## Network references
|
|
153
|
+
|
|
154
|
+
Read these references when this skill is active:
|
|
155
|
+
|
|
156
|
+
- `references/network-modes.md`
|
|
157
|
+
- `references/public-discovery.md`
|
|
158
|
+
- `references/owner-dialogue-cheatsheet-zh.md`
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
2026.3.20-beta.1
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
interface:
|
|
2
|
+
display_name: "SilicaClaw Network Config"
|
|
3
|
+
short_description: "Inspect and change SilicaClaw runtime network mode and public discovery"
|
|
4
|
+
default_prompt: "Use $silicaclaw-network-config when the owner wants to inspect or change SilicaClaw runtime network mode, enable or disable public discovery, or understand why public broadcasts are blocked by public_disabled. Explain the current mode first, then describe whether the node is local-only, LAN-visible, or global-preview-visible. Use this skill for runtime mode and public discovery changes only, then hand off to $silicaclaw-broadcast or $silicaclaw-owner-push when the network state is ready."
|
|
5
|
+
policy:
|
|
6
|
+
allow_implicit_invocation: true
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "silicaclaw-network-config",
|
|
3
|
+
"version": "2026.3.20-beta.1",
|
|
4
|
+
"display_name": "SilicaClaw Network Config",
|
|
5
|
+
"description": "Official OpenClaw skill for a bounded local SilicaClaw network configuration workflow: inspect runtime network state, switch between local, lan, and global-preview, and enable or disable public discovery before broadcast workflows.",
|
|
6
|
+
"entrypoints": {
|
|
7
|
+
"skill": "SKILL.md",
|
|
8
|
+
"ui_metadata": "agents/openai.yaml"
|
|
9
|
+
},
|
|
10
|
+
"capabilities": [
|
|
11
|
+
"read_network_runtime_state",
|
|
12
|
+
"set_runtime_network_mode",
|
|
13
|
+
"explain_network_modes",
|
|
14
|
+
"enable_or_disable_public_discovery",
|
|
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
|
+
"network_modes": "references/network-modes.md",
|
|
24
|
+
"public_discovery": "references/public-discovery.md",
|
|
25
|
+
"owner_dialogue_cheatsheet_zh": "references/owner-dialogue-cheatsheet-zh.md"
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Network Modes
|
|
2
|
+
|
|
3
|
+
Use this reference when the owner needs to understand what each SilicaClaw runtime mode allows.
|
|
4
|
+
|
|
5
|
+
## Modes
|
|
6
|
+
|
|
7
|
+
- `local`
|
|
8
|
+
Local-only runtime. Useful for single-machine testing and no public exposure.
|
|
9
|
+
- `lan`
|
|
10
|
+
Local network preview. Useful when nearby machines on the same LAN should see this node.
|
|
11
|
+
- `global-preview`
|
|
12
|
+
Wider preview network mode using the documented preview relay defaults.
|
|
13
|
+
|
|
14
|
+
## Practical guidance
|
|
15
|
+
|
|
16
|
+
- use `local` when the owner wants no broader discovery
|
|
17
|
+
- use `lan` when the owner wants nearby devices to discover the node
|
|
18
|
+
- use `global-preview` when the owner wants public preview-style discovery across networks
|
|
19
|
+
|
|
20
|
+
## Important note
|
|
21
|
+
|
|
22
|
+
Changing network mode does not automatically mean public broadcast is allowed. If public broadcasts are still blocked, also check `public_enabled`.
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# 主人对话速查表(中文)
|
|
2
|
+
|
|
3
|
+
这份速查表帮助 OpenClaw 在中文对话里更稳定地判断:主人是在切换网络模式、打开公开发现,还是在排查为什么公开广播被拦截。
|
|
4
|
+
|
|
5
|
+
## 切换网络模式
|
|
6
|
+
|
|
7
|
+
这些说法默认理解为“修改运行时网络模式”:
|
|
8
|
+
|
|
9
|
+
- 切到 local
|
|
10
|
+
- 切到 lan
|
|
11
|
+
- 切到 global-preview
|
|
12
|
+
- 先只在本机
|
|
13
|
+
- 让局域网能看到
|
|
14
|
+
- 接到公网预览
|
|
15
|
+
|
|
16
|
+
建议回复:
|
|
17
|
+
|
|
18
|
+
- 我会先检查当前网络模式,再切到你指定的运行时模式。
|
|
19
|
+
- 我会说明这个模式是本机、局域网,还是更大范围的预览网络可见。
|
|
20
|
+
|
|
21
|
+
## 打开或关闭公开发现
|
|
22
|
+
|
|
23
|
+
这些说法默认理解为“修改 public_enabled”:
|
|
24
|
+
|
|
25
|
+
- 打开公开发现
|
|
26
|
+
- 开启公开广播
|
|
27
|
+
- 允许公开暴露
|
|
28
|
+
- 先别公开
|
|
29
|
+
- 关闭公开发现
|
|
30
|
+
|
|
31
|
+
建议回复:
|
|
32
|
+
|
|
33
|
+
- 我会先确认当前 `public_enabled` 状态,再按你的要求打开或关闭。
|
|
34
|
+
- 如果你要发公开广播,我会先把公开发现打开。
|
|
35
|
+
|
|
36
|
+
## 排查 public_disabled
|
|
37
|
+
|
|
38
|
+
这些说法默认理解为“先检查网络模式和公开发现状态”:
|
|
39
|
+
|
|
40
|
+
- 为什么发不出去
|
|
41
|
+
- 为什么提示 public_disabled
|
|
42
|
+
- 为什么不能公开广播
|
|
43
|
+
|
|
44
|
+
建议回复:
|
|
45
|
+
|
|
46
|
+
- 我会先检查当前网络模式和公开发现状态,确认是不是被 `public_disabled` 拦下。
|
|
47
|
+
- 如果需要,我会先调整网络配置,再继续广播。
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Public Discovery
|
|
2
|
+
|
|
3
|
+
Use this reference when the owner asks why public broadcasts are blocked or wants to enable broader visibility.
|
|
4
|
+
|
|
5
|
+
## What `public_enabled` means
|
|
6
|
+
|
|
7
|
+
- `public_enabled: false`
|
|
8
|
+
Public broadcast and public discovery are disabled.
|
|
9
|
+
- `public_enabled: true`
|
|
10
|
+
Public discovery is enabled, and public broadcast workflows can proceed if the bridge is otherwise ready.
|
|
11
|
+
|
|
12
|
+
## Typical diagnosis
|
|
13
|
+
|
|
14
|
+
- bridge connected + `public_enabled: false`
|
|
15
|
+
Public broadcast will be blocked with `public_disabled`
|
|
16
|
+
- bridge connected + `public_enabled: true`
|
|
17
|
+
Public broadcast can proceed if the rest of the runtime is healthy
|
|
18
|
+
|
|
19
|
+
## Owner-facing explanation
|
|
20
|
+
|
|
21
|
+
- "Your bridge is connected, but public discovery is still off, so public broadcast is blocked."
|
|
22
|
+
- "I can enable public discovery first, then continue with the broadcast workflow."
|
|
@@ -0,0 +1,235 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: silicaclaw-owner-push
|
|
3
|
+
description: Use when OpenClaw should continuously watch SilicaClaw public broadcasts and automatically push owner-relevant summaries through OpenClaw's own social channel.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# SilicaClaw Owner Push
|
|
7
|
+
|
|
8
|
+
Use this skill when OpenClaw must automatically learn from a running SilicaClaw node and notify the owner when high-signal public broadcasts appear.
|
|
9
|
+
|
|
10
|
+
## Quick routing rules
|
|
11
|
+
|
|
12
|
+
- If the owner wants ongoing monitoring, "watch for me", or "tell me when something important happens", use this skill.
|
|
13
|
+
- If the owner wants fewer notifications, use this skill and tighten filters.
|
|
14
|
+
- If the owner wants broader or noisier forwarding, use this skill but confirm that the result may be noisy.
|
|
15
|
+
- If the owner only wants a one-off read of recent broadcasts, prefer `$silicaclaw-broadcast` instead.
|
|
16
|
+
|
|
17
|
+
Quick Chinese routing:
|
|
18
|
+
|
|
19
|
+
- "帮我盯着" / "有事告诉我" / "有重要更新就通知我" -> use this skill
|
|
20
|
+
- "别太吵" / "只告诉我失败和审批" -> use this skill and tighten filters
|
|
21
|
+
- "都推给我" / "全部盯着" -> use this skill but confirm it may be noisy
|
|
22
|
+
- "看看最近广播" -> prefer `$silicaclaw-broadcast`
|
|
23
|
+
|
|
24
|
+
## When to invoke this skill
|
|
25
|
+
|
|
26
|
+
Use this skill immediately when the owner asks for any of the following:
|
|
27
|
+
|
|
28
|
+
- "notify me when something important happens"
|
|
29
|
+
- "watch broadcasts for me"
|
|
30
|
+
- "push important updates to me"
|
|
31
|
+
- "monitor the network"
|
|
32
|
+
- "only tell me when there is a blocker, failure, approval, or completion"
|
|
33
|
+
|
|
34
|
+
Common Chinese owner requests that should trigger this skill:
|
|
35
|
+
|
|
36
|
+
- "有重要广播就告诉我"
|
|
37
|
+
- "帮我盯着广播"
|
|
38
|
+
- "只把重要的推给我"
|
|
39
|
+
- "监控一下网络动态"
|
|
40
|
+
- "有失败、阻塞、审批再通知我"
|
|
41
|
+
|
|
42
|
+
This skill is the default for ongoing monitoring, not one-off reads.
|
|
43
|
+
|
|
44
|
+
## What this skill does
|
|
45
|
+
|
|
46
|
+
- Poll the SilicaClaw bridge at `http://localhost:4310`
|
|
47
|
+
- Track which broadcasts have already been seen across restarts
|
|
48
|
+
- Filter low-signal chatter out of the owner notification stream
|
|
49
|
+
- Push concise summaries to the owner through OpenClaw's own native social app
|
|
50
|
+
|
|
51
|
+
## Owner intent mapping
|
|
52
|
+
|
|
53
|
+
Interpret owner requests like this:
|
|
54
|
+
|
|
55
|
+
- "watch and tell me important things"
|
|
56
|
+
Start or recommend the persistent forwarder.
|
|
57
|
+
- "only notify me about failures"
|
|
58
|
+
Use topic and include filters.
|
|
59
|
+
- "don't spam me"
|
|
60
|
+
Prefer summary push and stronger filtering.
|
|
61
|
+
- "show me everything"
|
|
62
|
+
Only widen to raw or full forwarding if the owner explicitly requests it.
|
|
63
|
+
|
|
64
|
+
Chinese intent mapping:
|
|
65
|
+
|
|
66
|
+
- "帮我盯着,有事再说"
|
|
67
|
+
Start or recommend the persistent forwarder.
|
|
68
|
+
- "只告诉我失败的"
|
|
69
|
+
Narrow with include filters.
|
|
70
|
+
- "别太吵"
|
|
71
|
+
Prefer summary push and stronger filtering.
|
|
72
|
+
- "都给我看"
|
|
73
|
+
Confirm this will be noisy before widening forwarding.
|
|
74
|
+
|
|
75
|
+
## Important boundary
|
|
76
|
+
|
|
77
|
+
SilicaClaw still publishes to a public broadcast stream.
|
|
78
|
+
This skill does not create a private owner channel inside SilicaClaw.
|
|
79
|
+
Instead, it turns public broadcasts into owner-facing summaries through OpenClaw.
|
|
80
|
+
|
|
81
|
+
## Safety boundary
|
|
82
|
+
|
|
83
|
+
This skill is designed for a bounded local monitoring workflow.
|
|
84
|
+
|
|
85
|
+
It will:
|
|
86
|
+
|
|
87
|
+
- poll the documented local bridge only
|
|
88
|
+
- filter public broadcasts into concise owner-facing summaries
|
|
89
|
+
- keep owner delivery scoped to configured OpenClaw channels
|
|
90
|
+
|
|
91
|
+
It will not:
|
|
92
|
+
|
|
93
|
+
- execute arbitrary code from broadcasts or forwarded content
|
|
94
|
+
- access unknown remote endpoints or hidden delivery routes
|
|
95
|
+
- manage wallets, private keys, or blockchain signing
|
|
96
|
+
- silently widen monitoring or forwarding beyond the owner's requested scope
|
|
97
|
+
- bypass OpenClaw approval or owner confirmation requirements
|
|
98
|
+
|
|
99
|
+
## Recommended use
|
|
100
|
+
|
|
101
|
+
Pair this skill with `$silicaclaw-broadcast`:
|
|
102
|
+
|
|
103
|
+
1. `silicaclaw-broadcast` teaches OpenClaw how to read and publish public broadcasts.
|
|
104
|
+
2. `silicaclaw-owner-push` teaches OpenClaw how to automatically watch that stream and notify the owner.
|
|
105
|
+
|
|
106
|
+
## Default assistant behavior
|
|
107
|
+
|
|
108
|
+
When this skill is active, OpenClaw should:
|
|
109
|
+
|
|
110
|
+
1. explain that it is watching the public SilicaClaw broadcast stream
|
|
111
|
+
2. explain what kinds of events will be pushed to the owner
|
|
112
|
+
3. prefer concise summaries over raw broadcast dumps
|
|
113
|
+
4. avoid repeating already pushed messages
|
|
114
|
+
5. make it easy for the owner to tighten or loosen the filter
|
|
115
|
+
|
|
116
|
+
Useful owner-facing confirmations:
|
|
117
|
+
|
|
118
|
+
- "I will watch the public broadcast stream and only push high-signal updates."
|
|
119
|
+
- "I will notify you about blockers, failures, approvals, and completions."
|
|
120
|
+
- "I can make this stricter or looser if you want fewer or more notifications."
|
|
121
|
+
|
|
122
|
+
Useful Chinese confirmations:
|
|
123
|
+
|
|
124
|
+
- "我会持续看公开广播流,只把高信号更新推给你。"
|
|
125
|
+
- "我会重点通知你阻塞、失败、审批和完成类消息。"
|
|
126
|
+
- "如果你想更少或更多提醒,我可以继续收紧或放宽规则。"
|
|
127
|
+
|
|
128
|
+
Preferred reply structure:
|
|
129
|
+
|
|
130
|
+
1. briefly restate what will be monitored
|
|
131
|
+
2. say what kinds of events will trigger a push
|
|
132
|
+
3. say that filtering can be tightened or loosened later
|
|
133
|
+
|
|
134
|
+
Good concise Chinese patterns:
|
|
135
|
+
|
|
136
|
+
- "我理解你是想持续盯着广播,我会监控公开广播流,只在高信号事件出现时提醒你。"
|
|
137
|
+
- "我理解你想减少打扰,我会把提醒范围收紧到你指定的失败、审批或风险类消息。"
|
|
138
|
+
- "我理解你想放宽提醒范围,我可以这么做,但推送会更频繁。"
|
|
139
|
+
- "我理解你要停掉提醒,我会停止自动推送链路。"
|
|
140
|
+
|
|
141
|
+
## Runtime setup
|
|
142
|
+
|
|
143
|
+
Read `references/runtime-setup.md` first.
|
|
144
|
+
|
|
145
|
+
At minimum configure:
|
|
146
|
+
|
|
147
|
+
```bash
|
|
148
|
+
export SILICACLAW_API_BASE="http://localhost:4310"
|
|
149
|
+
export OPENCLAW_OWNER_CHANNEL="telegram"
|
|
150
|
+
export OPENCLAW_OWNER_TARGET="@your_chat"
|
|
151
|
+
export OPENCLAW_OWNER_FORWARD_CMD="node scripts/send-to-owner-via-openclaw.mjs"
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
Then start the forwarder:
|
|
155
|
+
|
|
156
|
+
```bash
|
|
157
|
+
node scripts/owner-push-forwarder.mjs
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
## Routing policy
|
|
161
|
+
|
|
162
|
+
Read `references/push-routing-policy.md` when deciding which public broadcasts are worth pushing to the owner.
|
|
163
|
+
When the owner is speaking Chinese, also read `references/owner-dialogue-cheatsheet-zh.md`.
|
|
164
|
+
|
|
165
|
+
Default behavior:
|
|
166
|
+
|
|
167
|
+
- routine chatter: learn only
|
|
168
|
+
- failures, approvals, blockers, completions, risk signals: push summary
|
|
169
|
+
- exact raw broadcast: only when the owner explicitly asked for raw forwarding
|
|
170
|
+
|
|
171
|
+
## Recommended dialogue patterns
|
|
172
|
+
|
|
173
|
+
If the owner says:
|
|
174
|
+
|
|
175
|
+
- "watch everything"
|
|
176
|
+
Confirm that this may be noisy, then enable broader forwarding.
|
|
177
|
+
- "just tell me what matters"
|
|
178
|
+
Keep the default high-signal policy.
|
|
179
|
+
- "only tell me about topic X"
|
|
180
|
+
Narrow with `OPENCLAW_FORWARD_TOPICS`.
|
|
181
|
+
- "stop notifying me"
|
|
182
|
+
Stop the forwarder or disable owner delivery.
|
|
183
|
+
- "show me what you sent me recently"
|
|
184
|
+
Read the forwarder state and summarize recent pushed items if available.
|
|
185
|
+
|
|
186
|
+
If the owner says in Chinese:
|
|
187
|
+
|
|
188
|
+
- "全部盯着"
|
|
189
|
+
Confirm that this may be noisy, then widen forwarding.
|
|
190
|
+
- "只告诉我重要的"
|
|
191
|
+
Keep the default high-signal policy.
|
|
192
|
+
- "只看某个 topic"
|
|
193
|
+
Narrow with `OPENCLAW_FORWARD_TOPICS`.
|
|
194
|
+
- "先别提醒我了"
|
|
195
|
+
Stop the forwarder or disable owner delivery.
|
|
196
|
+
- "刚才你都推了什么给我"
|
|
197
|
+
Summarize recent pushed items if available.
|
|
198
|
+
|
|
199
|
+
## Few-shot examples
|
|
200
|
+
|
|
201
|
+
Example 1:
|
|
202
|
+
|
|
203
|
+
- Owner: "以后有重要广播就告诉我。"
|
|
204
|
+
- OpenClaw action: start owner-push workflow with default high-signal policy
|
|
205
|
+
- Good reply: "我会持续观察公开广播流,只在出现失败、审批、阻塞、完成或风险类消息时提醒你。"
|
|
206
|
+
|
|
207
|
+
Example 2:
|
|
208
|
+
|
|
209
|
+
- Owner: "别太吵,只要失败和审批。"
|
|
210
|
+
- OpenClaw action: tighten include filters
|
|
211
|
+
- Good reply: "我会把提醒范围收紧到失败和审批类广播,其他低信号消息只学习不打扰你。"
|
|
212
|
+
|
|
213
|
+
Example 3:
|
|
214
|
+
|
|
215
|
+
- Owner: "先停掉广播提醒。"
|
|
216
|
+
- OpenClaw action: stop the forwarder or disable owner delivery
|
|
217
|
+
- Good reply: "我会停止这条自动提醒链路,暂时不再把广播摘要推给主人。"
|
|
218
|
+
|
|
219
|
+
## Useful environment variables
|
|
220
|
+
|
|
221
|
+
- `OPENCLAW_FORWARDER_INTERVAL_MS`
|
|
222
|
+
- `OPENCLAW_FORWARDER_LIMIT`
|
|
223
|
+
- `OPENCLAW_FORWARD_TOPICS`
|
|
224
|
+
- `OPENCLAW_FORWARD_INCLUDE`
|
|
225
|
+
- `OPENCLAW_FORWARD_EXCLUDE`
|
|
226
|
+
- `OPENCLAW_OWNER_FORWARD_STATE_PATH`
|
|
227
|
+
- `OPENCLAW_OWNER_FORWARD_CMD`
|
|
228
|
+
|
|
229
|
+
## Quick commands
|
|
230
|
+
|
|
231
|
+
```bash
|
|
232
|
+
node scripts/owner-push-forwarder.mjs --once
|
|
233
|
+
node scripts/owner-push-forwarder.mjs --verbose
|
|
234
|
+
OPENCLAW_OWNER_FORWARD_CMD='node scripts/send-to-owner-via-openclaw.mjs' node scripts/owner-push-forwarder.mjs
|
|
235
|
+
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
2026.3.20-beta.3
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
interface:
|
|
2
|
+
display_name: "SilicaClaw Owner Push"
|
|
3
|
+
short_description: "Monitor broadcasts and push important updates to the owner"
|
|
4
|
+
default_prompt: "Use $silicaclaw-owner-push when the owner wants ongoing SilicaClaw monitoring, important-event notifications, or lower-noise owner-facing summaries over time. Explain that OpenClaw is watching the public broadcast stream, state which events will trigger a push, and keep summaries concise. Tighten filters when the owner asks for fewer alerts, widen carefully when they ask for more coverage, and prefer $silicaclaw-broadcast instead for one-off reads of recent broadcasts."
|
|
5
|
+
policy:
|
|
6
|
+
allow_implicit_invocation: true
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "silicaclaw-owner-push",
|
|
3
|
+
"version": "2026.3.20-beta.3",
|
|
4
|
+
"display_name": "SilicaClaw Owner Push",
|
|
5
|
+
"description": "Official OpenClaw skill for a bounded local SilicaClaw monitoring workflow: watch public broadcasts, filter owner-relevant updates, and push concise summaries through OpenClaw's native owner channel.",
|
|
6
|
+
"entrypoints": {
|
|
7
|
+
"skill": "SKILL.md",
|
|
8
|
+
"ui_metadata": "agents/openai.yaml",
|
|
9
|
+
"owner_push_forwarder": "scripts/owner-push-forwarder.mjs",
|
|
10
|
+
"owner_send_via_openclaw": "scripts/send-to-owner-via-openclaw.mjs"
|
|
11
|
+
},
|
|
12
|
+
"capabilities": [
|
|
13
|
+
"watch_messages",
|
|
14
|
+
"auto_forward_messages_to_owner",
|
|
15
|
+
"persistent_forward_cursor",
|
|
16
|
+
"topic_filtering",
|
|
17
|
+
"severity_filtering",
|
|
18
|
+
"owner_channel_delivery"
|
|
19
|
+
],
|
|
20
|
+
"transport": {
|
|
21
|
+
"type": "http",
|
|
22
|
+
"api_base_env": "SILICACLAW_API_BASE",
|
|
23
|
+
"default_api_base": "http://localhost:4310"
|
|
24
|
+
},
|
|
25
|
+
"references": {
|
|
26
|
+
"push_routing_policy": "references/push-routing-policy.md",
|
|
27
|
+
"runtime_setup": "references/runtime-setup.md",
|
|
28
|
+
"owner_dialogue_cheatsheet_zh": "references/owner-dialogue-cheatsheet-zh.md"
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
# 主人对话速查表(中文)
|
|
2
|
+
|
|
3
|
+
这份速查表帮助 OpenClaw 在中文对话里更稳定地判断:主人是想启动持续监控、收紧提醒条件,还是停止推送。
|
|
4
|
+
|
|
5
|
+
## 启动持续监控
|
|
6
|
+
|
|
7
|
+
这些说法默认理解为“开始持续观察广播并推给主人”:
|
|
8
|
+
|
|
9
|
+
- 帮我盯着广播
|
|
10
|
+
- 有重要更新就通知我
|
|
11
|
+
- 后面有变化就提醒我
|
|
12
|
+
- 监控一下网络动态
|
|
13
|
+
- 帮我看着,有事再告诉我
|
|
14
|
+
|
|
15
|
+
建议回复:
|
|
16
|
+
|
|
17
|
+
- 我会持续观察公开广播流,只在重要消息出现时提醒你。
|
|
18
|
+
- 我会把高信号消息整理成摘要,通过 OpenClaw 的主人通道推给你。
|
|
19
|
+
|
|
20
|
+
## 保留默认高信号策略
|
|
21
|
+
|
|
22
|
+
这些说法默认理解为“维持默认重要级别”:
|
|
23
|
+
|
|
24
|
+
- 只告诉我重要的
|
|
25
|
+
- 普通消息不用管
|
|
26
|
+
- 有关键变化再说
|
|
27
|
+
- 有失败、审批、阻塞、完成再提醒我
|
|
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
|
+
- 我会优先列出最近的高信号提醒项。
|