Wiki Knowledge Base

PassAudited by ClawScan on May 10, 2026.

Overview

This instruction-only skill is coherently focused on maintaining a local Markdown wiki, with the main caution that it edits local files and suggests broad Git commits.

This skill appears safe for a local Markdown wiki workflow. Before installing or invoking it, use it in a dedicated project folder, review generated file changes, and be cautious with the `git add -A` workflow because it can stage unrelated repository changes. Avoid adding sensitive source documents unless you want them summarized and retained in the local wiki.

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

Unrelated edits in the same repository could be included in a local commit.

Why it was flagged

The suggested Git command broadly stages all changes in the repository, not only wiki-generated files. This is disclosed and related to maintaining a wiki, but can include unrelated local changes if the working tree is not clean.

Skill content
After every operation batch:
```bash
git add -A && git commit -m "<type>: <description>"
```
Recommendation

Use a dedicated wiki repository or review `git status` and `git diff` before committing; consider staging only intended paths such as `wiki/`, `raw/`, and `outputs/`.

What this means

Sensitive or inaccurate source material placed in `raw/` may be preserved in the wiki and influence later answers.

Why it was flagged

The skill intentionally converts source materials into persistent local summaries and knowledge pages that are later reused when answering questions.

Skill content
Three-layer distillation: `raw/` ... → `wiki/sources/` ... → `wiki/concepts/ + wiki/entities/` ...
Recommendation

Only place materials you are comfortable storing in the local wiki, review generated summaries for accuracy, and keep the wiki private if it contains sensitive research.