Intus: (Latin) Within, inside, inward.
Intus is a robust, privacy-first Local Autonomous Agent and System Sidecar for your terminal. It empowers you to interact with your local file system, knowledge bases, and the web through a context-aware AI interface, all while keeping your data strictly local (via Ollama).
- 🛡️ Privacy First: Built for local models. Your data stays on your machine.
- 🧠 Local RAG (Retrieval-Augmented Generation):
- Named Knowledge Bases: Define "Work", "Personal", or "Code" folders in your config.
- Context Isolation: Search results are strictly segregated to prevent data leaks.
- Background Indexing: Add massive folders without freezing the UI.
- ⚡ Autonomous Tools:
- Safe Code Editing: Line-based editing (
edit_file) prevents "hallucinated" file corruption. - Web Research: Search the web and read pages (via SearXNG) with auto-summarization.
- System Control: Execute shell commands, manage git, and inspect files.
- Safe Code Editing: Line-based editing (
- 🎨 Polished UX:
- Auto-Naming Sessions: "fix_bug_ui" instead of "Session 1".
- Transient Notifications: Real-time status updates for background tasks.
- Rich TUI: Markdown rendering, syntax highlighting, and smooth scrolling.
- Rust:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh - Ollama: Download & Install
- SearXNG (Optional): For web search capabilities. See SearXNG Setup below.
brew tap harryw1/intus
brew install intusOr install directly from the formula:
brew install --HEAD https://raw.githubusercontent.com/harryw1/intus/master/homebrew/intus.rbDownload the latest pre-built binary for macOS or Linux from the Releases page.
git clone https://github.com/harryw1/intus.git
cd intus
cargo build --release
./target/release/intusIntus creates a config file at ~/.config/intus/config.toml on first run.
Recommended Setup:
[knowledge_bases]
work = "~/Documents/Work"
personal = "~/Notes"
projects = "~/Code"
[server]
ollama_url = "http://localhost:11434"
searxng_url = "http://localhost:8080"SearXNG is a privacy-respecting metasearch engine. To enable web search in Intus, run SearXNG locally via Docker:
docker run -d --name searxng -p 8080:8080 searxng/searxngVerify it's running by visiting http://localhost:8080 in your browser.
For more configuration options, see the SearXNG documentation.
| Key | Action |
|---|---|
Ctrl+o |
Select Model |
Ctrl+r |
Manage Sessions |
Ctrl+s |
Edit System Prompt |
Ctrl+l |
Clear History |
F1 |
Help Menu |
Esc |
Normal Mode (Vim-style navigation) |
i |
Insert Mode |
Intus is built with the Rust TUI ecosystem:
- Ratatui: UI Rendering.
- Tokio: Async runtime for non-blocking tools.
- Local Embeddings: Uses
nomic-embed-text(via Ollama) for vector search.
See CONTRIBUTING.md for development setup and guidelines.
See CHANGELOG.md for version history.
MIT