Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add topprismdata/cultivating-ml-agent --skill catboost-first-tabulargit clone --depth 1 https://github.com/topprismdata/cultivating-ml-agentWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/topprismdata/cultivating-ml-agent/catboost-first-tabular)<a href="https://agentmods.dev/skills/topprismdata/cultivating-ml-agent/catboost-first-tabular"><img src="https://agentmods.dev/badge/skills/topprismdata/cultivating-ml-agent/catboost-first-tabular/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/topprismdata/cultivating-ml-agent/catboost-first-tabular"><img src="https://agentmods.dev/badge/skills/topprismdata/cultivating-ml-agent/catboost-first-tabular.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00209 | $0.02605 |
| Opus 5 | $0.00105 | $0.01303 |
| Sonnet 5 | $0.00042 | $0.00521 |
| Haiku 4.5 | $0.00021 | $0.00261 |
Grade A, and why
catboost-first-tabular scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 235 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CatBoost-First Strategy for Tabular Problems
Problem
When manual ML on tabular data is needed, many developers default to LightGBM or XGBoost (the "famous" frameworks from Kaggle winners). But for many tabular problems, CatBoost is the optimal choice, especially for small/medium datasets with categorical features.
Reality:
- CatBoost has native categorical feature handling (no need for target encoding)
- CatBoost has ordered boosting (prevents target leakage during training)
- CatBoost has robust default parameters (less hyperparameter tuning needed)
- CatBoost consistently outperforms LightGBM/XGBoost on small/medium tabular datasets with categorical features
Context / Trigger Conditions
Use this skill when:
- AutoGluon is not available or too slow (limited resources)
- Need to add CatBoost as a Silver signal in custom pipeline
- Manual GBDT baseline required (cannot use AutoGluon)
- Categorical features are dominant (>5-10 high-cardinality columns)
- High-cardinality categorical features (e.g., Neighborhood with 25+ categories, ZIP codes)
- Small dataset (<10K rows) where overfitting is a concern
- After trying LightGBM/XGBoost and getting worse results
Solution
Step 1: Try CatBoost First (Before LightGBM/XGBoost)
from catboost import CatBoostRegressor # or CatBoostClassifier
# For regression
model = CatBoostRegressor(
iterations=2500,
learning_rate=0.02,
depth=6,
l2_leaf_reg=3.0,
random_seed=42,
verbose=0,
early_stopping_rounds=50
)
# For classification (binary)
model = CatBoostClassifier(
iterations=2500,
learning_rate=0.02,
depth=6,
l2_leaf_reg=3.0,
random_seed=42,
verbose=0,
early_stopping_rounds=50
)
# Train with 5-fold CV
from sklearn.model_selection import KFold
kf = KFold(n_splits=5, shuffle=True, random_state=42)
oof = np.zeros(len(X_train))
test_pred = np.zeros(len(X_test))
for fold, (trn_idx, val_idx) in enumerate(kf.split(X_train)):
X_trn, X_val = X_train.iloc[trn_idx], X_train.iloc[val_idx]
y_trn, y_val = y_train.iloc[trn_idx], y_train.iloc[val_idx]
model.fit(X_trn, y_trn, eval_set=(X_val, y_val), verbose=0)
oof[val_idx] = model.predict(X_val)
test_pred += model.predict(X_test) / 5
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 235 lines · 209 tokens per session scan A 056757079459
catboost-first-tabular is a skill published in the GitHub repository topprismdata/cultivating-ml-agent (5 stars, last pushed 12d ago), licensed MIT. It adds 209 tokens to every session and 2,605 once invoked, about $0.0010 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
huggingface-hub
Hugging Face Hub CLI (hf) — search, download, and upload models and datasets, manage repos, query datasets with SQL, deploy inference endpoints, manage Spaces and buckets.
tensorboard
Visualize training metrics, debug models with histograms, compare experiments, visualize model graphs, and profile performance with TensorBoard - Google's ML visualization toolkit.
mlflow
Track ML experiments, manage model registry with versioning, deploy models to production, and reproduce experiments with MLflow - framework-agnostic ML lifecycle platform.
datachain-knowledge
Use whenever datasets, cloud storage buckets, or data pipelines are mentioned — creating, saving, querying, listing, exploring, deleting, or processing data in S3, GCS, Azure Blob, or local storage. Also use when running any script that may create datasets as a side effect. Maintains a knowledge base at dc-knowledge/…
prompt-scanner
A scanner for text sent to an AI agent, looking for prompt injection and jailbreak attempts. Prompt injection is text that tries to override an agent's instructions; a jailbreak tries to bypass its safety limits.
install-openviking-memory
Install and configure the OpenViking long-term memory plugin for OpenClaw via natural conversation. Once installed, the plugin automatically captures facts from chats and recalls relevant context before each reply (auto-capture + auto-recall, cross-session). Covers prerequisites, install through OpenClaw's plugin…