From demand-forecast
Create demand forecasts with auditable artifacts from user-provided data files
How this skill is triggered — by the user, by Claude, or both
Slash command
/demand-forecast:create-forecastsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
In a sandbox get started with
In a sandbox get started with
uv run --with ansel-sh python forecast.py
ansel-sh auto-discovers CSV files, first from ./data then from cwd. You may optionally specify a directory to discover files.
from ansel_sh import forecasts
results = forecasts(data_dir="/path/to/data")
User uploads land in ./uploads. That's a good place to start.
You may optionally reuse classified files across multiple forecasting runs.
from ansel_sh import files, forecasts
classified = files()
one = forecasts(classified)
two = forecasts(classified)
bash -c 'your-command' > /tmp/task.log 2>&1 &
echo $! > /tmp/task.pid
# Check status, progress, logs
kill -0 $(cat /tmp/task.pid) 2>/dev/null && echo "Running" || echo "Done"
cat /tmp/task.log
All output artifacts are written to .ansel/<run_id>/ in the cwd. Each run gets an auto-incrementing ID. Artifacts you may find include:
files_manifest.csv — classified input filesseries_manifest.csv — extracted time seriestraining_snapshot.csv / testing_snapshot.csv — model training and testing datamodel_instructions.md — model configuration and instructionstarget_snapshot.csv — forecast target dataforecast_result.csv — the final forecast outputnpx claudepluginhub anselsource/agents --plugin demand-forecastForecasts 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.
Dispatches AI researchers to classify, score, forecast, and enrich datasets at scale. Use via Python SDK or MCP server for one-off or complex workflows.
Make predictions and generate prediction explanations (SHAP/XEMP) from DataRobot deployments, with support for batch scoring, dataset templates, and data validation.