After ADR-117/118 docs sweep (commit 4075b608) extracted Use Cases,
How It Works, Edge Modules, Self-Learning sections from README into
docs/use-cases.md + docs/architecture.md, but two classes of links
were left dangling:
1. README anchor links pointing at section IDs that no longer exist
in README:
#edge-intelligence-adr-041 → moved to docs/use-cases.md
#esp32-s3-hardware-pipeline → architecture detail in docs/
#vital-sign-detection → moved out
#sensing-server → moved out
#-quick-start → renamed during slim
Replaced with deep links into docs/use-cases.md or docs/dev-handbook.md
/ docs/architecture.md where appropriate.
2. Extracted docs (docs/use-cases.md etc.) had path links written from
the perspective of repo root (docs/edge-modules/, v2/crates/...) —
broken once the file moved into docs/. Bulk-rewrote via Python
regex pass:
docs/edge-modules/X → edge-modules/X
docs/adr/X → adr/X
v2/... → ../v2/...
archive/... → ../archive/...
scripts/... → ../scripts/...
plugins/... → ../plugins/...
firmware/... → ../firmware/...
3. docs/use-cases.md self-reference #ai-backbone-ruvector → that
section was never moved; replaced with prose + link to
architecture.md.
Final scan: ZERO dangling anchors in the doc tree. One valid
anchor `#edge-module-list` in use-cases.md points to a local
`<details id="edge-module-list">` block.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>