多机器人去重消息
PassAudited by ClawScan on May 1, 2026.
Overview
This instruction-only skill appears aligned with preventing duplicate Feishu bot replies, but it keeps a small local state file and may intentionally skip duplicate replies within 30 seconds.
This skill looks safe for its stated purpose if you need multi-Feishu-bot reply deduplication. Before installing, understand that it may intentionally not reply to duplicate messages within 30 seconds and that it keeps a local dedup_state.json file with limited sender/message metadata.
Findings (2)
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.
A duplicate Feishu message from the same sender within the time window may receive no response, which is intended but could surprise users if the state is stale or the message is misclassified.
The skill explicitly instructs the agent to skip responding under defined deduplication conditions. This changes response behavior, but it is the disclosed purpose of the skill and is narrowly scoped.
三条全满足 → **NO_REPLY(跳过)** 否则 → **正常回复,并更新 dedup_state.json**
Install only if you want this deduplication behavior, and clear or inspect dedup_state.json if expected replies are being skipped.
The local state file may retain sender IDs, timestamps, and hashes of recent message prefixes; if incorrect or tampered with, it could affect whether the agent replies.
The skill stores persistent per-sender deduplication state and reuses it to decide future reply behavior. The stored data is limited and purpose-aligned, but it is still persistent context.
位置:`skills/multi-bot-dedup/dedup_state.json` ... `sender_id` ... `last_reply_time` ... `last_message_hash`
Keep the state file scoped to this skill, avoid sharing it unnecessarily, and periodically reset it if deduplication behavior becomes inaccurate.
