Before fixing a slow/stale/timeout alert, measure the step yourself. Kill the theory with a stopwatch, not a code change. Measure-first ops triage for temporal
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-measure-before-you-fix-c732b0e8eeba ,按照其中的说明把「measure-before-you-fix」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
Convention: see conventions/brain-first.md — before re-deriving a diagnosis,
searchthe brain for prior incidents of the same alert. A recurring alert usually has a recorded verdict already.
Route here on any alert whose claim is temporal — "X is stale", "step timed out", "pipeline wedged", "job is slow", "N hours behind". These alerts invite an immediate structural fix (raise the timeout, split the step, reorder the pipeline). Do the measurement first. It is almost always cheaper than the fix, and it frequently invalidates it. (Routing is a harness convention, not a mechanical guarantee — the contract below is the discipline that makes it stick.)
On gbrain surfaces this covers: gbrain doctor staleness checks (e.g. sync
freshness, cycle freshness), autopilot cycle alerts, the sync stall watchdog
(reason: 'stall_timeout'), and any cron monitor built on top of them.
One stopwatch measurement of the suspect step, before any code change.
If you cannot state the measured duration of the thing you claim is slow, you do not yet know the root cause, and any fix you write is a guess wearing a diff.
This skill guarantees:
--all hides which member is slow).gbrain doctor's warn/fail lines) before the system is declared unhealthy.Read the alert's own numbers. They often contradict the theory already.
(Locks: none means it isn't lock contention. Note it and drop that branch.)
Time the suspect step directly. Isolate the smallest unit that the alert blames, and run it with a clock:
time gbrain sync --source source-a --no-embed
Run it on the specific named entity, not the aggregate. A whole-brain run
hides which member is slow; --source source-a answers the question.
Cross-check state with gbrain sources status (per-source sync lag).
Compare measured vs. budgeted. Grep every timeout in the wrapper, not just the default in the helper signature:
grep -n "timeoutMs\|timeout:" <the wrapper or cron script>
A generous per-call override makes the helper's default irrelevant. Check the call site before blaming the default.
Check the alert threshold against the authoritative one. Before
concluding the system is broken, confirm the alerter and the audit agree on
what "bad" means. gbrain doctor's sync-freshness check defaults to
24h warn / 72h fail (env-overridable via GBRAIN_SYNC_FRESHNESS_WARN_HOURS
/ GBRAIN_SYNC_FRESHNESS_FAIL_HOURS); a cron monitor paging at 12h is
speaking below the authoritative warn line. A monitor that acts early is
correct; a monitor that speaks at its act-line is a false-positive
generator.
Only now design the fix — against the number you measured.
A cron monitor legitimately acts earlier than the doctor fails, to keep drift out of FAIL territory. That is good design. The bug is reusing the act-threshold as the alert-threshold: everything between "act" and "warn" becomes a recurring page about a healthy system.
Separate the two constants. Act at the aggressive line, speak at the authoritative one:
const ACT_HOURS = Number(env.MONITOR_ACT_HOURS || 12); // act early — fine
const ALERT_HOURS = Math.max(ACT_HOURS, DOCTOR_WARN_HOURS); // speak at the audit's line
Symptom to recognize instantly: a repeating alert whose numbers sit below the doctor's own warn line, while the underlying resource looks fine when queried directly.
ps for the worker; check the launch flag;
gbrain jobs list for queued work).source-a, source-b) reported hours-stale.
Three successive root causes were asserted and a wrapper rewrite approved —
before any measurement. The measurement:
time gbrain sync --source source-a --no-embed finished in single-digit
seconds with "Already up to date" (same for source-b), and
gbrain sources status showed every source synced that morning. Every
theory died at once. Actual cause: the monitor alerted at its
act-threshold, hours below gbrain doctor's authoritative warn line. The
fix was two lines (ALERT_HOURS = max(ACT_HOURS, WARN_HOURS)), not a
rewrite. Lesson: when a page repeats about a system that measures healthy,
suspect the thresholds before the system.nice'd) step was equally unfounded — the step
finished in seconds while the host was under sustained concurrent load.
Contention theories need the same stopwatch as staleness theories.The output is a measurement verdict (conversation-level; this skill writes no brain pages). Only after the verdict is a fix proposed, sized against the measured number:
## Measurement verdict
- Alert: <the alert text and which monitor emitted it>
- Claim: <the temporal claim, e.g. "source-a 14h stale">
- Measured: <exact command> → <duration> (<key output, e.g. "Already up to date">)
- Budgeted: <timeout constant + any call-site override, file:line>
- Thresholds: monitor act-line <X>h vs doctor warn-line <Y>h → <match | MISMATCH>
- Verdict: false page on healthy system | needs more time | wedged | genuine regression
- Fix: <the change, justified by the measured number — or "none; adjust the alert line">
investigate — systematic debugging of code bugs ("why is this
broken", 500 errors, wrong output). Boundary: investigate root-causes code
behavior; this skill is the measure-first gate for temporal ops alerts
(stale/timeout/freshness/wedged) that runs before any timeout or threshold
is touched. If the stopwatch confirms a genuine slowness or regression, hand
off to investigate with the measured number.skills/maintain/SKILL.md — runs brain health checks and repairs
(doctor, extraction, dream cycle). Boundary: maintain emits and acts on
health output; this skill governs how to respond when one of those checks
pages, before budgets or wrappers change.skills/cron-scheduler/SKILL.md — schedules monitors and jobs.
Boundary: cron-scheduler decides when monitors run; this skill supplies
the act-line vs alert-line rule their thresholds must encode.skills/conventions/test-before-bulk.md — trial-before-bulk for
mutations. Same spirit (evidence before action), different object: that
convention gates bulk writes; this skill gates timeout/threshold/pipeline
changes.