feat: unify card runtime and event-driven web ui
Some checks failed
CI / Backend Checks (push) Failing after 36s
CI / Frontend Checks (push) Failing after 40s

This commit is contained in:
kacper 2026-04-06 15:42:53 -04:00
parent 0edf8c3fef
commit 4dfb7ca3cc
105 changed files with 17382 additions and 8505 deletions

43
ARCHITECTURE_TODO.md Normal file
View file

@ -0,0 +1,43 @@
# Architecture TODO
This file tracks the current architecture cleanup work for the Nanobot web app.
## Card Platform
- [x] Move all template-backed cards to the dynamic `card.js` runtime.
- [x] Remove inline-script fallback execution from the frontend shell.
- [x] Keep the card runtime contract documented and stable.
- [x] Validate every template card automatically in CI/local checks.
- [x] Add lightweight fixture coverage for mount/update/destroy behavior.
## Template Source Of Truth
- [x] Treat `~/.nanobot/cards/templates` as the live source of truth.
- [x] Sync repo examples from the live template tree with a script instead of manual copying.
- [x] Make template drift a failing quality check.
## Backend Structure
- [x] Split card persistence/materialization out of `app.py`.
- [x] Split session helpers out of `app.py`.
- [x] Split Nanobot transport/client code out of `app.py`.
- [x] Keep HTTP routes thin and push domain logic into service modules.
## Frontend Structure
- [x] Split `useWebRTC.ts` into transport, sessions, cards/feed, and workbench modules.
- [x] Reduce `App.tsx` to layout/navigation concerns only.
- [x] Keep `CardFeed.tsx` focused on rendering, not domain mutation orchestration.
## Updates And Reactivity
- [x] Replace polling-heavy paths with evented updates where possible.
- [x] Keep card updates localized so a live sensor refresh does not churn the whole feed.
## Remaining Cleanup
- [x] Move backend startup state into FastAPI lifespan/app state.
- [x] Stop importing private underscore helpers across app boundaries.
- [x] Split the backend route surface into router modules.
- [x] Split the card runtime renderer into loader/host/renderer modules.
- [x] Replace async tool-job polling with an evented stream.