Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Appendix: RFCs & Changelog

Deeper and internal references — design rationale, the change log, and the live-measurement / benchmark evidence behind the performance claims in this book. These live in the repository (not rendered into this book) so they can stay close to the code; the paths below are repo-relative.

Design RFCs (docs/rfcs/)

The accepted design RFCs that shape the current architecture. Where this book says “RFC 000N” it means one of these:

RFCTitleWhat it decides
docs/rfcs/0001-scope-newtype.mdScope newtype and ScopedLunaris<'a> typestateMulti-agent partition key — the validated Scope alphabet, the lunaris:{scope}:{kind}:{ulid} KV format, and why the typestate makes cross-scope leaks a compile error. (Its Postgres RLS section is historical: that backend was removed in 0.7.0.)
docs/rfcs/0004-extractor-tiers.mdExtractorTier typestate enum and laptop-floor default swapHistorical. Described the candle / Ollama / cloud-API extractor tiers and the default-model choice; the candle tier was deleted in the v0.6 llama.cpp-only cutover (docs/decisions/2026-07-10-llamacpp-only-cutover.md) — extractor is remote-only (LUNARIS_EXTRACT_PROVIDER) or NoopExtractor.
docs/rfcs/0006-verifier-default-swap.mdVerifier default swap: Gemma 3 27B → Gemma 3 270MHistorical. Why the verifier used to default to NoopVerifier with a candle verify-small laptop-floor build; superseded by the v0.6 llama.cpp-only cutover — the verifier is now remote-only (LUNARIS_VERIFY_PROVIDER) or NoopVerifier, no local model tiers.
docs/rfcs/0007-fallback-combinators.mdFallbackExtractor<P, F> / FallbackEmbedder<P, F> with per-provider circuit breakersThe v0.3 resilience primitives — the fan-out / fallback combinators referenced by the Cognee migration.

See also .planning/architect/blueprint.md — the canonical architecture document the RFCs amend, and docs/decisions/2026-07-10-llamacpp-only-cutover.md for the current (v0.6) inference-runtime decision.

Changelog & release scope

  • CHANGELOG.md — per-version change log (v0.1 → v0.2.x and beyond).
  • docs/RELEASE.md — current release scope and what lands in the next minor.
  • docs/migration/0.1-to-0.2.md — the 0.1 → 0.2 breaking-change guide (Scope, RLS role recipe, the documented v0.2.0 operational constraints).

Live-measurement & benchmark reports

  • LIVE-MEASUREMENT-REPORT.md — Lunaris ↔ Moon SDK/server contract-drift report; the live evidence behind the “sub-25 ms recall” moat (strict-replay p50 ≈ 10 ms / p99 ≈ 21 ms on the 2026-04-23 run).
  • docs/benchmarks/v0.2.x/README.md — reproducible benchmark harness + baseline numbers (the scripts, the SQuAD/replay setup, the env vars).
  • docs/benchmarks/v0.2.x/verifier-divergence.md — RFC 0006 §4 verifier divergence capture (the AS_OF-parity ScoreEpsilon story).
  • milestones/v0.1.1-bench/recovery-test.log — the crash-recovery evidence log referenced from Durability & Recovery.

Audits

  • docs/audits/v0.2.1-unwrap-audit.md — the v0.2.1 unwrap() / expect() audit (panic-surface review).
  • tmp/v0.2-code-review.md — the v0.2 release-gate code review (RC-1 … RC-4, P-1 … P-5; closure status tracked in docs/migration/0.1-to-0.2.md §10.3).

How this fits together

  • Conventions enforced in code review (Scope, HTTP DTO discipline, the grep-pinned invariants) live in the repository CLAUDE.md.
  • The generated rustdoc — built from cargo doc on every release — is the authoritative API surface; see API Reference.
  • Where this book disagrees with the Rust source, the source wins.