omnigraph/docs/releases/v0.3.1.md
Ragnor Comerford a335d98854
Refactor AGENTS.md from encyclopedia to map; move spec into docs/
Splits the 990-line AGENTS.md into a 184-line map (architecture,
where-to-find index, always-on invariants, capability matrix,
maintenance contract) plus 18 new docs/*.md files holding the deep
content per topic (storage, schema and query languages, indexes,
embeddings, branches/commits, runs, merge, changes, execution, policy,
server, CLI reference, audit, errors, CI, constants, v0.3.1 notes).

Adds scripts/check-agents-md.sh and a check_agents_md CI job that
verifies every docs/ link in AGENTS.md resolves and every doc in the
canonical set is linked. CLAUDE.md remains a symlink to AGENTS.md.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-28 23:31:08 +02:00

1 KiB

Omnigraph v0.3.1

Omnigraph v0.3.1 is a performance and operability point release.

Highlights

  • Parallel per-type load writes: the bulk loader writes to each node/edge table concurrently rather than serially, materially reducing wall-clock time on multi-table loads.
  • omnigraph optimize and omnigraph cleanup CLI commands: previously only available via the engine API. optimize runs Lance compact_files() across every node/edge table; cleanup runs Lance cleanup_old_versions() with a --keep/--older-than policy and requires --confirm for the destructive form.
  • Dst-id deduplication during edge expand hydration: avoids redundant lookups when the same destination id appears multiple times in an Expand step (#45).

Included Changes

  • Parallel per-type load writes (#46)
  • omnigraph optimize / cleanup CLI commands and runtime APIs (#46)
  • Dedupe dst ids before hydrating nodes in execute_expand (#45)

Upgrade Notes

No breaking changes. Existing v0.3.0 repos can be opened directly with v0.3.1.