跳到主要内容
知仓学习社ZHICANG

demand-forecaster

Demand forecasting skill with quantitative and qualitative methods, accuracy measurement, and bias correction

不碰外部(只输出文字)无严重或高危命中a5c-ai/babysitter

它会碰到什么

扫了多少1 个文本文件,3 KB
它会碰到什么不碰外部(只输出文字)
命中总数0 处
命中统计严重 0 · 高 0 · 中 0 · 低 0

这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。

技能内容

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:

  1. Naive forecast (prior period)
  2. Statistical forecast
  3. Analyst adjustments
  4. Sales/customer input
  5. Final consensus

Only keep adjustments that improve accuracy.

Integration Points

  • ERP/demand planning systems
  • CRM systems
  • Point of sale data
  • Economic data feeds

想直接用这个技能?

本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。

它属于哪个仓库

星标★ 1,796
本站分层T1
该仓技能数2115
原文件路径library/specializations/domains/business/operations/skills/demand-forecaster/SKILL.md

同一个仓库里的其他技能

看这个仓库的全部 2115 个技能

同名技能的其他版本

有 2 个不同仓库或目录里都有叫 demand-forecaster 的技能。它们内容并不相同,别混用:

  • a5c-ai/babysitter — Demand forecasting skill with statistical and machine learning methods.