allocate_budget
Greedily selects the most impactful verification tasks within a time budget. Use when CI minutes are limited or to decide what to verify before merging.
Instructions
Given a time budget in minutes, greedy-allocates the highest-leverage subset of verification targets that fits in that budget. Leverage formula: (tier-leverage × workflow-criticality × node-risk) / estimated-execution-cost-in-seconds. Tier-1 targets cost ~5s, Tier-2 ~30s, Tier-3 ~120s. Returns an ordered list — execute top-down. Use this when CI minutes are scarce or when an agent needs to pick what to verify before merging within a deadline.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| minutes | Yes | Total minutes available for verification work. Typical values: 5 (quick PR check), 15 (default), 60 (pre-release sweep). |