From 2bc7d510c1131bce8c9949860e38503185e1aace Mon Sep 17 00:00:00 2001 From: Nirav Patel Date: Sat, 22 Aug 2026 15:04:10 -0400 Subject: [PATCH] intake: assign kanban tasks to the default profile so the dispatcher claims them Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01YECpkAwQUwgu7NVy91R8fW --- bridge.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bridge.py b/bridge.py index 6551636..f2503a7 100644 --- a/bridge.py +++ b/bridge.py @@ -363,7 +363,7 @@ def intake_start_task(state: dict, post_id: str, entry: dict) -> None: raw = kanban("create", title, "--body", f"{content}\n\n(from Pulse post {post_id}, " f"ledger {entry['ledger_id'][:8]})", - "--created-by", "pulse-bridge", + "--created-by", "pulse-bridge", "--assignee", "default", "--idempotency-key", f"pulse-{post_id}", "--json") task = json.loads(raw) task_id = task["id"] if isinstance(task, dict) else task[0]["id"]