From ai-analyst
Generates time-series forecasts for key metrics using naive baselines, seasonality detection, exponential smoothing, and Holt-Winters. Useful for projecting revenue, DAU; auto-triggers on 'forecast DAU' or '/forecast'.
How this skill is triggered — by the user, by Claude, or both
Slash command
/ai-analyst:forecastThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Generate time-series forecasts for key metrics using the forecast_helpers
Generate time-series forecasts for key metrics using the forecast_helpers library. Supports naive baselines, seasonality detection, and exponential smoothing — enough to answer "what should we expect next?" without complex modeling.
/forecast/forecast {metric} — forecast the named metric
/forecast {metric} periods=30 — specify forecast horizon
/forecast {metric} method=holt_winters — specify method
<workspace>/knowledge/datasets/{active}/metrics/) or from user specification.Run detect_seasonality() from helpers/forecast_helpers.py:
Run multiple methods and compare:
naive_forecast(series, periods, method='last')naive_forecast(series, periods, method='seasonal_naive')exponential_smoothing(series)exponential_smoothing(series, seasonal_period=dominant_period)Compare MSE across methods. Select the best-fit method.
Using chart_helpers:
swd_style()action_title() with a forward-looking titleworking/forecast_{metric}_{DATE}.png using save_chart()Report:
npx claudepluginhub ai-analyst-lab/ai-analyst-plugin --plugin ai-analystForecasts future values from historical time series data using ARIMA, Prophet models; analyzes trends, seasonality, autocorrelation; outputs predictions with confidence intervals. For sales, traffic, stock forecasts.
Zero-shot univariate time-series forecasting with Google's TimesFM foundation model. Produces point forecasts and prediction intervals from CSV/DataFrame/array inputs with a preflight system checker.
Forecasts univariate time series zero-shot using Google's TimesFM model. Supports CSV/DataFrame/array inputs with point forecasts and prediction intervals. Includes preflight system checker for RAM/GPU.