LLM Wiki Agent

Active
GitHub Python MIT

Description

A personal knowledge base agent that builds and maintains itself. Drop in sources and Claude automatically generates Wiki pages.

Key Features

  • Auto knowledge extraction - input documents, web pages, notes, AI auto-distills into Wiki entries
  • Structured generation - auto-identify topics, classifications, build indexes and cross-references
  • Continuous updates - knowledge base updates dynamically with new inputs, no manual maintenance
  • Searchable - built-in full-text search, supports natural language queries
  • Multi-source support - supports PDF, Markdown, URL, Notion and other data sources
  • Local-first - all data stored in local Markdown files, version-controllable

Use Cases

💡 Researchers use it to auto-build domain Wiki from papers and meeting notes.
💡 Enterprise knowledge management teams use it to auto-generate searchable knowledge bases from internal documents.
💡 Individual developers use it to auto-organize learning notes into structured knowledge systems.

Quick Start

```bash
# Clone the repo
git clone https://github.com/SamurAIGPT/llm-wiki-agent.git
cd llm-wiki-agent

# Configure Anthropic API Key
export ANTHROPIC_API_KEY="sk-ant-..."

# Start
python -m llm_wiki_agent --sources ./my-notes/
```

Related Projects