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'.
npx claudepluginhub ai-analyst-lab/ai-analyst-plugin --plugin ai-analystThis skill uses the workspace's default tool permissions.
Generate time-series forecasts for key metrics using the forecast_helpers
Forecasts 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.
Generates forecast generator operations for data analytics tasks including SQL queries, data visualization, statistical analysis, and business intelligence. Useful for forecast functionality.
Applies statistical techniques to data analysis: descriptive stats, distributions, hypothesis testing, A/B evaluation, outliers, trends, forecasting, p-values, confidence intervals, and pitfalls like Simpson's paradox.
Share bugs, ideas, or general feedback.
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: