https://github.com/coreyt/fathomdb
Local datastore memory for AI agents — graph, vector, and full-text search.
https://github.com/coreyt/fathomdb
ai-agents database embedded-database fts graph-database sqlite vector-search
Last synced: 22 days ago
JSON representation
Local datastore memory for AI agents — graph, vector, and full-text search.
- Host: GitHub
- URL: https://github.com/coreyt/fathomdb
- Owner: coreyt
- License: mit
- Created: 2026-03-21T16:04:11.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-06-01T18:02:49.000Z (23 days ago)
- Last Synced: 2026-06-01T19:09:05.400Z (23 days ago)
- Topics: ai-agents, database, embedded-database, fts, graph-database, sqlite, vector-search
- Language: Rust
- Size: 25.4 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 42
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Agents: AGENTS.md
Awesome Lists containing this project
README
# FathomDB
FathomDB is a rewrite-in-progress centered on the `0.6.0` design corpus.
Repository layout:
- `docs/` contains public MkDocs source and client-facing technical positions.
- `dev/` contains internal engineering material: requirements, architecture,
ADRs, subsystem design, interface contracts, and planning notes.
- `src/` contains implementation roots and unit-test-adjacent code.
- `test/` contains cross-language, smoke, fixture, and performance assets that
are not package-local unit tests.
Implementation roots:
- Rust workspace members live under `src/rust/crates/`
- Python package root lives under `src/python/`
- TypeScript package root lives under `src/ts/`
Start here:
- Public docs: `docs/index.md`
- Internal docs index: `dev/README.md`
- Workspace checks: `scripts/check.sh`
Common commands:
```bash
cargo check --workspace
pip install -e src/python/
cd src/ts && npm install
mkdocs build --strict
```