多机器人去重消息
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.
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.
