In two earlier posts I walked through the idea of LLM knowledge bases and then how to build one by hand using nothing more than markdown files, a few prompts, and an agent that follows a repeatable loop. The pattern works well, but every time I started a new knowledge base I found myself recreating the same folder layout, the same prompt files, and the same maintenance log from scratch.
That friction is the reason I built Wiki Builder, a small open-source Claude Code plugin that takes the LLM-knowledge-base workflow and turns it into a one-command setup.
What Wiki Builder Does
Wiki Builder is a skill you install once into Claude Code. After that, you can ask Claude to start a new wiki, and it will scaffold a clean folder layout, drop in a per-wiki config file, and seed the prompts for compiling pages, filing answers, and linting the structure. From that point on, the agent reads the local config first and adapts its behavior to the wiki you are working on.
The skill is intentionally general. Rather than hardcoding a single wiki layout, every wiki carries its own wiki.config.md that captures purpose, audience, page types, and update rules. A wiki on agent memory looks different from a wiki on a single arXiv paper, and both look different from a knowledge base profiling a company. Same plugin, different flavors.
The supported flavors out of the box are research , paper , domain , product , person , organization , and project . You pass the flavor when you scaffold the wiki and the templates adjust accordingly.
The Intuition
If you read the hand-built version of this workflow, the loop should already feel familiar.
Drop raw source material into raw/ . Ask the agent to compile structured pages into wiki/ . Ask questions, and file the answers back into the wiki under wiki/questions/ . Run a maintenance pass that looks for thin pages, missing backlinks, and uncompiled raw notes.
Wiki Builder does not replace that loop. It just removes the setup tax. You stop rebuilding scaffolding for every new topic and start putting energy into the part that actually matters, which is reading sources and shaping pages.
... continue reading