dingtalk-feishu-cn

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

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.

What this means

If used carelessly, the agent could post unintended messages to company chat channels or bots.

Why it was flagged

The skill documents direct webhook calls that send messages to enterprise chat systems. This is expected for the stated integration purpose, but message sending should remain user-directed to avoid accidental or spammy notifications.

Skill content
curl -X POST "https://oapi.dingtalk.com/robot/send?access_token=YOUR_TOKEN"
Recommendation

Use dedicated test channels first, confirm recipients before sending, and avoid autonomous bulk notification behavior unless explicitly configured.

What this means

Leaked or over-scoped app secrets/webhook URLs could allow others to send messages or access workspace APIs.

Why it was flagged

The guide expects DingTalk/Feishu application secrets or webhook tokens, while the registry metadata lists no required credentials. This is purpose-aligned, but credentials should be scoped and protected.

Skill content
client = SecretClient(APP_KEY, APP_SECRET)
Recommendation

Use least-privilege bot credentials, keep webhook URLs and app secrets out of chat/logs, and rotate them if exposed.

What this means

A user or agent could install unexpected package versions or run a local script whose contents were not reviewed as part of this skill.

Why it was flagged

The instruction-only artifact references third-party package installs and local helper scripts, but the package versions are not pinned and the referenced scripts are not included in the manifest. These are setup examples rather than hidden execution, but users should verify what they install or run.

Skill content
pip install dingtalk-sdk
...
pip install lark-oapi
...
./scripts/dingtalk-notify.sh
Recommendation

Pin and review dependencies before installation, and only run helper scripts from a trusted, inspected source.

What this means

Operational or business details could be posted into chat spaces where more people can see them.

Why it was flagged

The documented use cases include sending operational and business alert content through DingTalk/Feishu webhooks. This is expected for the skill, but such messages may contain sensitive business information.

Skill content
服务器告警
- 业务异常
- 定时报告
Recommendation

Limit message content to what the target channel should see, avoid secrets in alerts, and use appropriate workspace/channel permissions.