定时早报生成
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.
The skill may fail at runtime or rely on logic that is not visible in the submitted artifacts.
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.
const report = await generateBriefing(topic, config);
Ask the publisher to include or document the briefing-generation implementation before depending on the skill.
If the Feishu chat ID or workspace permission is wrong, briefings could be posted to an unintended chat.
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.
await message.send({ channel: 'feishu', target: chatId, message: content });Verify the configured Feishu chat ID and use the least-privileged Feishu integration appropriate for the target chat.
The agent may post briefings automatically without a manual prompt each day.
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.
**定时推送**:每天自定义时间自动生成并推送(如 08:00)
Confirm the schedule, know how to disable it, and avoid enabling auto-push unless you want recurring Feishu messages.
Recent briefing topics or content may be stored for deduplication.
The advertised duplicate filter implies retaining recent pushed-content history for up to 30 days, although the storage implementation is not shown.
**去重机制**:自动过滤30天内已推送的重复内容
Confirm where duplicate-tracking data is stored and avoid using sensitive private sources unless retention is acceptable.
