From 68d081f5701bc44ac9de4d82eb33d4f860ba2c4c Mon Sep 17 00:00:00 2001 From: teknium1 <127238744+teknium1@users.noreply.github.com> Date: Sun, 10 May 2026 20:02:27 -0700 Subject: [PATCH] fix(kanban): keep '--created-by' default as 'user' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Out-of-scope behavior change in #23521 — the kanban notifier-routing fix also flipped the 'kanban create --created-by' default from 'user' to the active profile name. Revert to keep PR scope focused on the notifier ownership fix; the profile-aware author default can be its own change. --- hermes_cli/kanban.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hermes_cli/kanban.py b/hermes_cli/kanban.py index 21f7a7aa3dd..11b00da59ac 100644 --- a/hermes_cli/kanban.py +++ b/hermes_cli/kanban.py @@ -278,8 +278,8 @@ def build_parser(parent_subparsers: argparse._SubParsersAction) -> argparse.Argu "durations (90s, 30m, 2h, 1d). When exceeded, " "the dispatcher SIGTERMs (then SIGKILLs) the worker " "and re-queues the task.") - p_create.add_argument("--created-by", default=None, - help="Author name recorded on the task (default: active profile or user)") + p_create.add_argument("--created-by", default="user", + help="Author name recorded on the task (default: user)") p_create.add_argument("--skill", action="append", default=[], dest="skills", help="Skill to force-load into the worker " "(repeatable). Appended to the built-in "