CortexDB · docs

CortexDB 0.9.5 — the Code Intelligence Plane

The largest release since 0.9.0: CortexDB now has a code plane — a typed, versioned memory of your source code that recall and answers can draw on, built across four new crates and ~21 new /v1/code/* routes. Alongside it: the 10X performance campaign (boot in seconds instead of minutes, ~50 % artifact-compile cost cut, a two-tier LLM response cache), answer-free context preview, and a tl;dv connector bug-fix batch in cortexdb-connectors 0.2.15.

Compatibility: the /v1 API surface is purely additive (one new optional field on POST /v1/answer; everything else lives under the new /v1/code/* family). 0.9.x data directories load without a migration step — several stores switched to faster binary snapshot formats (FSN3, BTP2, LYS3) but all keep legacy read-compat. The code plane is off by default and free when off: with CORTEX_CODE_PLANE unset nothing is constructed and /v1/code/* answers 503 CODE_PLANE_DISABLED.

The Code Intelligence Plane (the headline)

CortexDB indexes registered source repositories into a content-addressed, generation-pinned code graph — definitions, imports, calls, framework/runtime resources — and serves it with honest precision labels. Every fact carries a precision tier (Syntax / Manifest / Compiler / History / Runtime) and a resolution status (Exact, ImportScoped, Ambiguous{candidates}, Unresolved, Dynamic), and both travel into the answer. There is no global name-match fallback anywhere — "never guess" is a permanent regression test, not a guideline. Reference: docs/CODE_PLANE.md; design docs/CODE_INTELLIGENCE_PLANE_DESIGN.md; operator quickstart in PRODUCTION_CONFIG.md.

What's in it:

10X performance campaign

Boot, RAM, and LLM-cost work across the facts/artifact planes (docs/ENV_10X.md has the full env-var reference):

Answers & recall

Connectors 0.2.15 — code-plane anchors + tl;dv bug fixes

Compatibility