本地知识库

PassAudited by ClawScan on May 1, 2026.

Overview

This appears to be a coherent local knowledge-base skill, but it creates persistent local memory that may include sensitive information, so users should avoid storing secrets.

Install only if you want a persistent local memory for the agent. Avoid saving passwords, API keys, private recovery information, or anything you would not want resurfaced in future conversations, and confirm delete operations precisely.

Findings (3)

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

Information saved in the knowledge base may shape future answers even after the original conversation is over.

Why it was flagged

The skill instructs the agent to prioritize stored knowledge-base content in future answers. That is purpose-aligned for a memory skill, but persistent stored content can be stale, wrong, or instruction-like and may influence later responses.

Skill content
当回答用户问题时,如果知识库中已有相关信息(如用户偏好、历史事实),应优先采用知识库中的内容
Recommendation

Review and delete outdated or incorrect entries, and treat stored knowledge as user data rather than as higher-priority instructions.

What this means

If you save passwords, API keys, or similar secrets, they may remain in the local database and could be returned in later knowledge-base queries.

Why it was flagged

The skill's own category table says password/key-like content may be classified as important knowledge. This is local and user-directed, but it means sensitive secrets could become persistent agent memory.

Skill content
| important | 重要、关键、密码、密钥 | 关键信息 |
Recommendation

Do not store credentials or recovery secrets in this skill; use a dedicated password manager or secret store instead.

What this means

A vague delete request could remove multiple saved memories from the local knowledge base.

Why it was flagged

The delete operation can remove records by exact ID or by fuzzy content match. This is aligned with the delete feature, but broad or ambiguous targets could delete more local records than intended.

Skill content
DELETE FROM memories WHERE id = ? OR content LIKE ?
Recommendation

Confirm deletion requests carefully, prefer deleting by exact record ID, and consider adding a preview or soft-delete step.