Agent skill · Data & Analytics

feature-engineer

Comprehensive feature engineering for ML pipelines: data quality assessment, feature creation, selection, transformation, and encoding. Activates for "feature engineering", "create features", "feature selection", "data preprocessing", "handle missing values", "encode categorical", "scale features", "feature importance". Ensures features are production-ready with automated validation, documentation, and integration with SpecWeave increments.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill feature-engineer --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 15 KB
Bundled scripts: none
Path: skills/ai-ml/feature-engineer/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Feature Engineer ## Overview Feature engineering often makes the difference between mediocre and excellent ML models. This skill transforms raw data into model-ready features through systematic data quality assessment, feature creation, selection, and transformation—all integrated with SpecWeave's increment workflow. ## The Feature Engineering Pipeline ### Phase 1: Data Quality Assessment **Before creating features, understand your data**: ```python from specweave import DataQualityReport # Automated data quality check report = DataQualityReport(df, increment="0042") # Generates: # - Missing value analysis # - Outlier detection # - Data type validation # - Distribution analysis # - Correlation matrix # - Duplicate detection ``` **Quality Report Output**: ```markdown # Data Quality Report ## Dataset Overview - Rows: 100,000 - Columns: 45 - Memory: 34.2 MB ## Missing Values | Column | Missing | Percentage | |-----------------|---------|------------| | email | 15,234 | 15.2% | | phone | 8,901 | 8.9% | | purchase_date | 0 | 0.0% | ## Outliers Detected - transaction_amount: 234 outliers (>3 std dev) - user_age: 12 outliers (<18 or >100) ## Data Type Issues - user_id: Stored as float,

What's inside
Steps it walks through
  1. Overview
  2. The Feature Engineering Pipeline
  3. Phase 1: Data Quality Assessment
  4. Phase 2: Feature Creation
  5. Phase 3: Feature Selection
  6. Phase 4: Feature Transformation
  7. Phase 5: Feature Validation
  8. Integration with SpecWeave
  9. Automatic Feature Documentation
  10. Living Docs Integration
  11. Best Practices
  12. 1. Document Feature Rationale
  13. 2. Handle Missing Values Systematically
  14. 3. Avoid Data Leakage
Ships with 1 file
  • metadata.json
Commands it runs
Generate feature engineering pipeline for increment
Validate features before training
Generate feature importance report
More from claude-skill-registry
All skills →
About this skill
What does the feature-engineer skill do?

Comprehensive feature engineering for ML pipelines: data quality assessment, feature creation, selection, transformation, and encoding. Activates for "feature engineering", "create features", "feature selection", "data preprocessing", "handle missing values", "encode categorical", "scale features", "feature importance". Ensures features are production-ready with automated validation, documentation, and integration with SpecWeave increments.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill feature-engineer --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going