Agent skill
demand-forecaster
Demand forecasting skill with quantitative and qualitative methods, accuracy measurement, and bias correction
Install this agent skill to your Project
npx add-skill https://github.com/a5c-ai/babysitter/tree/main/library/specializations/domains/business/operations/skills/demand-forecaster
Metadata
Additional technical details for this skill
- domain
- business
- category
- capacity-planning
- specialization
- operations
SKILL.md
Demand Forecaster
Overview
The Demand Forecaster skill provides comprehensive capabilities for generating and managing demand forecasts. It supports multiple forecasting methods, accuracy measurement, bias correction, and integration of statistical and judgmental inputs.
Capabilities
- Time series forecasting (ARIMA, exponential smoothing)
- Causal modeling
- Machine learning forecasts
- Forecast accuracy metrics (MAPE, MAE, bias)
- Collaborative forecasting
- Demand sensing
- Seasonality adjustment
- New product forecasting
Used By Processes
- CAP-004: Demand Forecasting and Analysis
- CAP-003: Sales and Operations Planning
- CAP-001: Capacity Requirements Planning
Tools and Libraries
- Python statsmodels
- Prophet
- ML libraries (scikit-learn, TensorFlow)
- Demand planning systems
Usage
skill: demand-forecaster
inputs:
historical_data:
- period: "2025-01"
demand: 10500
- period: "2025-02"
demand: 11200
# ... additional history
forecast_horizon: 12 # months
method: "auto" # auto | arima | exponential | ml | ensemble
external_factors:
- name: "gdp_growth"
coefficient: 0.5
- name: "marketing_spend"
coefficient: 0.3
adjustments:
- period: "2026-06"
type: "promotion"
lift: 15 # percent
outputs:
- point_forecast
- confidence_intervals
- accuracy_metrics
- bias_analysis
- seasonality_factors
- recommendations
Forecasting Methods
Time Series Methods
| Method | Best For | Complexity |
|---|---|---|
| Moving Average | Stable demand | Low |
| Exponential Smoothing | Trends and seasonality | Medium |
| ARIMA | Complex patterns | High |
| Prophet | Multiple seasonalities | Medium |
Causal Methods
| Method | Use Case |
|---|---|
| Regression | Known drivers |
| Econometric | Market factors |
| Machine Learning | Complex relationships |
Accuracy Metrics
MAPE = (1/n) x Sum(|Actual - Forecast| / Actual) x 100
MAE = (1/n) x Sum(|Actual - Forecast|)
Bias = (1/n) x Sum(Forecast - Actual)
Accuracy Benchmarks
| MAPE | Interpretation |
|---|---|
| < 10% | Excellent |
| 10-20% | Good |
| 20-30% | Acceptable |
| 30-50% | Poor |
| > 50% | Very poor |
Forecast Value Added (FVA)
Compare accuracy at each step:
- Naive forecast (prior period)
- Statistical forecast
- Analyst adjustments
- Sales/customer input
- Final consensus
Only keep adjustments that improve accuracy.
Integration Points
- ERP/demand planning systems
- CRM systems
- Point of sale data
- Economic data feeds
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
gsd-tools
Central utility skill for GSD operations. Provides config parsing, slug generation, timestamps, path operations, and orchestrates calls to other specialized skills. Acts as the unified entry point that the original gsd-tools.cjs provided via its lib/ modules (commands, config, core, init).
model-profile-resolution
Resolve model profile (quality/balanced/budget) at orchestration start and map agents to specific models. Enables cost/quality tradeoffs by selecting appropriate AI models for each agent role.
verification-suite
Plan structure validation, phase completeness checks, reference integrity verification, and artifact existence confirmation. Provides the structured verification layer ensuring GSD artifacts are well-formed and complete.
state-management
STATE.md reading, writing, and field-level updates. Provides cross-session state persistence via .planning/STATE.md with structured fields for current task, completed phases, blockers, decisions, and quick tasks.
git-integration
Git commit patterns, formats, and conventions for GSD methodology. Provides atomic commits per task, structured commit messages, planning file commits, branch management, and milestone tag operations.
frontmatter-parsing
YAML frontmatter parsing and manipulation for .planning/ documents. Provides read, write, update, query, and validation operations on frontmatter blocks in GSD markdown artifacts.
Didn't find tool you were looking for?