-
Notifications
You must be signed in to change notification settings - Fork 11
Agent Skill Installation Guide
Rick Hightower edited this page Feb 2, 2026
·
1 revision
Complete installation options for Agent Brain v2.0.0 with pluggable providers and GraphRAG support.
- Python 3.10 or higher
- pip (Python package manager)
- Optional: Ollama for local embeddings/summarization
Installs core RAG functionality with hybrid search (BM25 + semantic):
pip install agent-brain-rag==2.0.0 agent-brain-cli==2.0.0Includes knowledge graph capabilities with SimplePropertyGraphStore:
pip install "agent-brain-rag[graphrag]==2.0.0" agent-brain-cli==2.0.0Includes GraphRAG with Kuzu database backend for production use:
pip install "agent-brain-rag[graphrag-all]==2.0.0" agent-brain-cli==2.0.0| Extra | Includes | Use Case |
|---|---|---|
| (none) | Core RAG, ChromaDB, BM25, LlamaIndex | Basic document search |
graphrag |
+ langextract, SimplePropertyGraphStore | Development GraphRAG |
graphrag-all |
+ Kuzu database | Production GraphRAG |
For contributors or local development:
# Clone repository
git clone https://github.com/SpillwaveSolutions/agent-brain.git
cd agent-brain
# Install in editable mode
pip install -e "./agent-brain-server[dev]"
pip install -e "./agent-brain-cli[dev]"
# Or use Poetry
cd agent-brain-server && poetry install
cd ../agent-brain-cli && poetry install# Check CLI version
agent-brain --version
# Check server package
python -c "import agent_brain_server; print(agent_brain_server.__version__)"
# Verify all dependencies
agent-brain verify| Component | Requirement |
|---|---|
| Python | 3.10+ |
| RAM | 2GB (4GB recommended) |
| Disk | 500MB + index storage |
| Component | Requirement |
|---|---|
| Python | 3.10+ |
| RAM | 4GB (8GB recommended) |
| Disk | 1GB + index storage |
# Upgrade pip first
pip install --upgrade pip
# Try with --no-cache-dir
pip install --no-cache-dir agent-brain-rag agent-brain-cli# Create virtual environment
python -m venv agent-brain-env
source agent-brain-env/bin/activate # Linux/macOS
# or
.\agent-brain-env\Scripts\activate # Windows
pip install agent-brain-rag agent-brain-cliOn some systems, ChromaDB may require additional build tools:
# Ubuntu/Debian
sudo apt-get install build-essential
# macOS
xcode-select --install
# Then reinstall
pip install --no-cache-dir agent-brain-ragKuzu requires a C++ compiler:
# Ubuntu/Debian
sudo apt-get install g++
# macOS (already included with Xcode)
xcode-select --installpip uninstall agent-brain-rag agent-brain-cli -yAfter installation:
- Design-Architecture-Overview
- Design-Query-Architecture
- Design-Storage-Architecture
- Design-Class-Diagrams
- GraphRAG-Guide
- Agent-Skill-Hybrid-Search-Guide
- Agent-Skill-Graph-Search-Guide
- Agent-Skill-Vector-Search-Guide
- Agent-Skill-BM25-Search-Guide
Search
Server
Setup
- Pluggable-Providers-Spec
- GraphRAG-Integration-Spec
- Agent-Brain-Plugin-Spec
- Multi-Instance-Architecture-Spec