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

Function run_create_task

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

create_taskFunction · 0.70

Tested by

no test coverage detected