Claude Board uses Tauri’s event system for real-time communication between the Rust backend and the frontend. All board updates, terminal logs, and usage metrics are delivered through Tauri events.Documentation Index
Fetch the complete documentation index at: https://docs.claboard.dev/llms.txt
Use this file to discover all available pages before exploring further.
Listening for Events
Subscribe to events on the frontend using the Tauri events API:Task Events
task:created
Emitted when a new task is added to any project.task:updated
Emitted when a task’s fields or status change.task:deleted
Emitted when a task is removed.Agent Events
task:log
Streamed in real-time as the Claude agent produces output.claude, tool, tool_result, system, error
task:usage
Periodic token usage updates for a running task.claude:limits
Emitted when the agent encounters API rate limits.claude:finished
Emitted when the Claude agent process exits.Collaboration Events
agent:file_conflict
Emitted when multiple agents access the same file simultaneously (specifically on Write/Edit operations).task:test_started
Emitted when auto-test verification begins.task:test_completed
Emitted when auto-test verification finishes.All events are emitted globally. Filter by
projectId or taskId on the frontend to show only relevant updates.