mirror of
https://github.com/ultraworkers/claw-code-parity.git
synced 2026-04-23 05:06:12 +02:00
5ea138e680
Implements the runtime backbone for TaskCreate/TaskGet/TaskList/TaskStop/ TaskUpdate/TaskOutput tool surface parity. Thread-safe (Arc<Mutex>) registry supporting: - Create tasks with prompt/description - Status transitions (Created → Running → Completed/Failed/Stopped) - Message passing (update with user messages) - Output accumulation (append_output for subprocess capture) - Team assignment (for TeamCreate orchestration) - List with optional status filter - Remove/cleanup 7 new unit tests covering all CRUD + error paths. Next: wire registry into tool dispatch to replace current stubs.