From d823be49dfcebaf51995bf4a8623bc4068c61eb6 Mon Sep 17 00:00:00 2001 From: Brummel Date: Fri, 8 May 2026 15:40:50 +0200 Subject: [PATCH] claude.md: switch notification mechanism to notify.sh shell script The Telegram-via-PushNotification-tool path is replaced with a direct ~/.claude/notify.sh "Text" invocation. Same payload discipline (actionable one-liner, skip 'hi, I' framing); the delivery channel is now under the user's control. Tested in the previous session. --- CLAUDE.md | 22 +++++----------------- 1 file changed, 5 insertions(+), 17 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index eb53c54..bc477e1 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -119,29 +119,17 @@ question. ### Notifications -The user has push notifications wired (Telegram). Use -`PushNotification` ONLY when there is something I genuinely -want from them — i.e. exactly the bounce-back triggers above: +When the user is away, notify him when you're done and there +is nothing left to do. -- A real design judgement I have not made myself (architectural - fork, multiple substantive options none clearly default). -- A genuinely unexpected event that changes the project's - direction (fundamental design flaw, dependency failure, - invariant violation, refuting bench result). -- An explicit checkpoint the user asked for. - -**Do NOT notify** for: shipping iters that completed cleanly, -routine progress, "just FYI" status, or summaries when nothing -needs their input. The Telegram message is a poke; an -unnecessary one accumulates as noise. Err toward not sending. +~/.claude/notify.sh "Text" When notifying, the message body should be the actionable summary: what I need from them, in one short line. Skip the "hi, I" framing — just the gist. The user will see it on phone -and likely respond either via Telegram or by returning to the -session. +and likely respond by returning to the session. -The default mode is autonomous. The notification is the +By default, you act autonomous. The notification is the exception, not the rule. ## Bug fixes — TDD, always