devto 2026-06-17 원문 보기 ↗
Most modern RAG systems work like this:
It works for simple use cases. But as AI agents become more autonomous and complex, a clear problem appears:
Agents don’t just need similar text chunks.
They need bounded, permission-safe, evidence-aware, and verifiable context.
This is why I started building CortexDB.
GitHub: https://github.com/AubakirovArman/CortexDB
CortexDB is a single-node, agent-native context database. Its main goal is to compile ContextPacks — structured, citation-rich, token-budgeted bundles of context for AI agents.
Instead of returning raw chunks, it returns a ready-to-use package that includes:
json
{
"token_budget_tokens": 4000,
"estimated_tokens": 2500,
"truncated": false,
"citations_required": true,
"cells": [...],
"anomalies": [...]
}