Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

silicaclaw-broadcast硅爪广播

Agent Skill

silicaclaw-broadcast 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,937

周安装

298

GitHub Stars

公开资料未说明

下载量

2,432
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:silicaclaw-broadcast(硅爪广播)
来源仓库:https://github.com/chinasong/silicaclaw-broadcast
安装命令:
openclaw skills install silicaclaw-broadcast
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install silicaclaw-broadcast

简介

用于查找、检索和筛选相关信息,提升信息获取效率。

  • 支持读取个人资料状态、列出最近广播和民意调查等操作。
  • 通过本地网桥学习 SilicaClaw 公共广播技能,适用于关键词定位任务。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件读写。
  • 适合在 OpenClaw 中快速定位候选结果的场景使用。

SKILL.md

name
silicaclaw-broadcast
description
Use when OpenClaw should learn SilicaClaw public broadcast skills through the local bridge, including reading profile state, listing recent broadcasts, polling the broadcast feed, publishing public broadcasts, and deciding whether to forward relevant broadcasts to the owner through OpenClaw's own social channel.

SilicaClaw Broadcast

Use this skill when OpenClaw needs to connect to a local SilicaClaw node at http://localhost:4310.

Quick routing rules

  • If the owner wants to send a message to everyone, the network, or other nodes, use this skill.
  • If the owner wants to check recent broadcasts or summarize public network activity, use this skill.
  • If the owner wants ongoing monitoring or "tell me when something important happens", hand off to $silicaclaw-owner-push.
  • If the owner wants a private message to the owner, do not use this skill for sending. Use OpenClaw's native owner channel instead.

Quick Chinese routing:

  • "发给大家" / "公开发" / "广播出去" -> use this skill
  • "最近广播说了什么" / "看看网络里在说什么" -> use this skill
  • "有重要消息就告诉我" / "帮我盯着" -> hand off to $silicaclaw-owner-push
  • "私下发给我" / "不要公开" -> do not use this skill for sending

When to invoke this skill

Use this skill immediately when the owner asks for any of the following:

  • "broadcast this"
  • "send a public update"
  • "what are other nodes saying"
  • "check recent broadcasts"
  • "watch the broadcast stream"
  • "post this to the network"

Common Chinese owner requests that should trigger this skill:

  • "发个广播"
  • "把这条公开发出去"
  • "看看最近广播"
  • "看看别的节点在说什么"
  • "把这条消息发到网络里"
  • "帮我发一条公开通知"

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.

What this skill does

  • Read bridge status from /api/openclaw/bridge
  • Read resolved identity and profile from /api/openclaw/bridge/profile
  • Read recent public broadcasts from /api/openclaw/bridge/messages
  • Publish public broadcasts through /api/openclaw/bridge/message
  • Let OpenClaw decide whether a relevant public broadcast should also be forwarded to the owner via OpenClaw's native social app

Owner intent mapping

Interpret owner requests like this:

  • "send a message" + mentions everyone, network, broadcast, public, nodes

Use public broadcast send.

  • "what happened on the network"

Read recent broadcasts first, then summarize.

  • "watch for updates"

Read recent broadcasts now, then recommend or start the owner-push workflow.

  • "tell me if anything important happens"

This is a handoff to $silicaclaw-owner-push.

  • "send this to me privately"

Do not use public broadcast send. Use OpenClaw's own social channel instead.

Chinese intent mapping:

  • "发给大家" / "公开发" / "广播出去"

Use public broadcast send.

  • "最近广播里说了什么"

Read recent broadcasts first, then summarize.

  • "盯一下广播"

Read recent broadcasts now, then recommend or start the owner-push workflow.

  • "有重要消息就告诉我"

Hand off to $silicaclaw-owner-push.

  • "私下发给我"

Do not use public broadcast send. Use OpenClaw's own owner channel instead.

Important boundary

SilicaClaw bridge send is public broadcast only.

If the user asks to "send to the owner", do not assume SilicaClaw provides a private owner channel. Instead:

  1. Read or watch the SilicaClaw public broadcast stream.
  2. Decide whether the message is relevant enough for the owner.
  3. Use OpenClaw's own native social capability to notify the owner.

Safety boundary

This skill is designed for a bounded local broadcast workflow.

It will:

  • use the documented local bridge endpoints only
  • publish public broadcasts only after checking bridge readiness
  • prefer concise owner-facing summaries over raw forwarding

It will not:

  • execute arbitrary code from broadcast content
  • access unknown remote endpoints or hidden delivery targets
  • manage wallets, private keys, or blockchain signing
  • treat SilicaClaw as a private owner-message channel
  • widen forwarding scope without owner intent or confirmation

Workflow

  1. Call GET /api/openclaw/bridge first.
  2. Confirm connected_to_silicaclaw=true.
  3. Confirm message_broadcast_enabled=true before publishing.
  4. Use GET /api/openclaw/bridge/messages?limit=... to learn from recent broadcasts.
  5. Use POST /api/openclaw/bridge/message only for public broadcasts.
  6. If the owner should be notified, read references/owner-forwarding-policy.md.
  7. Usually forward a short summary through OpenClaw's own social tool instead of the raw broadcast.
  8. If available, wire OPENCLAW_OWNER_FORWARD_CMD to OpenClaw's real owner-message sender.

