aboutsummaryrefslogtreecommitdiffstats
path: root/CLAUDE.md
diff options
context:
space:
mode:
authorChristophe Besson <cbesson@gmail.com>2026-09-24 18:30:10 +0200
committerChristophe Besson <cbesson@gmail.com>2026-09-24 18:30:10 +0200
commit387138410532daad174ed602fd03f4f979cd3d81 (patch)
tree56d2d7d86bd34a1db02d2c5aa7891ca374948b88 /CLAUDE.md
parent6e9afe3e54ab6fb0162393150b7892655b4561d4 (diff)
downloadmeshbay-387138410532daad174ed602fd03f4f979cd3d81.tar.gz
refactor(node): move per-app enrichment out of NodeDaemon
The _enrich_*/_reenrich_* methods and _on_enriched become EnrichmentMixin in meshbay_node/enrichment.py, with the two directory helpers only they use. APP_DIR_KEYS stays on NodeDaemon. Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com>
Diffstat (limited to 'CLAUDE.md')
-rw-r--r--CLAUDE.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/CLAUDE.md b/CLAUDE.md
index a585549..41a5056 100644
--- a/CLAUDE.md
+++ b/CLAUDE.md
@@ -880,7 +880,7 @@ here are kept only where they are a rule about *editing* the code.
| Local control API | `meshbay_node/ui/app.py` | JSON only, loopback + per-run token. Each operation endpoint is one `_op(...)` line |
| Roster, identities, devices, invites, group settings | `meshbay_node/roster.py` | §3.3, §3.4 |
| Roots, availability, eject/plug | `meshbay_node/roots.py`, `config.py` | §6.2 |
-| Indexing, hashing, enrichment | `meshbay_node/indexer/` — `indexer.py`, `cache.py`, `group_index.py`, `enrich*.py`, `title_parse.py` | §6.3 |
+| Indexing, hashing, enrichment | `meshbay_node/indexer/` — `indexer.py`, `cache.py`, `group_index.py`, `enrich*.py`, `title_parse.py`; `meshbay_node/enrichment.py` — which files each app enriches, and when (NodeDaemon mixin) | §6.3 |
| Transfer leases and queueing | `meshbay_node/transfers.py` | §5.5. Deliberately free of asyncio and of the transport |
| Uploads, resume state | `meshbay_node/uploads.py` | §6.4 |
| WebRTC transport and every MNP handler | `meshbay_node/transport/webrtc_server.py` | the big one; framing, shared limits and one-shot ffmpeg jobs are in `transport/webrtc/`, handlers for one app only in `transport/webrtc/apps/` |