005-plugins/nixtla-search-to-slack/skills/nixtla-model-benchmarker/SKILL.md
Generate benchmarking pipelines to compare forecasting models and summarize accuracy/speed trade-offs. Use when evaluating TimeGPT vs StatsForecast/MLForecast/NeuralForecast on a dataset. Trigger with "benchmark models", "compare TimeGPT vs StatsForecast", or "model selection".
npx skillsauth add intent-solutions-io/plugins-nixtla nixtla-model-benchmarkerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Generate a runnable benchmark script that compares multiple forecasting approaches on the same train/test split and outputs ranked metrics plus a small set of plots.
pip install ... command.{baseDir}/assets/templates/ for consistent benchmark structure.You are an expert in forecasting model evaluation specializing in the Nixtla ecosystem. You create comprehensive benchmarking pipelines that compare multiple forecasting approaches with statistical rigor.
Help users answer: "Which Nixtla model should I use for my data?"
Compare across dimensions:
When users request a benchmark comparison, generate the complete benchmark script using the template at:
Template location: {baseDir}/assets/templates/benchmark_template.py
The template provides a complete NixtlaBenchmark class with methods:
class NixtlaBenchmark:
def load_data(filepath) -> train, test # Split data 80/20
def benchmark_timegpt(train, horizon, freq) # TimeGPT forecasting
def benchmark_statsforecast(train, h, freq) # Statistical models
def benchmark_mlforecast(train, h, freq) # ML models
def benchmark_neuralforecast(train, h, freq) # Neural networks
def calculate_metrics(y_true, y_pred, model) # MAE, RMSE, MAPE, SMAPE
def run_full_benchmark(data_path, h, freq) # Run all benchmarks
def plot_comparison(results_df, save_path) # Visualize results
When generating the benchmark script, customize these parameters:
# In main() function:
DATA_PATH = "data/timeseries.csv" # User's data file
HORIZON = 30 # Forecast horizon
FREQ = "D" # Time frequency (D/H/M/W)
TIMEGPT_API_KEY = None # Optional TimeGPT key
StatsForecast: Adjust season_length based on data frequency
models = [
AutoARIMA(season_length=7), # Weekly seasonality
AutoETS(season_length=7),
AutoTheta(season_length=7)
]
MLForecast: Configure lags based on temporal patterns
mlf = MLForecast(
models=[RandomForestRegressor(), lgb.LGBMRegressor()],
lags=[7, 14, 21], # Look-back periods
lag_transforms={
1: [RollingMean(window_size=7)],
7: [ExponentiallyWeightedMean(alpha=0.3)]
}
)
NeuralForecast: Set input_size and max_steps for training
models = [
NHITS(h=horizon, input_size=horizon * 2, max_steps=100),
NBEATS(h=horizon, input_size=horizon * 2, max_steps=100)
]
assets/templates/benchmark_template.pyThe benchmark script generates:
benchmark_results.csv - Metrics table sorted by RMSEbenchmark_comparison.png - 4-panel visualization (MAE, RMSE, MAPE, execution time)Activate when users say:
User has CSV data and wants to see which model performs best.
User needs to choose model for deployment.
User wants comprehensive evaluation.
The generated script requires:
pip install nixtla statsforecast mlforecast neuralforecast \
scikit-learn lightgbm pandas matplotlib seaborn
For NeuralForecast: PyTorch installation may be required (CPU or GPU version)
User: "I want to compare all Nixtla models on my sales data. It's daily data with 2 years of history."
Your response:
assets/templates/benchmark_template.pybenchmark_nixtla_sales.pypython benchmark_nixtla_sales.py. The script will train 9+ models and rank them by RMSE. Results in CSV and PNG files."tools
This skill assists with managing database sharding strategies. It is activated when the user needs to implement horizontal database sharding to scale beyond single-server limitations. The skill supports designing sharding strategies, distributing data across multiple database instances, and implementing consistent hashing, automatic rebalancing, and cross-shard query coordination. Use this skill when the user mentions "database sharding", "sharding implementation", "scale database", or "horizontal partitioning". The plugin helps design and implement sharding for high-scale applications.
tools
This skill enables Claude to perform comprehensive database security scans using the database-security-scanner plugin. It is triggered when the user requests a security assessment of a database, including identifying vulnerabilities like weak passwords, SQL injection risks, and insecure configurations. The skill leverages OWASP guidelines to ensure thorough coverage and provides remediation suggestions. Use this skill when the user asks to "scan database security", "check database for vulnerabilities", "perform OWASP compliance check on database", or "assess database security posture". The plugin supports PostgreSQL and MySQL.
testing
This skill enables Claude to design and visualize database schemas. It leverages normalization guidance (1NF through BCNF), relationship mapping, and ERD generation to create efficient and well-structured databases. Use this skill when the user requests to "design a database schema", "create a database model", "generate an ERD", "normalize a database", or needs help with "database design best practices". The skill is triggered by terms like "database schema", "ERD diagram", "database normalization", and "relational database design".
tools
This skill enables Claude to manage database replication, failover, and high availability configurations using the database-replication-manager plugin. It is designed to assist with tasks such as setting up master-slave replication, configuring automatic failover, monitoring replication lag, and implementing read scaling. Use this skill when the user requests help with "database replication", "failover configuration", "high availability", "replication lag", or "read scaling" for databases like PostgreSQL or MySQL. The plugin facilitates both physical and logical replication strategies.