youzhixiaomutou132 downloadsMaintain a Karpathy-style LLM Wiki with AI-assisted ingest, query, lint, and previewed file changes.
English | 简体中文
Auto LLM Wiki is an Obsidian plugin for maintaining a Karpathy-style LLM Wiki. It helps turn raw source notes into a persistent, structured wiki that compounds over time instead of re-deriving knowledge from scratch on every query.
The plugin defaults to this structure:
raw/ # immutable source notes
raw/assets/ # source attachments
wiki/ # LLM-maintained wiki pages
wiki/index.md # content index
wiki/log.md # newest-first ingest/query/lint log
All paths are configurable in the plugin settings.
.md, .txt, .csv, .tsv, .json, .yaml, .yml, .log, .ts, .js, .py, .go, .rs, .java, .cpp, .sql, .sh.html, .htm.doc, .docx, .rtf.xls, .xlsx.ppt, .pptx.pdf.png, .jpg, .jpeg, .webp, .gifPDFs and PPTX files are parsed directly when they contain readable text. PDF pages, PPTX slides, and image files only use vision OCR when text is not directly extractable.
Install dependencies:
npm install
Build the plugin:
npm run build
Copy these files into your Obsidian vault plugin directory:
<your-vault>/.obsidian/plugins/auto-llm-wiki/manifest.json
<your-vault>/.obsidian/plugins/auto-llm-wiki/main.js
<your-vault>/.obsidian/plugins/auto-llm-wiki/styles.css
Enable Auto LLM Wiki in Obsidian community plugin settings.
Open the plugin settings and configure:
Raw folder: folder containing immutable source files. Supported raw inputs include Markdown, plain text, CSV/TSV, common code files, HTML, PDF, PNG/JPEG/WebP/GIF images, DOC/DOCX, XLS/XLSX, PPT/PPTX, and RTF.
Wiki folder: folder where generated wiki pages should be written.
Assets folder: read-only attachment folder.
Index path: wiki index file path.
Log path: wiki log file path.
OpenAI API URL: chat completions endpoint, for example:
https://api.openai.com/v1/chat/completions
OpenAI API key: API key for your OpenAI-compatible provider.
OpenAI model: model name to use.
Auto ingest raw file changes: disabled by default. When enabled, supported raw file changes are analyzed automatically after a short debounce and validated model changes are applied without opening the review modal.
Third-party OpenAI-compatible providers can be used as long as the URL points directly to their /v1/chat/completions endpoint. Use Test OpenAI connection in settings to check whether the configured endpoint returns HTTP 2xx for the current URL, key, and model.
Put supported source files under the configured raw folder, such as Markdown, text, CSV/TSV, code, HTML, PDF, images, DOC/DOCX, XLS/XLSX, PPT/PPTX, or RTF.
Run the command:
Ingest active source into Auto LLM Wiki
Despite the command name, the current implementation scans the configured raw folder and processes only new or changed supported raw files. Text/code-like files are read directly, HTML is converted to readable text, Office documents, spreadsheets, presentations, and RTF files are extracted locally, and text-layer PDFs are extracted directly. Scanned or image-only PDF pages and image-only PPTX slides use vision OCR, and supported image files are sent to the configured OpenAI-compatible model for OCR before the extracted text is ingested. Files that have already been successfully applied are skipped until their content changes.
When Auto ingest raw file changes is enabled, the plugin watches the configured raw folder for supported file creations and modifications. After a short debounce, it runs the same ingest pipeline and automatically applies validated changes without opening the review modal. Auto ingest is disabled by default.
The command flow is:
Run:
Query Auto LLM Wiki
The plugin reads wiki context and asks the model to return a saveable change plan. You can review and apply the proposed result.
Run:
Lint Auto LLM Wiki
The plugin asks the model to look for stale claims, contradictions, orphan pages, missing cross-references, and data gaps.
indexPath and logPath must stay inside the configured wiki folder.This plugin sends selected vault content to the OpenAI-compatible chat completions endpoint configured in the plugin settings. During ingest, it sends new or changed raw text extracted from supported source files, including Markdown, text/code, HTML, PDFs, Office documents, spreadsheets, presentations, and RTF files; when OCR is needed, it sends rendered PDF page images, embedded PPTX slide images, or supported image files to the configured model. Wiki index/log context is included. During query and lint commands, it sends relevant wiki context. The Test OpenAI connection button sends a small ping-style chat completions request to the configured endpoint. No network request is made until you configure an API URL and API key and run a command or click the test button.
The API key is stored locally in Obsidian plugin data and is sent as an Authorization header only to the configured API URL. If you configure a third-party OpenAI-compatible endpoint, your API key and selected vault content are sent to that provider.
The plugin does not include telemetry, analytics, ads, or a self-update mechanism.
Run tests:
npm test
Build:
npm run build
The generated main.js is intentionally ignored by git and should not be committed.