topprismdata/cultivating-ml-agent

A self-improving ML agent that compounds capability across projects through knowledge crystallization, reusable skills and shared ML/MLOps infrastructure.

4Stars on the repository
72Mods indexed here, across every type
8d agoLast push, which is what freshness is scored on
MITLicence, which decides whether bodies are shown

topprismdata/cultivating-ml-agent

Skill Claude CodeCodex

Correct implementation of adversarial validation for Kaggle competitions. Use when: (1) Selecting training samples that match test distribution, (2) Reducing synthetic data artifacts by filtering, (3) Preparing data subsets for better generalization. Covers train vs test classification, sample selection method, and…

not rated 4 8d ago A 71 tokens original MIT

topprismdata/cultivating-ml-agent

Skill Codex

Agent Nurture Framework: a systematic methodology for training AI agents from novice to expert through conversational knowledge crystallization. Use when: (1) designing an agent training pipeline, (2) consolidating fragmented skills into organized knowledge architecture, (3) integrating external learning resources…

not rated 4 8d ago C 107 tokens original MIT

topprismdata/cultivating-ml-agent

Skill Claude CodeCodex

Use when: (1) Starting a long-running experiment that may span multiple sessions/disconnects, (2) Resuming work after a break and needing to recover context, (3) Handing off to another agent or session, (4) You realize you've lost track of what was tried and why. Provides a structured 4-file session memory system that…

not rated 4 8d ago A 130 tokens original MIT

arxiv-paper-search

04

topprismdata/cultivating-ml-agent

Skill Claude CodeCodex

Use when encountering a new ML technique not covered by existing 43+ skills, when needing citations for a paper/report, when comparing recent (last 6 months) approaches to a known problem, or when the existing knowledge feels stale. Triggers on phrases like "latest paper on X", "SOTA in Y", "what does the literature…

not rated 4 8d ago A 78 tokens original MIT

autogluon-first

05

topprismdata/cultivating-ml-agent

Skill Claude CodeCodex

AutoGluon-First Strategy: Always run AutoGluon bestquality preset as the first step in any tabular ML competition (5-15 min baseline). Validated 3/4 times vs manual ensembles on small/medium tabular datasets. Use when: (1) Starting any new tabular competition, (2) Need a strong baseline in 1M rows with limited RAM)…

not rated 4 8d ago A 212 tokens original MIT

topprismdata/cultivating-ml-agent

Skill Claude CodeCodex

AutoGluon preset selection strategy: when to use medium/good/high/bestquality, when EDA is unnecessary, and how to tune within a preset. Validated on s6e7 (AG highquality 600s → OOF=0.8739, LB=0.87458, gap=0.0007 — perfect alignment). Use when: (1) Deciding which AutoGluon preset to start with, (2) Wondering whether…

not rated 4 8d ago A 180 tokens original MIT

topprismdata/cultivating-ml-agent

Skill Claude CodeCodex

AutoGluon TimeSeriesPredictor: special API and presets for time series forecasting (different from TabularPredictor). Validated on Store Sales (N=3M, 33 families × 54 stores × 1684 days): AG 1.5 Chronos-2 + Chronos + onpromotion covariates → LB RMSLE 0.39525 (best historical, vs AG 1.4 0.41852, vs manual 3.0+). Use…

not rated 4 8d ago A 224 tokens original MIT

topprismdata/cultivating-ml-agent

Skill Claude CodeCodex

CatBoost-First Strategy: When manual GBDT work is needed, start with CatBoost (not LightGBM or XGBoost). CatBoost has native categorical feature handling, robust to overfitting, and consistently outperforms other GBDTs on small/medium tabular datasets. Use when: (1) AutoGluon is not available or too slow, (2) Need to…

not rated 4 8d ago A 209 tokens original MIT

claudeception

09

topprismdata/cultivating-ml-agent

Skill Claude CodeCodex

Extract reusable knowledge from work sessions into new Claude Code skills. Use when: (1) /claudeception command to review session, (2) "save this as a skill" or "extract a skill", (3) "what did we learn?", (4) After non-obvious debugging, workarounds, trial-and-error discovery, or counterintuitive solutions. Do NOT…

not rated 4 8d ago A 96 tokens original MIT

topprismdata/cultivating-ml-agent

Skill Claude CodeCodex

Use when: (1) Entering a Kaggle Code Competition that requires notebooks with no internet access, (2) Need to fork a public baseline that depends on external artifact datasets (pre-trained models, feature matrices, wheels), (3) Your fork fails with "module not found" or "file not found" errors, (4) Need to identify…

not rated 4 8d ago A 160 tokens original MIT

topprismdata/cultivating-ml-agent

Skill Claude CodeCodex

Use when: (1) You need to rapidly iterate across MANY competing approaches in a single Kaggle competition (NeuroGolf-style: 7+ different public kernels forked in <2 hours), (2) You must decide which public dataset/kernel to spend your limited submission quota on, (3) Your highest-scoring submission might be a public…

not rated 4 8d ago A 226 tokens original MIT

context-engineering

12

topprismdata/cultivating-ml-agent

Skill Claude CodeCodex