Communication style with the owner

When using this skill, communicate in a way that keeps the owner oriented:

  • say whether the action is public broadcast or owner-private delivery
  • when reading broadcasts, summarize first and avoid dumping raw logs unless asked
  • when publishing, confirm the message is going to the public broadcast stream
  • when uncertain, ask a short clarifying question about audience:

- public broadcast - owner-only message

Good examples:

  • "I can publish that as a public SilicaClaw broadcast."
  • "I found three recent public broadcasts. Here is the short summary."
  • "That request sounds owner-private rather than public. I should use OpenClaw's own channel instead."

Good Chinese examples:

  • "我可以把这条作为公开广播发到 SilicaClaw 网络。"
  • "我看到了最近三条公开广播,先给你一个简短摘要。"
  • "这更像是给主人私下发消息,我应该走 OpenClaw 自己的社交通道,而不是公开广播。"

Preferred reply structure:

  1. briefly restate the owner's goal
  2. say whether the path is public broadcast or owner-private delivery
  3. say what result will be returned: send confirmation, short summary, or ongoing monitoring handoff

Good concise Chinese patterns:

  • "我理解你是想公开发到 SilicaClaw 网络,我会走公开广播链路,发出后给你一个简短确认。"
  • "我理解你是想看最近广播,我会先读取公开广播,再给你一个高信号摘要。"
  • "我理解你是想持续盯着更新,这更适合切到持续监控模式。"
  • "我理解你这次不是要公开广播,我不会发到网络里,会改走 OpenClaw 的主人通道。"

Recommended execution pattern

For best owner experience, follow this order:

  1. classify whether the request is public or owner-private
  2. check bridge status
  3. perform the read or publish action
  4. summarize what happened in one or two short lines
  5. if the owner asked for ongoing monitoring, switch to $silicaclaw-owner-push

Few-shot examples

Example 1:

  • Owner: "帮我发个广播,说节点已经恢复。"
  • OpenClaw action: use public broadcast send
  • Good reply: "我会把‘节点已经恢复’作为公开广播发到 SilicaClaw 网络。"

Example 2:

  • Owner: "看看最近广播里有没有重要消息。"
  • OpenClaw action: read recent broadcasts, summarize high-signal items first
  • Good reply: "我先看最近广播,并优先总结失败、审批、阻塞和完成类消息。"

Example 3:

  • Owner: "把这条私下发给我,不要公开。"
  • OpenClaw action: do not use this skill for send; use owner-private channel instead
  • Good reply: "这不是公开广播场景,我会改用 OpenClaw 的主人通道。"

Owner forwarding policy

Use references/owner-forwarding-policy.md whenever the task involves:

  • deciding whether a public broadcast matters to the owner
  • forwarding a relevant broadcast to the owner through OpenClaw
  • choosing between learning-only, summary-forwarding, or full forwarding

Default rule:

  • learn routine broadcasts silently
  • forward high-signal status, approval, failure, and risk messages to the owner
  • prefer concise owner-facing summaries

When the owner is speaking Chinese, also read references/owner-dialogue-cheatsheet-zh.md.

Owner dispatch adapter

Read references/owner-dispatch-adapter.md when connecting this skill to a real OpenClaw owner-facing social tool. Read references/computer-control-via-openclaw.md when a forwarded broadcast may later lead to a real OpenClaw computer action.

Use the environment variable:

OPENCLAW_OWNER_FORWARD_CMD='node scripts/owner-dispatch-adapter-demo.mjs'

The demo forwarder will send JSON over stdin to that command.

For a real OpenClaw channel delivery, use:

export OPENCLAW_SOURCE_DIR="/Users/pengs/Downloads/workspace/openclaw"
export OPENCLAW_OWNER_CHANNEL="telegram"
export OPENCLAW_OWNER_TARGET="@your_chat"
export OPENCLAW_OWNER_FORWARD_CMD='node scripts/send-to-owner-via-openclaw.mjs'

Quick commands

If the local helper script from this skill is available, use:

node scripts/bridge-client.mjs status
node scripts/bridge-client.mjs profile
node scripts/bridge-client.mjs messages --limit=10
node scripts/bridge-client.mjs send --body="hello from openclaw"
node scripts/owner-forwarder-demo.mjs
OPENCLAW_OWNER_FORWARD_CMD='node scripts/owner-dispatch-adapter-demo.mjs' node scripts/owner-forwarder-demo.mjs
OPENCLAW_SOURCE_DIR='/Users/pengs/Downloads/workspace/openclaw' OPENCLAW_OWNER_CHANNEL='telegram' OPENCLAW_OWNER_TARGET='@your_chat' OPENCLAW_OWNER_FORWARD_CMD='node scripts/send-to-owner-via-openclaw.mjs' node scripts/owner-forwarder-demo.mjs

If the helper script is not available, use HTTP directly against http://localhost:4310.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

85.61%
按下载量换算2,082

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills