WikiLocal Personal Knowledge Wiki

PassAudited by ClawScan on May 1, 2026.

Overview

This appears to be a benign local personal wiki, but it will persist and overwrite wiki files on your computer.

This skill is reasonable for a local personal knowledge base. Before installing, choose a safe location for the wiki, keep backups, and avoid adding secrets or highly sensitive information unless you intentionally want them stored locally.

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.

What this means

Using the skill can create or replace local wiki files, so accidental edits could change or lose wiki content.

Why it was flagged

The module writes Markdown articles and a JSON index to disk. This is expected for a local wiki, but it can overwrite an existing same-slug article and should be treated as local file mutation authority.

Skill content
this.wikiDir = options.wikiDir || './wiki/articles'; ... fs.writeFileSync(file, header + content); ... fs.writeFileSync(this.indexFile, JSON.stringify(index, null, 2));
Recommendation

Use a dedicated wiki directory and keep backups of important notes.

What this means

Information you add to the wiki may remain available in future sessions and searches.

Why it was flagged

The skill is designed to retain user-provided knowledge for later search and reuse. That persistence is purpose-aligned, but stored notes may contain private information or later influence agent responses.

Skill content
Build a searchable knowledge base through conversation. Linked, searchable, yours. ... This software processes and stores data locally on your system.
Recommendation

Avoid storing passwords, secrets, or highly sensitive personal data unless you are comfortable keeping them in this local wiki.