# Cash-alert thresholds

A reusable skill the "Keep 13 weeks of cash always current" recipe pulls in. Add it once and every agent on the team can use it.

Decide which balance or timing conditions in the 13-week roll are
worth an immediate alert.

## Method
1. Scan every week's closing balance in the finished roll.
2. Compare each closing balance against `{{min_balance}}`.
3. Flag any week at or below that threshold, and any week where the
   balance goes negative.
4. Note how many weeks out the first flagged week sits, so urgency is
   visible at a glance.
5. Compose one alert per breach, naming the week and the shortfall
   amount.

## Rules
- Alert immediately on any negative or sub-threshold week — do not
  wait for the next scheduled run.
- Report every breach, not just the worst one, even if a later week
  recovers.
- Minimum balance threshold (set on first run, then stored in
  memory).
- Alerts describe the shortfall; they never recommend or trigger a
  transfer.

## Output
An alert list: `{week, closing_balance, shortfall_amount}`, posted to
`{{delivery_channel}}` immediately when non-empty.
