From 8ec7465d8bd33ecf257b9d9ded4e8c5dcfaaddf9 Mon Sep 17 00:00:00 2001 From: Zhengshou Lai Date: Sun, 23 Aug 2026 18:52:29 +0800 Subject: [PATCH] =?UTF-8?q?fix(agents):=20=E4=BC=9A=E8=AF=9D=E6=A0=87?= =?UTF-8?q?=E9=A2=98=E8=BF=87=E6=BB=A4=20task-notification=20=E5=8D=8F?= =?UTF-8?q?=E8=AE=AE=E8=A1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- myagents/launcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/myagents/launcher.py b/myagents/launcher.py index bd2d49c..99b2ce4 100644 --- a/myagents/launcher.py +++ b/myagents/launcher.py @@ -779,7 +779,7 @@ def _sessions_dir(backend: str, chat_cwd: Path) -> Path: # Claude Code local-command protocol rows (not human chat); skip when picking # the first-prompt fallback title. _LOCAL_COMMAND_NOISE_RE = re.compile( - r"^\s*<(?:local-command-caveat|local-command-stdout|command-name)\b", + r"^\s*<(?:local-command-caveat|local-command-stdout|command-name|task-notification)\b", re.IGNORECASE, )