mcpbeat Sign in

Engineering Features For Machine Learning Skill for Claude

Execute create, select, and transform features to improve machine learning model performance. Handles feature scaling, encoding, and importance analysis. Use when asked to "engineer features" or "select features". Trigger with relevant phrases based on skill purpose. '

6k tokens
context cost
the whole folder, loaded on every use
8
files
ships runnable scripts
0
copies elsewhere
how many repositories repackaged it
2679
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/jeremylongshore/tons-of-skills-marketplace --skill engineering-features-for-machine-learning

What comes with it

20 754 bytes besides the instruction
assets/README.md
assets/configuration_template.yaml
assets/example_dataset.csv
assets/feature_engineering_template.py
references/README.md
scripts/README.md
scripts/feature_importance_analyzer.py

What it tells the agent to use

found in the instruction text
Bash runs shell commands — read the instruction before connecting

The instruction itself

14 sections, as written by the author

Feature Engineering Toolkit

Create, select, and transform features to improve ML model performance, handling scaling, encoding, interaction terms, and importance analysis.

Overview

leverage the feature-engineering-toolkit plugin to enhance machine learning models. It automates the process of creating new features, selecting the most relevant ones, and transforming existing features to better suit the model's needs. Use this skill to improve the accuracy, efficiency, and interpretability of machine learning models.

How It Works

  • Analyzing Requirements: Claude analyzes the user's request and identifies the specific feature engineering task required.
  • Generating Code: Claude generates Python code using the feature-engineering-toolkit plugin to perform the requested task. This includes data validation and error handling.
  • Executing Task: The generated code is executed, creating, selecting, or transforming features as requested.
  • Providing Insights: Claude provides performance metrics and insights related to the feature engineering process, such as the importance of newly created features or the impact of transformations on model performance.

When to Use This Skill

This skill activates when you need to:

  • Create new features from existing data to improve model accuracy.
  • Select the most relevant features from a dataset to reduce model complexity and improve efficiency.
  • Transform features to better suit the assumptions of a machine learning model (e.g., scaling, normalization, encoding).

Examples

Example 1: Improving Model Accuracy

User request: "Create new features from the existing 'age' and 'income' columns to improve the accuracy of a customer churn prediction model."

The skill will:

  • Generate code to create interaction terms between 'age' and 'income' (e.g., age * income, age / income).
  • Execute the code and evaluate the impact of the new features on model performance.

Example 2: Reducing Model Complexity

User request: "Select the top 10 most important features from the dataset to reduce the complexity of a fraud detection model."

The skill will:

  • Generate code to calculate feature importance using a suitable method (e.g., Random Forest, SelectKBest).
  • Execute the code and select the top 10 features based on their importance scores.

Best Practices

  • Data Validation: Always validate the input data to ensure it is clean and consistent before performing feature engineering.
  • Feature Scaling: Scale numerical features to prevent features with larger ranges from dominating the model.
  • Encoding Categorical Features: Encode categorical features appropriately (e.g., one-hot encoding, label encoding) to make them suitable for machine learning models.

Integration

This skill integrates with the feature-engineering-toolkit plugin, providing a seamless way to create, select, and transform features for machine learning models. It can be used in conjunction with other Claude Code skills to build complete machine learning pipelines.

Prerequisites

  • Appropriate file access permissions
  • Required dependencies installed

Instructions

  • Invoke this skill when the trigger conditions are met
  • Provide necessary context and parameters
  • Review the generated output
  • Apply modifications as needed

Output

The skill produces structured output relevant to the task.

Error Handling

  • Invalid input: Prompts for correction
  • Missing dependencies: Lists required components
  • Permission errors: Suggests remediation steps

Resources

  • Project documentation
  • Related skills and commands

How to use it

Copy the folder

Take jeremylongshore/engineering-features-for-machine-learning from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.