diff options
| author | Craig Jennings <c@cjennings.net> | 2026-05-26 02:01:08 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-05-26 02:01:08 -0500 |
| commit | 15cca70d2b8badd3314b87d4cd00cb21bf5ef113 (patch) | |
| tree | 282ba0201019496f5d3f94e5ff65c3383008bf98 /.ai/scripts/cross-agent-comms/cross-agent-watch | |
| parent | f9c72c817290bb5433e593b2a8d1cfaa25431d20 (diff) | |
| download | rulesets-15cca70d2b8badd3314b87d4cd00cb21bf5ef113.tar.gz rulesets-15cca70d2b8badd3314b87d4cd00cb21bf5ef113.zip | |
feat(notify): default page notifications to --persist
I default page notifications to --persist so a page that fires while I'm away from the desk waits for me instead of auto-dismissing after a few seconds.
page-me and status-check already persisted every page. I added --persist to the rest: the alarm, reminder, and meeting-alert examples in protocols.org, the long-running-process completion ping, and the cross-agent-watch message notification. I documented --persist as the default for any page meant to get attention, with a low-value informational ping as the only exception.
Diffstat (limited to '.ai/scripts/cross-agent-comms/cross-agent-watch')
| -rwxr-xr-x | .ai/scripts/cross-agent-comms/cross-agent-watch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.ai/scripts/cross-agent-comms/cross-agent-watch b/.ai/scripts/cross-agent-comms/cross-agent-watch index 3978f49..f50ba26 100755 --- a/.ai/scripts/cross-agent-comms/cross-agent-watch +++ b/.ai/scripts/cross-agent-comms/cross-agent-watch @@ -101,6 +101,6 @@ inotifywait -m -e create,moved_to --format '%w%f' "${EXISTING[@]}" 2>/dev/null \ [[ $QUIET -eq 0 ]] && echo "[$iso] $proj: $filename" if [[ $NO_NOTIFY -eq 0 ]]; then - notify info "Cross-agent message" "${proj}: ${filename}" 2>/dev/null || true + notify info "Cross-agent message" "${proj}: ${filename}" --persist 2>/dev/null || true fi done |
