企业微信对话配置
Analysis
The skill is a coherent WeCom setup guide, but its default example opens the bot broadly while installing a networked plugin that handles a bot secret, so it should be reviewed before use.
Findings (4)
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.
openclaw plugins install @wecom/wecom-openclaw-plugin
The skill instructs the user to install an external plugin without a version pin. This is central to the stated WeCom integration, but the plugin code is not part of the provided artifact set.
"wecom-openclaw-plugin": { "enabled": true } ... openclaw gateway restartThe plugin is configured to stay enabled through the OpenClaw gateway. Persistent operation is expected for a chat channel, but users should understand it remains active after setup.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
"botId": "<YOUR_BOT_ID>", "secret": "<YOUR_BOT_SECRET>"
The setup requires a WeCom bot credential in the OpenClaw configuration. This is purpose-aligned, but it is still a sensitive account secret.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
"dmPolicy": "open", "allowFrom": ["*"], "groupPolicy": "open"
The recommended initial configuration opens direct-message access with a wildcard and also opens group chat access, creating broad inbound message permissions for the WeCom channel.
