Judge whether a standup is due
standup_dueEvaluates agent-supplied facts to determine if a standup is needed. Checks gate reached, dependency intersection, or working days since last standup, returning due status, reason, and detail.
Instructions
Given agent-supplied facts, decide whether a standup is due. Triggers in priority order: a deliverable gate reached → 'gate'; else a dependency intersection → 'intersection'; else more than five working days since the last standup → 'weekly'; else 'none'. Working days are an input (the working week varies by team), never computed from a calendar. Returns { due, reason, detail }.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| today | No | ||
| gate_reached | No | ||
| last_standup_date | No | ||
| dependency_intersection | No | ||
| working_days_since_last_standup | No |