Memory infrastructure for the Hero stack — collections, conversion, Q&A, ontology extraction, embeddings, retrieval
  • Rust 71.4%
  • HTML 16.3%
  • Shell 9.9%
  • Makefile 1.1%
  • JavaScript 1%
  • Other 0.3%
Find a file
despiegk b8a184e78b
Some checks failed
Test / test (push) Failing after 3s
remove buildenv.sh
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-08 07:10:04 +02:00
.forgejo/workflows fix(ci): green CI — clippy fixes + jsonwebtoken dev-dep + build-linux tag-only (#19) 2026-04-25 20:28:31 -04:00
crates feat(cli): forward HERO_MEMORY_AI_MODEL into hero_proc action env 2026-05-07 15:12:04 +02:00
docs feat(hero_memory): Phase 7 — three deploy modes via CLI flags 2026-05-05 15:14:50 +02:00
scripts feat: sessions 17-18 — native dioxus islands, new URL routing, OSIS auth fix, build safety 2026-04-12 09:58:06 -04:00
.gitignore chore(deps): commit Cargo.lock and bump herolib to dev tip with logger 2026-05-03 15:04:09 +02:00
build.sh chore: scaffold hero_memory workspace and documentation 2026-05-05 13:39:03 +02:00
Cargo.lock chore(deps): repoint hero_aibroker_sdk to development 2026-05-06 10:41:00 +02:00
Cargo.toml chore(deps): pin version on hero_aibroker_sdk and hero_db_sdk 2026-05-06 12:29:33 +02:00
download_models.sh Update README: quality is per-namespace, fix data storage structure 2026-01-22 15:49:56 +01:00
favicon.svg fix: update favicon.svg to match navbar search-heart icon 2026-02-10 16:17:28 -05:00
install.sh chore: scaffold hero_memory workspace and documentation 2026-05-05 13:39:03 +02:00
MACOS_ONNX_FIX.md chore: scaffold hero_memory workspace and documentation 2026-05-05 13:39:03 +02:00
Makefile feat(hero_memory): Phase 7 — three deploy modes via CLI flags 2026-05-05 15:14:50 +02:00
MAKEFILE_ROBUSTNESS.md docs: Add Makefile robustness and validation documentation 2026-02-08 13:46:59 +04:00
OAUTH_DEBUG.md chore: scaffold hero_memory workspace and documentation 2026-05-05 13:39:03 +02:00
openrpc.json fix: absolute binary paths, graceful shutdown, rename client to SDK 2026-02-28 18:42:47 +03:00
README.md chore: scaffold hero_memory workspace and documentation 2026-05-05 13:39:03 +02:00

Hero Memory

Hero Memory is the memory infrastructure for the Hero stack. A single service that ingests documents and code, organises them into collections, extracts Q&A pairs and ontological graph structure, generates embeddings, and serves retrieval to agents.

It owns the pipeline from raw bytes to retrievable memory. It is not a database (hero_db stores graph rows it produces) and it is not a model server (hero_aibroker answers LLM calls; hero_memory_inference runs the embedding models). It is the layer in between.

Documentation

  • PRD — product requirements: what hero_memory does and the interfaces it exposes.
  • ADRs — architecture decisions, with rationale.

Status

Specification phase. Implementation tracked via Forgejo issues against this repository.