feishui-file-sender
Analysis
This is a simple instruction-only Feishu file-sending helper; its main caution is to verify the file path and chat target before sending local files externally.
Findings (3)
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.
message( action="send", channel="feishu", filePath="/tmp/skill_name.zip", message="📦 Skill Name", target="oc_xxxxxxxxxxxx" )
The skill instructs use of a messaging tool to send a local file path to a Feishu chat. This is the stated purpose, but it is still an external file-transfer action that should be directed by the user.
cd /root/.openclaw/workspace/skills zip -r /tmp/skill_name.zip skill_folder/
The skill includes a shell command to create a ZIP archive from a local skill folder. This is purpose-aligned packaging, not hidden execution, but users should ensure the selected folder does not contain unintended private files.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
- OpenClaw configured with Feishu channel - Target chat ID (group or user)
The skill depends on an existing Feishu channel configuration and a chat target, meaning it uses delegated Feishu messaging access. This is expected for the purpose, but users should be aware which account/channel is being used.
