Discover and explore top open-source AI tools and projects—updated daily.
lewisluluLLM agent skill for building persistent, cross-linked Markdown knowledge bases
New!
Top 72.1% on SourcePulse
Summary
This project provides an experimental agent skill for OpenClaw/Codex designed to build persistent, LLM-compiled knowledge bases. It shifts from reactive RAG retrieval to proactive knowledge synthesis, allowing information to compound over time, with the LLM managing writing and cross-referencing.
How It Works
The core approach involves an LLM compiling raw sourced documents into a structured, cross-linked Markdown wiki. Unlike RAG, which re-retrieves documents per query, this method synthesizes knowledge into a persistent, evolving resource. The LLM handles all writing, cross-referencing, and bookkeeping, enabling knowledge to compound and become richer with each interaction.
Quick Start & Requirements
cp -r llm-wiki/ ~/.claude/skills/llm-wiki/).python3 llm-wiki/scripts/scaffold.py ~/my-wiki "My Research Topic"~/my-wiki/raw/articles/."ingest raw/articles/my-article.md""what does the wiki say about X?"python3 llm-wiki/scripts/lint_wiki.py ~/my-wikinpm install and npm run build in audit-shared and web directories.cd web && npm start -- --wiki "/path/to/your/wiki-root" --port 4175npm install, npm run build, npm run link in plugins/obsidian-audit, then enable in Obsidian.Highlighted Details
plugins/obsidian-audit/) for in-vault text selection and audit filing.web/) rendering wikis with Mermaid, KaTeX, and wikilinks, supporting feedback submission.audit-shared/) ensures byte-identical audit file structures between Obsidian and the web viewer.lint_wiki.py script performs a 7-pass health check on the wiki's integrity.Maintenance & Community
Feedback is primarily collected via GitHub issues. The project is inspired by Andrej Karpathy's llm-wiki Gist and related community efforts.
Licensing & Compatibility
The project is released under the MIT license, which is permissive for commercial use and integration into closed-source projects.
Limitations & Caveats
This skill is experimental and subject to iteration and change over time.
1 week ago
Inactive