元宝派主动推送
Analysis
This skill openly sends Yuanbao messages and files, but it deserves review because it uses local bot credentials to bypass normal channel controls, can post/upload to chats, and can disrupt the existing Yuanbao plugin connection.
Findings (5)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
本 skill 直接连接 Yuanbao WebSocket 协议,绕过通道限制,实现主动推送(群聊 + 私聊)。
This shows the skill intentionally bypasses the normal OpenClaw plugin channel to post proactively into group and private chats, a high-impact action that lacks documented approval or recipient-scope guardrails.
send.py 使用与插件相同的 bot_id 建立 WebSocket 连接,会导致插件现有连接被踢(`code=4014 instanceid conflict`)。插件需等待 health-monitor 重启(约 15 分钟)才能恢复接收消息。
The artifacts disclose that using the skill can disrupt the existing Yuanbao plugin connection and stop it from receiving messages until it recovers.
packages:
- websocket-client
- cos-python-sdk-v5The skill depends on external Python packages for WebSocket and COS upload support; this is purpose-aligned, but there is no pinned install specification in the provided artifacts.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
CONFIG_PATH = Path.home() / ".openclaw" / "openclaw.json" ... app_key = yb.get("appKey", "") ... app_secret = yb.get("appSecret", "")The code reads local Yuanbao bot credentials from the OpenClaw configuration and uses them to authenticate, while the registry metadata declares no primary credential or required config path.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
send.py → 签票 → /api/resource/genUploadInfo → COS put_object → WebSocket → TIMImageElem / TIMFileElem → 关闭
The documented file workflow uploads local files to Tencent COS and then sends a resource URL through Yuanbao; this is expected for file sending but is a sensitive external data flow.
