(task_id: str)
| 809 | return claim_task(task_id, owner="agent") |
| 810 | |
| 811 | def run_complete_task(task_id: str) -> str: |
| 812 | return complete_task(task_id) |
| 813 | |
| 814 | def run_spawn_teammate(name: str, role: str, prompt: str) -> str: |
| 815 | return spawn_teammate_thread(name, role, prompt) |
nothing calls this directly
no test coverage detected