docs(todo): add urgent error handling audit task

This commit is contained in:
Hibryda 2026-03-17 06:33:41 +01:00
parent 1ac6b69311
commit bfc01192d2

View file

@ -1,5 +1,9 @@
# Agents Orchestrator — TODO
## URGENT
- [ ] **Comprehensive error handling** — Every IPC call, bridge function, and async operation must have proper error handling with user-visible feedback. Current state: most errors are console.error() only (silent to user). Audit needed across all Rust commands (map_err patterns), all frontend bridge calls (missing .catch()), all Svelte components (no error states displayed). Add: ProError enum in agor-pro, toast notifications on failures, loading/error states in all settings components, retry logic for transient failures. Rule 02 (Error Handling) violations are blocking issues.
## Dual-Repo & Commercial
- [ ] **Pro Svelte components** — AnalyticsDashboard, SessionExporter, AccountSwitcher components + wire into ProjectBox Pro tab. Rust backend and bridge done.