MCPcopy Create free account
hub / github.com/ScaleML/AgentSPEX / handle_task_create

Function handle_task_create

src/harness/agentic_loop/tools.py:37–42  ·  view source on GitHub ↗
(args: dict)

Source from the content-addressed store, hash-verified

35 """
36
37 def handle_task_create(args: dict) -> str:
38 task = task_board.create_task(
39 description=args["description"],
40 parent_id=args.get("parent_task_id"),
41 )
42 return f"Created {task.id}: {task.description}"
43
44 def handle_task_update(args: dict) -> str:
45 try:

Callers

nothing calls this directly

Calls 2

create_taskMethod · 0.80
getMethod · 0.80

Tested by

no test coverage detected