mirror of
https://github.com/RedWizardsLab/EchoHub.git
synced 2026-09-04 00:26:07 +02:00
Generated by AurionDocs
Job ID: c99fff50-67a3-4294-b4df-3e73f4f12de9
Source commit: 4dcb480
19 lines
1.1 KiB
Markdown
19 lines
1.1 KiB
Markdown
# Agent Context Pack — HueByte/EchoHub
|
|
|
|
Machine-oriented context for AI coding agents, generated deterministically from
|
|
the repository's symbol graph (no LLM involved). Reading this pack instead of
|
|
scanning the source tree saves tokens: one map read plus targeted doc lookups
|
|
replaces repeated file reads and greps.
|
|
|
|
| File | What it is | When to read it |
|
|
|---|---|---|
|
|
| [repo-map](repo-map.md) | Subsystem map + most-connected symbols | First — orientation |
|
|
| [symbol-graph.json](symbol-graph.json) | Full queryable symbol graph (kind, file, subsystem, complexity, dependencies, doc path) | To trace exact dependencies or find a symbol |
|
|
| `../Code/**` | Per-file generated documentation | For the behaviour of a specific file |
|
|
| `../Synthesis/Architecture.md` | Cross-cutting architecture narrative + diagram | For the big picture |
|
|
|
|
Suggested workflow: read `repo-map.md`; locate the symbols relevant to your task in
|
|
`symbol-graph.json` (each carries a `doc` path and `dependsOn` edges); open only
|
|
those docs/sources. The pack is regenerated on every full documentation run, so it
|
|
matches the commit recorded in the graph's `commit` field.
|