Agent skill
xgboost
XGBoost gradient boosting library. Use for tabular ML.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/xgboost
SKILL.md
XGBoost
XGBoost is the winningest algorithm in Kaggle history for tabular data. v2.1 (2025) brings native Blackwell GPU support and Polars integration.
When to Use
- Tabular Data: It usually beats Deep Learning on structured tables.
- Speed: Extremely optimized C++ backend.
Core Concepts
Gradient Boosting
Building extensive decision trees sequentially, each correcting the previous one's errors.
DMatrix
Internal optimized data structure.
Device Parameter
device="cuda" enables GPU acceleration.
Best Practices (2025)
Do:
- Use
device="cuda": GPU training is 10x faster. - Use Early Stopping: Stop training when validation error rises.
- Pass Polars Dataframes: No need to convert to Pandas/NumPy first.
Don't:
- Don't use one-hot encoding: Use native categorical support (
enable_categorical=True).
References
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?