MCPcopy Index your code
hub / github.com/shareAI-lab/learn-claude-code / run_create_task

Function run_create_task

s12_task_system/code.py:217–222  ·  view source on GitHub ↗
(subject: str, description: str = "",
                    blockedBy: list[str] | None = None)

Source from the content-addressed store, hash-verified

215# Task tools
216
217def run_create_task(subject: str, description: str = "",
218 blockedBy: list[str] | None = None) -> str:
219 task = create_task(subject, description, blockedBy)
220 deps = f" (blockedBy: {', '.join(blockedBy)})" if blockedBy else ""
221 print(f" \033[34m[create] {task.subject}{deps}\033[0m")
222 return f"Created {task.id}: {task.subject}{deps}"
223
224
225def run_list_tasks() -> str:

Callers

nothing calls this directly

Calls 1

create_taskFunction · 0.70

Tested by

no test coverage detected