Use when context window is getting crowded, when dealing with long training logs, or when preparing prompts with mixed-priority content (system / task / skills / examples). Triggers when assembling prompts >4000 chars, or when observing "Lost in the Middle" symptoms (model ignores mid-prompt content).

not rated 4 8d ago A 65 tokens original MIT

topprismdata/cultivating-ml-agent

Skill Claude CodeCodex

Use when: (1) a new submission scores worse than baseline and the reason is unclear, (2) multiple changes were made simultaneously (new model + new post-processing + new features), (3) need to isolate which component caused a regression, (4) CV improves but LB degrades, (5) comparing "smart" vs "simple" approaches…

not rated 4 8d ago A 111 tokens original MIT

topprismdata/cultivating-ml-agent

Skill Claude CodeCodex

Use when starting a new ML task that structurally resembles a known competition (recommendation ↔ retail, demand ↔ supply, churn ↔ fraud, segmentation ↔ classification). Triggers when your task feels "not novel" — there is likely a top solution you can borrow features from. Especially valuable at the start of a…

not rated 4 8d ago A 79 tokens original MIT

topprismdata/cultivating-ml-agent

Skill Claude CodeCodex

CV-LB Gap Acknowledgment: CV improvement does NOT equal LB improvement. This is one of the most important MLOps principles. Use when: (1) OOF score keeps improving but LB score plateaus or drops, (2) Spending days tuning hyperparameters without LB improvement, (3) Comparing models on CV only without LB validation, (4)…

not rated 4 8d ago A 192 tokens original MIT

topprismdata/cultivating-ml-agent

Skill Claude CodeCodex

Avoid applying domain knowledge constraints that hurt ML model performance. Use when: (1) Considering medical/physical/logical constraints on training data, (2) Adversarial validation AUC changes significantly after applying constraints (>0.10 shift), (3) CV score drops after adding "reasonable" domain rules, (4)…

not rated 4 8d ago A 85 tokens original MIT

topprismdata/cultivating-ml-agent

Skill Claude CodeCodex

Diagnose when ensemble/stacking will fail due to high model correlation. Use when: (1) Stacking or ensemble shows no improvement over single models, (2) Considering weighted average of multiple models, (3) Model predictions are nearly identical, (4) AUC/RMS gains plateau despite complex ensembling. Critical for…

not rated 4 8d ago A 87 tokens original MIT

topprismdata/cultivating-ml-agent

Skill Claude CodeCodex

Use when you have run 3+ feature engineering experiments with no improvement, or when distance to theoretical upper bound is <15pp. Triggers when you suspect "I should stop optimizing features and try something else" — the most common failure mode is wasting weeks past the saturation point.

not rated 4 8d ago A 65 tokens original MIT

topprismdata/cultivating-ml-agent

Skill Claude CodeCodex

Use when: (1) Considering switching from CPU to GPU for a Kaggle competition, (2) GPU quota is running low and you need to prioritize which competitions deserve GPU time, (3) About to start a model training run and unsure if GPU is worth the 30h/week quota cost, (4) Deciding between CPU AutoGluon vs GPU neural…

not rated 4 8d ago A 151 tokens original MIT

topprismdata/cultivating-ml-agent

Skill Claude CodeCodex

Apply GSD Core's loop-engineering methodology to ML/data-science tasks. Use when: (1) You have a multi-step ML pipeline (data → features → train → verify → submit), (2) Context is growing long and quality is drifting, (3) You want auditable verification at each step, (4) You want fresh-context subagents to handle…

not rated 4 8d ago A 136 tokens original MIT

topprismdata/cultivating-ml-agent

Skill Claude CodeCodex

Use when: (1) You have limited daily submission quota and 50+ skill files to explore, (2) Most Kaggle experiments cost 1 quota each but only the 1-2 BEST actually matter for your final score, (3) You waste hours doing redundant experiments because the EXISTING public kernels (rank 4-9 players) have already solved 80%…

not rated 4 8d ago A 188 tokens original MIT

topprismdata/cultivating-ml-agent

Skill Claude CodeCodex

A guide for running Kaggle competitions, an online platform where people build models against shared datasets, and organizing research in a searchable NotebookLM knowledge base.

not rated 4 8d ago A 127 tokens original MIT

topprismdata/cultivating-ml-agent

Skill Claude CodeCodex

Use when: (1) Entering a new Kaggle competition and unsure what type it is, (2) Need to choose between forking public kernels vs building custom, (3) Deciding how to allocate submission quota across the competition lifecycle, (4) Determining which evaluation/validation strategy to use. Covers 6 competition types…

not rated 4 8d ago A 145 tokens original MIT

topprismdata/cultivating-ml-agent

Skill Claude CodeCodex

Prevent wasted research by verifying Kaggle competition data format BEFORE investing in RAG, technical planning, or model architecture design. Use when: (1) Starting any new Kaggle competition, (2) Competition name/size is ambiguous about data format, (3) Planning to do extensive research before implementation, (4)…

not rated 4 8d ago A 114 tokens original MIT

At most 3 mods per repository are shown here, and a mod shipped inside a plugin is left to that plugin's page — the rest are on their repository pages: