d26f20c316
Root Child DOX Index assembled, plus a per-module AGENTS.md across the tree (core/*, infrastructure/*, apps/*, testing/*, and docs/examples/frontend/etc), each following the DOX section shape: Purpose, Ownership, Local Contracts, Work Guidance, Verification, Child DOX Index.
36 lines
1.4 KiB
Markdown
36 lines
1.4 KiB
Markdown
# core/config — AGENTS.md
|
|
|
|
## Purpose
|
|
|
|
TOML configuration loading and live-reload: defines `CorrexConfig` (the top-level config shape), operator/project profiles, agent instructions, and read/write helpers.
|
|
|
|
## Ownership
|
|
|
|
CORREX kernel team. Config schema changes affect all consumers — coordinate with `apps/server` and `apps/cli`.
|
|
|
|
## Local Contracts
|
|
|
|
- `CorrexConfig` — top-level `@Serializable` config data class.
|
|
- `ConfigHolder` — mutable live config reference, updated on reload.
|
|
- `ConfigLoader` — reads TOML from disk; `CorrexConfigWriter` writes it back.
|
|
- `EditableConfig` — partial config for live patch operations (used by the TUI config editor).
|
|
- `OperatorProfile` — operator-level persona and behavior settings.
|
|
- `ProjectProfile` / `ProjectProfileLoader` / `ProjectProfileWriter` — project-scoped profile; loaded at session bind time.
|
|
- `AgentInstructions` / `AgentInstructionsLoader` — per-role prompt fragments loaded from config.
|
|
|
|
## Work Guidance
|
|
|
|
- Config is read from disk; it is not event-sourced. Do not add event/state/reducer structures here.
|
|
- `ConfigHolder` is the shared mutable reference injected into consumers. Never read the file directly in domain code — always go through `ConfigHolder`.
|
|
- `CorrexConfigWriter` regenerates TOML from the in-memory model; round-tripping loses comments by design.
|
|
|
|
## Verification
|
|
|
|
```bash
|
|
./gradlew :core:config:test --rerun-tasks
|
|
```
|
|
|
|
## Child DOX Index
|
|
|
|
No child AGENTS.md (leaf module).
|