[18.0] [IMP] spreadsheet_oca: KPI alerts with cron-based cell monitoring - #100
Open
dnplkndll wants to merge 3 commits into
Open
[18.0] [IMP] spreadsheet_oca: KPI alerts with cron-based cell monitoring#100dnplkndll wants to merge 3 commits into
dnplkndll wants to merge 3 commits into
Conversation
dnplkndll
force-pushed
the
18.0-feat-alerts
branch
from
March 13, 2026 02:05
ca6172b to
ae10935
Compare
dnplkndll
force-pushed
the
18.0-feat-alerts
branch
from
May 13, 2026 20:38
ae10935 to
abb19d4
Compare
dnplkndll
force-pushed
the
18.0-feat-alerts
branch
from
July 27, 2026 14:41
abb19d4 to
7989b63
Compare
dnplkndll
force-pushed
the
18.0-feat-alerts
branch
3 times, most recently
from
July 27, 2026 17:29
92fa296 to
9e13b21
Compare
Assisted-by: Claude Opus 5
… helpers Assisted-by: Claude Opus 5
Assisted-by: Claude Opus 5
dnplkndll
force-pushed
the
18.0-feat-alerts
branch
from
July 27, 2026 18:42
9e13b21 to
25228b4
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds KPI alerts: watch a spreadsheet cell and notify when it crosses a threshold.
Depends on #99 — its two commits are shared and drop out once
that merges.
Non-mechanical points worth flagging
trigger_modeis the design decision. Edge fires once when thecondition first becomes true; level fires every cycle it holds. Without
that distinction a cron would repost to Chatter every hour while a KPI sits
below target.
with_user), so an alertcan only ever report on data its owner may read. The shared cron would
otherwise evaluate everything as the install user.
sudo(), deliberately. Owners need onlyread rights on the data; recording
last_state/last_valueis themodule's own housekeeping, not a user edit.
action_reset_statestaysACL-bound because that one is a user action.
and silence is indistinguishable from "threshold not crossed".
AI-assisted (Claude Code); every change reviewed, tested, and owned by the author.