Leaderboard/Knowledge/llm-wiki-skill
Last commit on April 16, 2026·Created on April 5, 2026

lewislulu/llm-wiki-skill

Compiles raw sources into a cross-linked wiki that improves with every audit.
Combined rank
#450
across all skills
In Knowledge
#19
category rank
Stars
657
+0.3% in last 7d
Forks
104
0.0% in last 7d
Watchers
3
0.0% in last 7d
Traction scoreGitHub stars can be faked, so popularity alone can be misleading. Traction Score looks for broader signs of recent attention, adoption, and active maintenance.
TL;DR

This skill builds a Karpathy-style Obsidian wiki from articles, papers, and notes. Instead of re-retrieving raw documents on every query, it ingests sources and compiles them into a persistent web of concept, entity, and summary pages. Researchers, knowledge workers, and teams can then query the wiki, lint it for health, and file structured feedback that the agent applies as corrections. Knowledge compounds rather than being re-fetched, and human oversight stays durable across sessions.

WHO IT'S FOR
Research Knowledge Managers
build cross-linked knowledge bases
AI Agent / Automation Engineers
design agent knowledge workflows
Obsidian Power Users
extend Obsidian with AI workflows
Technical Writers / Documentation Engineers
maintain living documentation with linting
Repository contents

1 skill file

Compatible AgentsThe repository documents support for these agents. The skills may also work with other agents that can load SKILL.md files, but they may need some setup or small changes.

Use this skill

Follow the documented setup, then try a first task.

Setup

Copy to ~/.claude/skills

Installs: Installs the llm-wiki skill folder, including its references and scripts.

Before you start
  • A local copy of the repository.

Run from: Repository root (llm-wiki-skill/)

  1. From the repository root, copy the llm-wiki folder into the documented agent skills directory.

    cp -r llm-wiki/ ~/.claude/skills/llm-wiki/
README.md · Checked Sep 18, 2026

Give it something to do.

Suggested first task

Scaffold a research wiki

Uses llm-wiki

  • A destination path to substitute for `<wiki-root>`.
  • A research topic to substitute for `<research-topic>`.
  • Python 3, because the documented scaffold command uses `python3`.
Using the llm-wiki skill, scaffold a new wiki at `<wiki-root>` for the research topic `<research-topic>`. Treat both angle-bracketed values as placeholders and replace them with my chosen destination path and topic.
llm-wiki/SKILL.md · Checked Sep 18, 2026README.md · Checked Sep 18, 2026
Suggested first task

Ingest a source article

Uses llm-wiki

  • An already scaffolded wiki at `<wiki-root>`.
  • A Markdown source copied into `<wiki-root>/raw/articles/`, with its filename substituted for `<source-file>.md`.
Using the llm-wiki skill, ingest `raw/articles/<source-file>.md` from the wiki at `<wiki-root>`. Replace `<source-file>` with the copied Markdown filename and `<wiki-root>` with the wiki's root path. Start by reading that wiki's `CLAUDE.md` and `wiki/index.md`.
llm-wiki/SKILL.md · Checked Sep 18, 2026README.md · Checked Sep 18, 2026
Suggested first task

Ask the wiki a question

Uses llm-wiki

  • A populated wiki at `<wiki-root>`.
  • A specific question to substitute for `<question>`.
Using the llm-wiki skill and the wiki at `<wiki-root>`, answer: `<question>`. Replace `<wiki-root>` with the populated wiki's root path and `<question>` with the specific research question. Base the answer on the wiki corpus and file the durable answer back into the wiki.
llm-wiki/SKILL.md · Checked Sep 18, 2026README.md · Checked Sep 18, 2026