Vibe-Skills data-normalization-tool
install
source · Clone the upstream repo
git clone https://github.com/foryourhealth111-pixel/Vibe-Skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/foryourhealth111-pixel/Vibe-Skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/bundled/skills/data-normalization-tool" ~/.claude/skills/foryourhealth111-pixel-vibe-skills-data-normalization-tool && rm -rf "$T"
manifest:
bundled/skills/data-normalization-tool/SKILL.mdsource content
Data Normalization Tool
Purpose
Use this skill when the task is specifically about scaling or normalizing features before fitting a model.
When to Use
Use this skill when:
- Choosing between standardization, min-max, robust scaling, or log transforms
- Normalizing train/test data without contaminating evaluation
- Preparing numeric features for distance-based or gradient-based models
Not For / Boundaries
- Broader feature creation or encoding: use
engineering-features-for-machine-learning - Leakage review of the whole preprocessing chain: use
ml-data-leakage-guard - Final model evaluation: use
evaluating-machine-learning-models
Typical Outputs
- Normalization strategy recommendations
- Train-only fit / test-only transform workflow
- Warnings about skew, outliers, and metric sensitivity
Related Skills
for the surrounding preprocessing planengineering-features-for-machine-learning
to verify the normalization order is safeml-data-leakage-guard