Aura Research: Local tool compiles documents into AI-navigable wiki with persistent memory

Aura Research is an open-source tool that compiles raw documents into an AI-navigable wiki with persistent memory. The tool runs 100% locally with no data leaving your machine.
How it works
The workflow consists of four main commands:
pip install aura-research
research init my-project
# copy docs into raw/
research ingest raw/
research compile
research query "your question"You drop a folder of raw documents (PDFs, papers, notes, code, supporting 60+ formats) and the LLM compiles them into a structured markdown wiki with backlinked articles, concept pages, and a master index. It then compresses everything into a .aura archive optimized for RAG retrieval, which the developer claims is approximately 97% smaller than raw source data.
Key design decisions
- No embeddings, no vector databases. Uses SimHash + Bloom Filters instead with zero RAM overhead
- Built-in 3-tier Memory OS (facts / episodic / scratch pad) so the LLM doesn't forget important context across sessions
- The wiki is just .md files, browsable in Obsidian, VS Code, or any markdown editor
- Works with any LLM provider (OpenAI, Anthropic, Gemini) or as an agent-native tool inside Claude Code/Gemini CLI where no API key is needed
- Everything runs locally with no data leaving your machine
The "no embeddings" approach
The developer deliberately avoided the standard RAG pipeline (chunk → embed → vector search). Instead, the LLM compiles knowledge into a well-structured wiki with an index. When you query, it reads the index, finds the 2-3 relevant articles, and only loads those. The approach assumes that if knowledge is properly organized, the LLM is smart enough to navigate a good file structure without needing a separate embedding model.
The tool is available on GitHub at https://github.com/Rtalabs-ai/aura-research and can be installed via PyPI with pip install aura-research.
📖 Read the full source: r/LocalLLaMA
👀 See Also

Freestyle Launches Sandboxes for AI Coding Agents with Live Forking
Freestyle provides cloud sandboxes for AI coding agents that start in ~500ms and feature live forking with <400ms pause, allowing full VM clones including memory state. They run full Debian with hardware virtualization on bare metal infrastructure.

ClearSpec: A Spec Generator to Reduce Hallucination in Claude Code
ClearSpec is a tool that generates structured specifications from plain English descriptions, connecting to GitHub repos to reference real file paths and dependencies, then uses those specs as prompts for Claude Code to provide better context.

Microsoft BitNet: 1-bit LLM inference framework for CPU and GPU
Microsoft released BitNet, an inference framework for 1-bit LLMs that achieves 1.37x to 6.17x speedups on CPUs and reduces energy consumption by 55.4% to 82.2%. It can run a 100B parameter model on a single CPU at 5-7 tokens per second.

Best-Backup: A Free Tool for OpenClaw Server and Docker Container Backups
The free tool best-backup provides robust backup capabilities for OpenClaw servers, including full server backups, specific folder backups, and Docker container backups, with features like compression, encryption using existing SSH keys, and integration with Google Drive.