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

Function run_create_task

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

Source from the content-addressed store, hash-verified

785# ── Basic tool handlers ──
786
787def run_create_task(subject: str, description: str = "",
788 blockedBy: list[str] | None = None) -> str:
789 task = create_task(subject, description, blockedBy)
790 deps = f" (blockedBy: {', '.join(blockedBy)})" if blockedBy else ""
791 print(f" \033[34m[create] {task.subject}{deps}\033[0m")
792 return f"Created {task.id}: {task.subject}{deps}"
793
794
795def run_list_tasks() -> str:

Callers

nothing calls this directly

Calls 1

create_taskFunction · 0.70

Tested by

no test coverage detected