fix(kanban): parse triage flag explicitly

This commit is contained in:
Eric Litovsky 2026-05-06 11:10:20 -06:00 committed by Teknium
parent 26bf45f8c5
commit 50d281495e
2 changed files with 49 additions and 1 deletions

View file

@ -509,7 +509,9 @@ def _handle_create(args: dict, **kw) -> str:
priority = args.get("priority")
workspace_kind = args.get("workspace_kind") or "scratch"
workspace_path = args.get("workspace_path")
triage = bool(args.get("triage"))
triage, bool_error = _parse_bool_arg(args, "triage")
if bool_error:
return tool_error(bool_error)
idempotency_key = args.get("idempotency_key")
max_runtime_seconds = args.get("max_runtime_seconds")
skills = args.get("skills")