An elder brain for LLM agents: memory that never forgets,
reasons in chains, and sees connections others can't.
⚡ Quick Start · What is Helixir? · Contents
- What is Helixir?
- Philosophy
- Quick Start
- How It Works
- Generative memory — the Moirai — Clotho · Lachesis · Atropos
- Ontology
- Graph Schema
- MCP Tools
- Glossary — PPR, RRF, apophenia gate, the Moirai and the rest of the vocabulary
- CLI —
helixir setup+ driving the agents - Integration — Cursor, Claude Desktop
- Configuration
- Development
- Upgrading — version-by-version migration notes (v0.4 → v0.13)
Helixir gives AI agents memory that persists between sessions — and more than that: memory that reasons. When an agent starts a new conversation, it recalls past decisions, preferences, goals and the chains of reasoning behind them, not a flat log of similar text.
Every input is LLM-extracted into atomic facts, classified by ontology (8 types), linked to entities and to other facts by typed edges — causal (BECAUSE, IMPLIES, CONTRADICTS, SUPPORTS) and associative (RELATES_TO, PART_OF, IS_A) — and stored in one graph+vector engine. Retrieval is a hybrid of dense vectors, BM25 keyword search and graph traversal ranked by Personalized PageRank — with zero LLM calls on the read path, so it is exactly as fast on a local ollama model as on a cloud API.
Built on HelixDB (graph + vector database) with native MCP support for Cursor, Claude Desktop, Claude Code and any MCP-compatible client.
| Plain RAG memory | Helixir |
|---|---|
| Returns similar text chunks | Returns facts with provenance: what matched directly, what was pulled through which edge, and why |
| Append-only — grows forever | Curated writes: ADD / UPDATE / SUPERSEDE / NOOP decided per fact |
| No reasoning trail | Causal chains: A because B, A implies C — and connect_memories(A, B) finds the path between any two concepts |
| LLM in the retrieval loop | Read path is LLM-free: ~15–30 ms warm searches, fully local |
| Single-user silo | Shared graph: one fact, many knowers, consensus ranking, conflict detection |
| Silent overwrites | Memory charter: conflicting writes escalate to the agent as questions |
And recall is only the floor. Helixir now takes the next step — from retrieving chains to generating them: three background agents (the Moirai) weave a category layer over the graph and surface non-obvious cross-domain connections as hypotheses with provenance. See Generative memory.
Three principles drive every design decision; the long version lives in helixir/doc/design-rationale.md.
An elder brain forgets nothing. There is deliberately no delete tool. Outdated facts are superseded — the old version stays in history (HAS_HISTORY edges, valid_until), reachable forever. Why? Because the value of memory is not in single facts but in long chains between them: Rajasthan weather → guar harvest → guar gum price → fracking costs → shale stocks. A memory that prunes "irrelevant" facts destroys the middle of chains it cannot yet see. Time affects attention (what surfaces first), never reachability (what can be found through connections).
The writer pays, the reader flies. All expensive work — extraction, dedup decisions, relation inference — happens at write time. Reading is pure math over precomputed structure: no LLM, no re-embedding when warm. This is what makes a fully local setup (ollama + HelixDB) practical.
The memory does not gaslight its owner. Writes that conflict with what is already known — a reversed preference, a contradiction, anything destructive — are not resolved silently. They come back in add_memory.needs_clarification as ready-to-ask questions, governed by a human-editable memory charter: a constitution of rules the engine may never override.
And the charter learns. Every resolve_contradiction verdict becomes a precedent; after several identical verdicts the memory proposes a standing rule back to the agent (rule_proposal), ready to adopt with one add_memory call. Adopted rules render in the memory://rules resource beside the constitution — which itself never self-learns — and silence future questions of that shape. Corrections also win: a superseded fact ranks below its successor and returns flagged superseded: true with superseded_by naming the current version — history, honestly labelled, never hidden.
curl -fsSL https://raw.githubusercontent.com/nikita-rulenko/Helixir/main/install.sh | bashThe script will:
- Check prerequisites (Rust, Docker)
- Clone the repo and build from source
- Start HelixDB via Docker
- Deploy the graph schema
- Generate MCP config for your IDE
Or install manually:
git clone https://github.com/nikita-rulenko/Helixir.git
cd helixir
make build # Build release binary
make setup # Start HelixDB + deploy schema
make config # Print MCP config to paste into your IDE-
Rust 1.85+ — rustup.rs (the default build includes the local NLI judge, which needs 1.88+;
cargo build --no-default-featuresgives a lean core that builds on 1.85) -
Docker — for HelixDB (install)
-
HelixDB CLI v2.3.5 — the version matters. Helixir targets the v2 (LMDB) generation of HelixDB. CLI v3.x is NOT compatible: it runs a different engine (hyperscale over object storage), has no
helix check/helix build, and itshelix startnever compiles this repo's.hxschema — the gateway comes up withquery_count: 0and every Helixir call fails. Bothcurl install.helix-db.com | bashandcargo install helix-cliinstall latest (v3.x) — instead, install the pinned binary from the GitHub release:# substitute your platform: helix-aarch64-apple-darwin, helix-x86_64-apple-darwin, # helix-aarch64-unknown-linux-gnu, helix-x86_64-unknown-linux-gnu (WSL2), # helix-x86_64-pc-windows-msvc.exe curl -L -o ~/.local/bin/helix \ https://github.com/HelixDB/helix-db/releases/download/v2.3.5/helix-x86_64-unknown-linux-gnu chmod +x ~/.local/bin/helix helix --version # must print: Helix CLI 2.3.5
Preserved mirror (same binaries + source tag +
v2-ltsbranch, in case upstream ever drops v2): https://github.com/nikita-rulenko/helix-db/releases/tag/v2.3.5There is no public HelixDB server image: the CLI builds it locally, compiling this repo's schema into it (
install.sh/make setupdo this for you). If you already ran a v3 CLI here, delete its instance and containers first (docker rm -fanything fromghcr.io/helixdb/enterprise-dev), then redomake setupwith 2.3.5.
⚠️ Storage-mode trap (data loss). Newer HelixDB builds default to in-memory storage — stopping the instance ERASES everything unless it runs with disk persistence (helix start dev --diskfor CLI-managed instances; a mountedHELIX_DATA_DIRfor containers, as our compose and install script configure). After any HelixDB upgrade or fresh install, verify persistence: write a memory, restart the instance, confirm it survived. Hygieia'sstorage_not_persistentdetector also alarms when a serving database has no LMDB files in its data dir.
- API key — at least one LLM provider:
Input: "I deployed the server to AWS and prefer using Terraform"
|
LLM Extraction
|
+---------------+---------------+
| |
Memory: "I deployed Memory: "I prefer
the server to AWS" using Terraform"
type: action type: preference
| |
+-----+-----+ +-----+-----+
| | | |
Entity: Entity: Entity: Concept:
"AWS" "server" "Terraform" Preference
|
Phase 1: Personal search (dedup check)
Phase 2: Cross-user search (shared facts)
|
Decision: ADD / UPDATE / SUPERSEDE / NOOP
|
Memory charter check ── conflicts? ──> needs_clarification
| (agent asks the human)
Store in HelixDB (graph + vector)
MCP Server (stdio) IDE (Cursor / Claude Desktop)
| |
HelixirClient MCP Protocol
|
ToolingManager ──── FastThinkManager
| |
+----+----+----+ petgraph (in-memory)
| | | | |
Extract Decision Entity commit to DB
| Engine Manager |
Search | Ontology |
Engine Reasoning Manager |
| Engine | |
+----+----+----+-----------+
|
HelixDB Client (HTTP)
|
HelixDB (graph + vector database)
Curated output. Results are compacted before they reach the agent: capped at an honest top-K, deduplicated, and a raw source never coexists with its own extracted atoms in one window — the family collapses into its best-ranked member, with the folded ids kept reachable under
metadata.collapsed. Compaction of redundancy, never of content: the goal is spending the agent's context window on distinct facts, not repeats.
Query ──> embedding (cached) ──┬──> dense ANN (HelixDB HNSW) ──┐
└──> BM25 keyword (SearchBM25) ──┤
├──> RRF fusion
v
graph expansion: one batched HQL call per depth level
(8 edge families, parent provenance kept)
v
Personalized PageRank over the typed ego-network
final rank = 0.3·cosine + 0.5·PPR + 0.2·freshness
v
results with provenance: origin=seed|graph, edge, parent, ppr
Warm search: p50 ≈ 15–30 ms. Reasoning chains and connect_memories run on the same machinery — the read path works identically with no LLM configured at all.
Time windows & flashbacks.
search_memorytakes an explicit event-time window (time_from/time_to, RFC3339 orYYYY-MM-DD). The window hard-filters the seeds — the direct answers — but graph expansion stays exempt: a memory from outside the window that is linked to an in-window result returns anyway, flaggedflashback: truewith itsevent_date, capped by a separate small allowance (retrieval.flashback_max, default 3) so associations never crowd the period's own rows. Like human memory: thinking about last week can surface last year — but you know it's old.
The chain Rajasthan weather → guar harvest → guar gum → fracking cost → shale stocks is never a single stored edge — it runs through layers of abstraction. Helixir's next step is to generate those connections itself: three background agents, named for the Fates, spin a second axis over the flat graph and surface non-obvious cross-domain links — always as hypotheses with provenance, never asserted truth (the charter, extended from stored facts to generated connections).
- Clotho — the Spinner. Tags memories from a controlled, self-growing category vocabulary (embedding-match; on a miss it mints a fitting category via the LLM). Shared tags weave distant memories into subsets — a category layer that accretes over the graph from the corpus itself.
- Lachesis — the Measurer. Routes chains within the subsets and gates them against apophenia: a coherence gate (geometric-mean edge weight) plus PMI subset overlap — a thick, everything-touching category gates itself out by arithmetic. It drills every link down to the anchor memories that witness it. Her second duty is retroactive causal stitching: a bounded pass proposes entity-overlapping pairs of old memories, an LLM judge conservatively confirms explicit causation, and survivors become
BECAUSEedges taggedlachesis-stitch— causality the write path could not see because the two facts arrived days apart. - Atropos — the Cutter. Curates the survivors into ranked, deduplicated insights carrying provenance and a lifecycle (
proposed → verified → refuted).
The three run as one orchestrated pass — on demand or on a schedule via the daemon, with a per-Moira cadence (tag every pass, route insights every Nth). Each surviving insight is journaled and persisted back into the graph as a first-class hypothesis-memory under user_id=helixir, with SUPPORTS edges from its witness memories — so any connected agent can recall generated knowledge the same way it recalls stored facts. Drive and watch it all with the helixir CLI.
Status. The pipeline is built and validated end-to-end — the guar chain reconstructs as a single insight on clean data, and a live multi-agent corpus produced 5-hop cross-domain chains (weather → agriculture → petrochemicals → battery tech). Insight quality tracks tag/corpus hygiene; the provenance is what lets you tell signal from noise.
Every memory is classified into one of 8 concept types. The LLM extractor assigns the type during ingestion; search_by_concept retrieves memories by type.
| Type | What it captures | Example |
|---|---|---|
| fact | Objective knowledge, statements about the world | "Rust compiles to native code" |
| preference | Likes, dislikes, tastes, favorites | "I prefer dark mode in all editors" |
| skill | Abilities, competencies, expertise | "I can write fluent Python" |
| goal | Plans, aspirations, objectives | "I want to learn Japanese this year" |
| opinion | Subjective beliefs, judgments, viewpoints | "I think remote work is more productive" |
| experience | Past events, situations lived through | "I lived in Berlin for 3 years" |
| achievement | Accomplished milestones, completed goals | "I built a working compiler from scratch" |
| action | Specific tasks performed, operations executed | "I deployed the CI/CD pipeline yesterday" |
The concept types are organized into a tree stored in HelixDB:
Thing
├── Attribute
│ ├── Fact
│ ├── Preference
│ ├── Skill
│ ├── Goal
│ ├── Opinion
│ └── Trait
├── Event
│ ├── Action
│ ├── Experience
│ └── Achievement
├── Entity
│ ├── Person
│ ├── Organization
│ ├── Location
│ ├── Object
│ └── Technology
├── Relation
└── State
The hierarchy enables traversal: searching for "Attribute" returns all facts, preferences, skills, goals, and opinions. Entity types (Person, Organization, etc.) are used for extracted named entities.
Helixir stores everything as a typed graph: 18 node types (+ 5 vector-index types) connected by 37 edge types — including the category subgraph the Moirai weave over it (Category / CategoryEmbedding nodes; TAGGED_AS, SUBCATEGORY_OF, ALIAS_OF edges) for the generative layer.
| Node | Purpose | Key fields |
|---|---|---|
| Memory | Core unit — one atomic fact | content, memory_type, certainty, importance, user_id |
| User | Owner of memories | user_id, name |
| Entity | Named thing extracted from text | name, entity_type, aliases |
| Concept | Ontology node (Fact, Skill, Goal...) | name, level, parent_id |
| Context | Situational scope (work, personal...) | name, context_type |
| Session | Conversation session | session_id, status |
| Agent | AI agent that created a memory | agent_id, role, capabilities |
| HistoryEvent | Audit log entry for a memory | action, old_value, new_value, timestamp |
| MemoryChunk | Fragment of a long memory | content, position, token_count |
| Reasoning | Reasoning node | reasoning_type, confidence |
| Constraint | Rule applied in a context | rule, constraint_type, priority |
| MemoryEmbedding | Vector embedding (search index) | content, created_at |
| EntityEmbedding | Vector embedding for entity search | name |
| DocPage / DocChunk / CodeExample / ErrorCode | Documentation pipeline (reserved) | — |
All seven typed relations between memories persist as ONE physical edge —
MEMORY_RELATION — whose relation_type property names the type, so new
relation types need no schema change. Four are causal/logical (these form
reasoning chains and are what search_reasoning_chain walks); three are
associative/structural (relatedness without a causal claim; they surface
in get_memory_graph):
| relation_type | Kind | What it means |
|---|---|---|
| IMPLIES | causal | A logically leads to B |
| BECAUSE | causal | A is the reason for B |
| CONTRADICTS | causal | A conflicts with B |
| SUPPORTS | causal | A provides evidence for B |
| RELATES_TO | associative | Same topic / relatedness, no causal claim |
| PART_OF | associative | A is a part/component of B |
| IS_A | associative | A is a kind/instance of B |
Two dedicated memory→memory edges are written by the decision engine
(not the reasoning arsenal): SUPERSEDES (a new fact replaces an outdated
one — with reason and timestamp) and CONTRADICTS (a tracked, resolvable
conflict — with resolved / resolution_strategy for the reconcile pass).
Every type below is verified against the code: it has a writer query AND a Rust caller. (An edge type earns its place by three tests: a read-path algorithm walks it to answer a distinct question class; it has a reliable producer; and without it the reader would need an LLM call. Types that failed those tests were removed in v0.9.x — see UPGRADING.)
| Edge | From → To | What it means |
|---|---|---|
| HAS_MEMORY | User → Memory | User owns this memory (consensus user_count derives from these) |
| INSTANCE_OF | Memory → Concept | Memory is of this ontology type |
| TAGGED_AS | Memory → Category | Clotho's category tag (the Moirai substrate) |
| MENTIONS | Memory → Entity | Memory mentions this entity |
| EXTRACTED_ENTITY | Memory → Entity | Entity was LLM-extracted from this memory |
| RELATES_TO | Entity → Entity | Two entities are related (typed: works_at, uses, etc.) |
| PART_OF | Entity → Entity | Hierarchical entity relations |
| VALID_IN | Memory → Context | Memory applies in this context (work, personal...) |
| CREATED_IN | Memory → Session | Which session created this memory |
| AGENT_CREATED | Agent → Memory | Authorship provenance: this agent wrote it |
| HAS_HISTORY | Memory → HistoryEvent | Audit trail: who changed what and when |
| HAS_CHUNK | Memory → MemoryChunk | Memory split into chunks (long texts) |
| HAS_EMBEDDING | Memory → MemoryEmbedding | Memory's vector index for semantic search |
| HAS_SUBTYPE | Concept → Concept | Ontology hierarchy (Attribute → Skill) |
| IS_A | Concept → Concept | Dynamic ontology extension |
| CONCEPT_RELATED_TO | Concept → Concept | Cross-concept links |
| ALIAS_OF | Category → Category | Vocabulary convergence: near-synonym categories point at their canonical (Clotho wires these; mint-time convergence prevents new synonyms) |
Declared in the schema with a named producer, not yet wired end-to-end:
| Edge | From → To | Planned producer |
|---|---|---|
| ENTITY_HAS_EMBEDDING | Entity → EntityEmbedding | Entity-resolution v2: persisted vectors for cross-session entity dedup (fragmented entities break graph hubs) |
| CHUNK_TO_EMBEDDING | DocChunk → ChunkEmbedding | Reserved doc pipeline. Memory-chunk vectors were rejected (#86): chunks are raw-source storage; the retrieval unit is the extracted atom |
Everything else that used to sit in a "reserved" list — duplicate twins and an unbuilt documentation-ingestion subsystem — was removed from the schema in v0.9.x rather than left as fiction: a type without a producer misleads more than it reserves.
| Tool | What it does |
|---|---|
add_memory |
Extract atomic facts, deduplicate, store with entities and relations. Confirm-or-promise ack: ok:true with memory_ids inline, or {ok:true, status:"accepted", pending_id} under the ingest buffer. Charter conflicts come back in needs_clarification; already-known input is surfaced in deduped. Pass agent_id and the write auto-heartbeats your presence in the swarm |
get_add_status |
Poll a buffered add_memory by its pending_id (pending/processing/done/failed) |
search_memory |
Hybrid search (vector + BM25 + graph, PPR-ranked) with temporal mode (recent/contextual/deep/full) and scope (personal/collective/all). Every result carries provenance (origin, edge, parent, ppr) |
connect_memories |
"How is A related to B?" — bidirectional path discovery between two concepts; each anchor is a free-text query or an exact memory_id |
search_by_concept |
Filter by ontology type: skill, preference, goal, fact, opinion, experience, achievement, action |
search_reasoning_chain |
Traverse causal/logical connections: IMPLIES, BECAUSE, CONTRADICTS, SUPPORTS — LLM-free |
get_memory_graph |
Return memory as a graph of nodes and typed edges — causal (IMPLIES/BECAUSE/SUPPORTS/CONTRADICTS) plus associative (RELATES_TO/PART_OF/IS_A) |
list_memories |
Bulk dump for a user (newest first, no ranking) — for counting/auditing |
list_users |
Roster of identities (user_ids) for orientation — gated by the collective tier, privacy-safe (no emails/content); use it to find your own or a teammate's id |
swarm_status |
Rendezvous through the DB itself: the live agent roster (role, host, status, last-seen) — who else is working this memory right now. Collective-gated; presence comes from add_memory heartbeats, no side channel |
resolve_contradiction |
Answer a contradiction_review notice: confirm (my memory stands), retract (the disputing memory supersedes mine — history preserved) or preference (both coexist). Non-destructive in every branch |
update_memory |
Modify existing memory content |
search_incomplete_thoughts |
Find auto-saved incomplete FastThink sessions |
Isolated scratchpad for complex reasoning. Nothing pollutes long-term memory until you explicitly commit.
| Tool | What it does |
|---|---|
think_start |
Open a new thinking session |
think_add |
Add a reasoning step (types: reasoning, hypothesis, observation, question) |
think_recall |
Pull facts from long-term memory into the session (read-only) |
think_conclude |
Mark a conclusion |
think_commit |
Save the conclusion to long-term memory |
think_discard |
Discard the session without saving |
think_status |
Check session state: thought count, depth, elapsed time |
Flow: think_start → think_add (repeat) → think_recall (optional) → think_conclude → think_commit
If a session times out, partial thoughts are auto-saved with an [INCOMPLETE] tag and recoverable via search_incomplete_thoughts.
Beyond the MCP server, the helixir binary drives and monitors the generative agents:
helixir setup # interactive: configure + wire the MCP server into
# Claude Code / Claude Desktop / Cursor / Gemini CLI
helixir mode # show the privilege tier (solo | collective | insights)
helixir model download | status # fetch / inspect the local NLI judge (ONNX weights)
helixir gateway start | status | stop # serve MCP over the network (streamable-HTTP, #42)
helixir categories # the category dictionary + member counts (coverage)
helixir clotho grow --user <id> # tag a user's memories, growing the dictionary on misses
helixir lachesis route --seed <cat> # route a cross-domain subset thread (with witnesses)
helixir atropos # curate threads into ranked, journaled insights
helixir pipeline --user <id> # one orchestrated pass: Clotho → Lachesis → Atropos
helixir daemon start --user <id> --interval 600 # run passes in the background
helixir daemon status | stop # inspect / stop the background daemon
# per-Moira cadence: --clotho-every 1 --insight-every 3 --merge-every 5 --reconcile-every 5
# (1 = every pass, N = every Nth, 0 = never; defaults live in moira.daemon.* of helixir.toml)
helixir merge --limit <n> # run the NLI paraphrase backstop once (collective)
helixir journal | insights # activity + insight journals (with provenance)
helixir watch start | run --once | stop | status # Hygieia, the health watchdog:
# DB liveness (self-heals via docker restart when allowed), container memory
# pressure, orphaned daemons; alerts land as ops_alert notices IN the memory
helixir watch install | uninstall # run the watchdog as a login service
# (launchd / systemd user unit); watchdog.on_alert_cmd pushes each alert to
# a human too — shell hook with HELIXIR_ALERT_KIND/_SUMMARY in the env
helixir health # recent health events (health.jsonl)
helixir config get | set <k> <v> | edit | apply # the layered config, kubectl-style:
# edit ~/.helixir/helixir.toml (comments preserved), validate, then `apply`
# hot-reloads running MCP/gateway processes via SIGHUP — the client is rebuilt
# from the re-read file and swapped atomically, no Claude Desktop reboot.
# daemon/watch hold deeper snapshots and are listed as restart-to-apply.helixir setup is the fastest way to connect Helixir to your agents — it writes the helixir-local MCP entry into each client's config non-destructively (with a .bak backup), so you can skip the manual JSON below.
The quickest path is
helixir setup(above) — it detects your clients and writes the config for you. The manual JSON below is for reference or custom setups.
Make your agents use the memory well. Wiring the MCP server is step one; the
integration/templates (a drop-inAGENTS.mdand a ClaudeSKILLS.md) encode how an agent should recall before answering, capture durable facts, and reason with FastThink — the same rules the maintainers run, so your agents get the same quality.
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"helixir": {
"command": "/path/to/helixir-mcp",
"env": {
"HELIX_HOST": "localhost",
"HELIX_PORT": "6969",
"HELIX_LLM_PROVIDER": "cerebras",
"HELIX_LLM_MODEL": "gpt-oss-120b",
"HELIX_LLM_API_KEY": "YOUR_KEY",
"HELIX_EMBEDDING_PROVIDER": "openai",
"HELIX_EMBEDDING_MODEL": "nomic-embed-text-v1.5",
"HELIX_EMBEDDING_URL": "https://openrouter.ai/api/v1",
"HELIX_EMBEDDING_API_KEY": "YOUR_KEY"
}
}
}
}macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Same JSON structure as above.
Add to Cursor Settings > Rules so the agent actually uses its memory:
# Core Memory Behavior
- At conversation start, call search_memory to recall relevant context
- After completing tasks, save key outcomes with add_memory
- Use search_by_concept for skill/preference/goal queries
- Use search_reasoning_chain for "why" questions
# FastThink for Complex Reasoning
- Before major decisions, use FastThink to structure your reasoning
- Flow: think_start -> think_add (repeat) -> think_recall -> think_conclude -> think_commit
# What to Save
- ALWAYS save: decisions, outcomes, architecture changes, error fixes, preferences
- NEVER save: grep results, lint output, file contents, temporary data
All settings are passed as environment variables.
| Variable | Description |
|---|---|
HELIX_HOST |
HelixDB address (default: localhost) |
HELIX_PORT |
HelixDB port (default: 6969) |
HELIX_LLM_API_KEY |
API key for the LLM provider |
HELIX_EMBEDDING_API_KEY |
API key for the embedding provider |
| Variable | Default | Description |
|---|---|---|
HELIXIR_MODE |
solo |
Privilege tier: solo (private, no cross-user), collective (shared consensus), insights (+ generative Moirai) |
HELIX_LLM_PROVIDER |
cerebras |
cerebras, deepseek, ollama |
HELIX_LLM_MODEL |
gpt-oss-120b |
Model name |
HELIX_LLM_BASE_URL |
— | Custom endpoint (for Ollama or a self-hosted OpenAI-compatible API) |
HELIX_EMBEDDING_PROVIDER |
openai |
openai, ollama |
HELIX_EMBEDDING_URL |
https://openrouter.ai/api/v1 |
Embedding API URL |
HELIX_EMBEDDING_MODEL |
nomic-embed-text-v1.5 |
Embedding model |
HELIX_LLM_FALLBACK_CHAIN |
deepseek,ollama |
Ordered fallback tiers after the primary; empty value disables fallback |
HELIX_DEEPSEEK_API_KEY |
— | Credentials for the deepseek fallback tier |
RUST_LOG |
helixir=warn |
Log level |
Automatic fallback chain. When the primary LLM provider errors — a network outage or an exhausted quota — Helixir transparently retries the same request down an ordered chain, by default
deepseek → ollama(smart remote → cheap remote → local selfhost), and readopts the primary as soon as it recovers. Tiers missing credentials are skipped at boot, so without a DeepSeek key the chain simply degrades to local Ollama (llama3.2:3bby default — the 2026-07 laptop bake-off winner: causal contract green at ~2x the speed and half the RAM ofqwen2.5:7b). Tune viallm_fallback_chain = ["deepseek", "ollama"]+deepseek_api_keyinhelixir.toml, or the env vars above.
Cerebras + OpenRouter (recommended — fast inference, cheap embeddings)
HELIX_LLM_PROVIDER=cerebras
HELIX_LLM_MODEL=gpt-oss-120b
HELIX_LLM_API_KEY=csk-xxx # https://cloud.cerebras.ai
HELIX_EMBEDDING_PROVIDER=openai
HELIX_EMBEDDING_URL=https://openrouter.ai/api/v1
HELIX_EMBEDDING_MODEL=nomic-embed-text-v1.5
HELIX_EMBEDDING_API_KEY=sk-or-xxx # https://openrouter.ai/keysDeepSeek + OpenRouter (cheapest remote — ~$0.0001 per write)
HELIX_LLM_PROVIDER=deepseek
HELIX_LLM_MODEL=deepseek-v4-flash # non-thinking mode is selected automatically
HELIX_LLM_API_KEY=sk-xxx # https://platform.deepseek.com
HELIX_EMBEDDING_PROVIDER=openai
HELIX_EMBEDDING_URL=https://openrouter.ai/api/v1
HELIX_EMBEDDING_MODEL=nomic-embed-text-v1.5
HELIX_EMBEDDING_API_KEY=sk-or-xxx # https://openrouter.ai/keysFully local with Ollama (no API keys, fully private)
# Install Ollama: https://ollama.com
ollama pull llama3.2:3b
ollama pull nomic-embed-text
HELIX_LLM_PROVIDER=ollama
HELIX_LLM_MODEL=llama3.2:3b
HELIX_LLM_BASE_URL=http://localhost:11434
HELIX_EMBEDDING_PROVIDER=ollama
HELIX_EMBEDDING_URL=http://localhost:11434
HELIX_EMBEDDING_MODEL=nomic-embed-textmake build # Build release binary
make test # Run all tests
make check # cargo check + clippy
make run # Run MCP server locally (debug)
make deploy-schema # Deploy schema to running HelixDB
make docker-up # Start HelixDB container
make docker-down # Stop HelixDB container
make test-e2e-hive # Hive cross-user E2E (HelixDB + LLM + embeddings; set HELIX_* like MCP)Read-path E2E: two suites guard retrieval quality and the LLM-free property — run them with a deliberately dead LLM key:
HELIX_E2E=1 HELIXIR_RETRIEVAL_PROFILE=algo_opt HELIX_LLM_API_KEY=dead-key \
cargo test -p helixir --test read_path_e2e -- --ignored --nocapture # library level
HELIX_E2E=1 HELIXIR_RETRIEVAL_PROFILE=algo_opt HELIX_LLM_API_KEY=dead-key \
cargo test -p helixir --test mcp_read_e2e -- --ignored --nocapture # real MCP binary over stdioHive E2E: make test-e2e-hive runs hive_cross_user_collective_link_e2e (ignored by default in cargo test). It adds the same fact for two user_id values and asserts collective user_count ≥ 2 on the first memory. LLM decisions can be flaky—retry if needed.
helixir-rs/
helixir/
src/
bin/
helixir_mcp.rs # MCP server entry point
helixir_deploy.rs # Schema deployment CLI
helixir_bench.rs # Latency bench + live probes (--chain/--add/--connect-probe)
core/ # Config, client, search modes
db/ # HelixDB client
llm/ # LLM providers, extractor, decision engine
mcp/ # MCP server, params, cognitive protocol
toolkit/
tooling_manager/ # Main pipeline (add, search, CRUD, events)
mind_toolbox/ # Search engine, entity, ontology, reasoning
fast_think/ # Working memory (petgraph-based)
schema/
schema.hx # Node/edge definitions (18 nodes + 5 vectors, 37 edges)
queries.hx # HQL queries (153)
tests/ # E2E suites: read_path (library) + mcp_read (stdio transport)
memory-charter.md # Write-path constitution: what may never be decided silently
doc/ # Engineering docs (architecture, dataflow, design rationale)
Dockerfile
docker-compose.yml
MIT © 2025-2026 Nikita Rulenko
- HelixDB — graph + vector database
- MCP Specification — Model Context Protocol
- Cerebras — fast LLM inference (free tier)
- OpenRouter — unified LLM/embedding API
