Show HN: Coding agent with algebraic memory (VSA) instead of RAG A developer released Raidho, an open-source coding agent that uses a hybrid architecture with separate models for reasoning and execution, plus a durable algebraic memory (VSA) instead of RAG. The agent reduces costs by up to 70% on repeated tasks and supports provider-agnostic backends including Claude, DeepSeek, and OpenAI. A coding agent that plans with one model, executes with another, and remembers what it learns. Most coding agents are one model in a tool loop. Raidho splits the work: use a smart, expensive model to reason and plan , a cheap, fast model to execute , and a durable memory that carries facts across runs — all provider-agnostic, with your own API key. The name is the rune Raidho ᚱ — "journey / movement". Status: alpha.Tested end-to-end live against both backends DeepSeek and Claude through the official Anthropic SDK, including the agentic tool-loop . A reproducible real-API benchmark ships in benchmarks/real task opus.py with full evidence evidence/2026-06-11 opus vs raidho/ : same task, same model — deterministic procedure $0.05 / context-first hybrid $0.116 / pure tool-loop $0.301; the hybrid matched the loop's report quality at ×2.6 less cost. APIs may change before 1.0. Reasoning ≠ execution. text mode reasoning, no tools and code mode agentic tool loop can run on different providers . Plan on Claude, grind on DeepSeek — you choose where the expensive thinking happens and where the cheap doing happens. Council mode. Have two providers debate a question and a neutral pass distill the consensus points of agreement, residual disagreements, recommendation — e.g. Claude vs DeepSeek. Depersonalized and provider-pluggable; no built-in personas. Durable, structural memory — persists across runs. The agent remembers subject, relation, object facts and recalls the relevant ones into its prompt each turn; it saves new ones itself via a remember tool, and council verdicts are distilled into facts automatically . Memory is written to disk per project