定时早报生成

PassAudited by ClawScan on May 10, 2026.

Overview

The skill mostly matches its stated purpose of generating daily briefings for Feishu, but users should verify the Feishu target, scheduled posting behavior, retention, and incomplete implementation details before relying on it.

Install this only if you want automatic Feishu briefing posts. Verify the target chat ID, schedule, and disable path, and ask the publisher to clarify the missing briefing-generation code and where 30-day deduplication history is stored.

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.

What this means

The skill may fail at runtime or rely on logic that is not visible in the submitted artifacts.

Why it was flagged

The core briefing generator is referenced but not defined in the provided file set, making the implementation incomplete or dependent on runtime code not shown here.

Skill content
const report = await generateBriefing(topic, config);
Recommendation

Ask the publisher to include or document the briefing-generation implementation before depending on the skill.

What this means

If the Feishu chat ID or workspace permission is wrong, briefings could be posted to an unintended chat.

Why it was flagged

The skill can use Feishu messaging authority to post generated content into a configured chat, which is consistent with its stated purpose but affects a third-party workspace.

Skill content
await message.send({ channel: 'feishu', target: chatId, message: content });
Recommendation

Verify the configured Feishu chat ID and use the least-privileged Feishu integration appropriate for the target chat.

What this means

The agent may post briefings automatically without a manual prompt each day.

Why it was flagged

The skill is intended to continue operating on a schedule after the user configures it, which is expected for a daily briefing tool but is persistent automation.

Skill content
**定时推送**:每天自定义时间自动生成并推送(如 08:00)
Recommendation

Confirm the schedule, know how to disable it, and avoid enabling auto-push unless you want recurring Feishu messages.

What this means

Recent briefing topics or content may be stored for deduplication.

Why it was flagged

The advertised duplicate filter implies retaining recent pushed-content history for up to 30 days, although the storage implementation is not shown.

Skill content
**去重机制**:自动过滤30天内已推送的重复内容
Recommendation

Confirm where duplicate-tracking data is stored and avoid using sensitive private sources unless retention is acceptable.