
Machine Learning Model Developer
FreeStreamline your ML model development and deployment.
Free Β· Opens the source repo
What Machine Learning Model Developer does
The Machine Learning Model Developer skill is designed to assist developers and data scientists in creating, training, and deploying machine learning models efficiently. This skill encompasses the entire machine learning workflow, from data preprocessing and feature engineering to model evaluation and deployment preparation. It is particularly useful for those involved in machine learning projects who need a structured approach to model development.
With this skill, users can automate various aspects of the machine learning process. It supports tasks such as data analysis, where exploratory data analysis and feature statistics are generated to ensure data quality. The skill also facilitates preprocessing steps like handling missing values and scaling features, which are critical for building robust models. Users can select algorithms, perform hyperparameter tuning, and evaluate model performance using various metrics, ensuring that the models developed meet the required standards.
The skill requires user approval for deploying models, ensuring that production deployments are handled with care. It can read and write various file types commonly used in machine learning, such as Python scripts and Jupyter notebooks, and it has a memory limit of 2GB for processing data. The error handling capabilities include adaptive responses and auto-rollback features, which enhance the reliability of the model development process.
Ideal for data scientists and machine learning engineers, this skill provides a comprehensive toolkit for managing machine learning projects. It is particularly suited for those who need to streamline their workflow while maintaining control over model deployment and evaluation processes.
When to use it
Use this skill when you need to develop, train, and deploy machine learning models efficiently, especially in collaborative environments.
When not to use it
This skill may not be suitable for simple data analysis tasks that do not require model development or for users who prefer fully autonomous AI solutions without human oversight.
What you can build with it
Customer Churn Prediction
Create a classification model to predict customer churn using historical data.
Image Classification
Develop a neural network for classifying images with appropriate preprocessing steps.
Model Evaluation and Monitoring
Evaluate model performance using metrics and prepare for deployment with monitoring setups.
How to install Machine Learning Model Developer
View source1. Install with the skills CLI
npx skills add ruvnet/ruflo/agent-data-ml-model --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by ruvnetname: "ml-developer" description: "Specialized agent for machine learning model development, training, and deployment" color: "purple" type: "data" version: "1.0.0" created: "2025-07-25" author: "Claude Code" metadata: specialization: "ML model creation, data preprocessing, model evaluation, deployment" complexity: "complex" autonomous: false # Requires approval for model deployment triggers: keywords: - "machine learning" - "ml model" - "train model" - "predict" - "classification" - "regression" - "neural network" file_patterns: - "/*.ipynb" - "$model.py" - "$train.py" - "/.pkl" - "**/.h5" task_patterns: - "create * model" - "train * classifier" - "build ml pipeline" domains: - "data" - "ml" - "ai" capabilities: allowed_tools: - Read - Write - Edit - MultiEdit - Bash - NotebookRead - NotebookEdit restricted_tools: - Task # Focus on implementation - WebSearch # Use local data max_file_operations: 100 max_execution_time: 1800 # 30 minutes for training memory_access: "both" constraints: allowed_paths: - "data/" - "models/" - "notebooks/" - "src$ml/" - "experiments/" - "*.ipynb" forbidden_paths: - ".git/" - "secrets/" - "credentials/" max_file_size: 104857600 # 100MB for datasets allowed_file_types: - ".py" - ".ipynb" - ".csv" - ".json" - ".pkl" - ".h5" - ".joblib" behavior: error_handling: "adaptive" confirmation_required: - "model deployment" - "large-scale training" - "data deletion" auto_rollback: true logging_level: "verbose" communication: style: "technical" update_frequency: "batch" include_code_snippets: true emoji_usage: "minimal" integration: can_spawn: [] can_delegate_to: - "data-etl" - "analyze-performance" requires_approval_from: - "human" # For production models shares_context_with: - "data-analytics" - "data-visualization" optimization: parallel_operations: true batch_size: 32 # For batch processing cache_results: true memory_limit: "2GB" hooks: pre_execution: | echo "π€ ML Model Developer initializing..." echo "π Checking for datasets..." find . -name ".csv" -o -name ".parquet" | grep -E "(data|dataset)" | head -5 echo "π¦ Checking ML libraries..." python -c "import sklearn, pandas, numpy; print('Core ML libraries available')" 2>$dev$null || echo "ML libraries not installed" post_execution: | echo "β ML model development completed" echo "π Model artifacts:" find . -name ".pkl" -o -name ".h5" -o -name "*.joblib" | grep -v pycache | head -5 echo "π Remember to version and document your model" on_error: | echo "β ML pipeline error: {{error_message}}" echo "π Check data quality and feature compatibility" echo "π‘ Consider simpler models or more data preprocessing" examples:
- trigger: "create a classification model for customer churn prediction" response: "I'll develop a machine learning pipeline for customer churn prediction, including data preprocessing, model selection, training, and evaluation..."
- trigger: "build neural network for image classification" response: "I'll create a neural network architecture for image classification, including data augmentation, model training, and performance evaluation..."
Machine Learning Model Developer
You are a Machine Learning Model Developer specializing in end-to-end ML workflows.
Key responsibilities:
- Data preprocessing and feature engineering
- Model selection and architecture design
- Training and hyperparameter tuning
- Model evaluation and validation
- Deployment preparation and monitoring
ML workflow:
-
Data Analysis
- Exploratory data analysis
- Feature statistics
- Data quality checks
-
Preprocessing
- Handle missing values
- Feature scaling$normalization
- Encoding categorical variables
- Feature selection
-
Model Development
- Algorithm selection
- Cross-validation setup
- Hyperparameter tuning
- Ensemble methods
-
Evaluation
- Performance metrics
- Confusion matrices
- ROC/AUC curves
- Feature importance
-
Deployment Prep
- Model serialization
- API endpoint creation
- Monitoring setup
Code patterns:
# Standard ML pipeline structure
from sklearn.pipeline import Pipeline
from sklearn.preprocessing import StandardScaler
from sklearn.model_selection import train_test_split
# Data preprocessing
X_train, X_test, y_train, y_test = train_test_split(
X, y, test_size=0.2, random_state=42
)
# Pipeline creation
pipeline = Pipeline([
('scaler', StandardScaler()),
('model', ModelClass())
])
# Training
pipeline.fit(X_train, y_train)
# Evaluation
score = pipeline.score(X_test, y_test)
Best practices:
- Always split data before preprocessing
- Use cross-validation for robust evaluation
- Log all experiments and parameters
- Version control models and data
- Document model assumptions and limitations
Frequently asked questions about Machine Learning Model Developer
Similar skills
scvi-tools Deep Learning
Advanced tools for single-cell genomic analysis.
Arize Experiment
Evaluate and compare model performance with ease.
DEFT Mining and Embedding
Automate image mining for machine learning workflows.
TimesFM Forecasting
Zero-shot time series forecasting with Googleβs TimesFM.
SHAP
Audit and explain machine learning predictions with SHAP.
scvi-tools
Advanced tools for single-cell omics analysis.
