-
Notifications
You must be signed in to change notification settings - Fork 0
Quick Start
This page gets Recollectium installed, initialized, and doing useful work quickly.
Linux and macOS:
curl -LsSf https://raw.githubusercontent.com/AlfonsoDehesa/recollectium/main/install.sh | shWindows PowerShell:
powershell -ExecutionPolicy Bypass -c "irm https://raw.githubusercontent.com/AlfonsoDehesa/recollectium/main/install.ps1 | iex"The bootstrap installer installs uv if needed, installs Recollectium as an isolated tool, prepares the configured embedding model, refreshes stale embeddings when needed, and installs shell completion where safe.
recollectium --version
recollectium --helpIf you installed with pip, pipx, or uv tool, run initialization once. Bootstrap installs run embedding maintenance automatically, but it is safe to run init again if you want to verify setup:
recollectium initThe first initialization downloads or prepares the configured local FastEmbed model cache. It also refreshes stale embeddings when existing memories need it. Time and size depend on the selected model, memory count, and network speed.
recollectium add --space user --type preference --content "I prefer concise technical answers."recollectium search-user "concise answers"Searches default to all user buckets. Add --type preference only when you deliberately want to narrow recall.
recollectium add --space workspace --workspace-uid recollectium --type decision --content "Use SQLite for local memory persistence."recollectium search-workspace "local persistence" --workspace-uid recollectiumrecollectium service start api
recollectium service status
recollectium service discoverThe default endpoint is http://127.0.0.1:8765.
recollectium service stop- Learn the model: Concepts
- Configure paths and service settings: Configuration
- Use every command: CLI Reference
- Run API or MCP services: Service Management
- Open the browser control plane: WebUI
- Connect an MCP client: MCP Server
- Call the local HTTP API: API Reference
FAQ
- Is Recollectium cloud-hosted?
- Does Recollectium encrypt the database?
- Does the API have authentication?
- Does the WebUI have authentication?
- Which embedding model does it use?
- Should agents search by type first?
- What is the difference between
dev serveandservice start api? - Can I run Core on one machine and an agent on another?
- Is the OpenCode plugin available?