mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-05-17 04:01:13 +00:00
Refresh README, quickstart, and the docs index around Browser, Desktop, A0 CLI, projects, memory, skills, profiles, and model presets. Add optimized scoped screenshots for Web UI, Browser, Desktop, and CLI workflows. Trim architecture-heavy developer pages toward DeepWiki handoffs so local docs stay focused on practical user guidance.
943 B
943 B
WebSockets
Agent Zero WebSocket architecture is documented in DeepWiki for Agent Zero.
This local page is only a handoff. Keeping the full protocol guide here would duplicate source-linked documentation and become stale.
When You Are Working On WebSockets
Start with the source and DeepWiki:
helpers/ws.pyhelpers/ws_manager.pyapi/ws_*.pywebui/js/websocket.js- WebSocket pages in DeepWiki
Keep These Rules In Mind
- Preserve authentication and CSRF checks.
- Keep payloads JSON-serializable.
- Prefer small, named events over large catch-all events.
- Test reconnects, timeouts, and duplicate deliveries.
- Keep user-facing behavior documented in the relevant guide, not in this protocol handoff page.