MCPcopy
hub / github.com/shareAI-lab/learn-claude-code / Task

Class Task

s12_task_system/code.py:53–59  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

51
52@dataclass
53class Task:
54 id: str
55 subject: str
56 description: str
57 status: str # pending | in_progress | completed
58 owner: str | None # Agent name (multi-agent scenarios)
59 blockedBy: list[str] # Dependency task IDs
60
61
62def _task_path(task_id: str) -> Path:

Callers 3

create_taskFunction · 0.70
load_taskFunction · 0.70
list_tasksFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected