文件快速扫描 - 减少token消耗

AdvisoryAudited by Static analysis on May 13, 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

File descriptions or snippets may remain in .anatomy.md and be shown to future agent sessions, including any sensitive first lines or comments from scanned files.

Why it was flagged

The skill intentionally creates a persistent local index that can be reused across sessions as agent context.

Skill content
启动时读 `.anatomy.md`(文件快扫索引)... 扫描输出写入 `.anatomy.md`,后续会话直接复用
Recommendation

Run it only on intended project folders, review .anatomy.md before sharing context, and add excludes for secrets, private notes, or generated files.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

If configured in startup files, the skill may rescan and update the local index without a separate prompt each session.

Why it was flagged

The documented workflow can cause a scan to run automatically at session startup when the index is stale.

Skill content
自动注入(会话启动用)... 超过 24h 自动触发重新扫描
Recommendation

Only enable startup integration in trusted workspaces and remove or disable it if you do not want automatic rescans.

What this means

Expense or Downloads filenames, dates, and sizes may be written into the generated anatomy file, which can reveal private activity even without reading file contents.

Why it was flagged

The optional expense scanner can inspect recent PDF/image filenames in the user's Downloads directory when the flag is used.

Skill content
parser.add_argument('--scan-downloads', '-d', action='store_true'... dl = Path.home() / 'Downloads'
Recommendation

Use --scan-downloads only when desired, and review the generated index before exposing it to an agent or another person.