sprint_forecast
Forecast sprint completion date using backlog size and historical velocity to estimate required sprints with pessimistic buffer.
Instructions
Forecast sprint completion date from backlog size and historical velocity.
Computes average velocity from sprint history, converts story points to hours, and returns required sprints with pessimistic estimate based on velocity variance.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| backlog_points | Yes | Total story points or effort units remaining in the backlog. | |
| velocity_history | Yes | Historical velocities from completed sprints. Minimum 1 data point; 3+ recommended for meaningful forecasts. | |
| sprint_length_days | No | Calendar days in a single sprint cycle. | |
| hours_per_sprint | No | Total productive engineering hours available per sprint (accounts for meetings, overhead). | |
| task_type | No | Optional task type for feedback matching. | |
| ai_native | No | Degree of AI assistance: 0.0 = fully human, 1.0 = fully AI-native, 0.5 = hybrid. Accepts boolean for backward compatibility (true=1.0, false=0.0). |