wiki-init — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited wiki-init (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Scaffold a Karpathy-style LLM wiki so the user can start ingesting sources immediately. The pattern is described in https://gist.github.com/karpathy/442a6bf555914893e9891c11519de94f — this skill produces the minimal scaffold it implies.
<project>/ raw/ # immutable source archive (sibling, outside MCP's view) wiki/ # THIS folder is what --wiki-root points at CLAUDE.md # the schema, co-evolved with the user index.md # catalog, organized by category log.md # append-only chronological record pages/ # LLM-authored pages live here
raw/ is a project-level sibling of wiki/ — MCP never touches it, but wiki-ingest reads from it via host Read when processing a new source. wiki/ is owned entirely by the LLM; wiki/CLAUDE.md is the only file the user regularly edits. MCP's --wiki-root points at <project>/wiki/, NOT at <project>/.
Ask the user three things, in order:
./wiki-root. This isthe <project> path; suggest ~/wikis/<topic> if the user keeps multiple wikis.
(default: English).
If <project>/wiki/CLAUDE.md already exists, stop and tell the user the wiki exists. Do not overwrite.
This skill does not require the llm-wiki-mcp server to be running — it creates the directory the server will later point at. Use the standard Write and Bash tools.
<project>/raw/ and <project>/wiki/pages/.<project>/wiki/CLAUDE.md from templates/CLAUDE.md.template,substituting {{TOPIC}} and {{LANGUAGE}}.
<project>/wiki/index.md from templates/index.md.template,substituting {{TOPIC}}.
<project>/wiki/log.md from templates/log.md.template,substituting {{DATE}} (today, YYYY-MM-DD) and {{TOPIC}}.
templates/mcp-wiring.md with{{ABSOLUTE_PATH}} substituted to the absolute path of <project>/wiki (NOT <project>).
client, then say ingest <first-source> to trigger wiki-ingest.
Do not paraphrase. Write the files verbatim with placeholders replaced. The templates encode Karpathy's operation vocabulary (ingest, query, lint) and log format (## [YYYY-MM-DD] <op> | <title>) — preserving them keeps downstream skills (wiki-ingest, wiki-query, wiki-lint) working without reinterpretation.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.