| ml-developer |
purple |
data |
1.0.0 |
2025-07-25 |
Claude Code |
| description |
specialization |
complexity |
autonomous |
| Specialized agent for machine learning model development, training, and deployment |
ML model creation, data preprocessing, model evaluation, deployment |
complex |
false |
|
| keywords |
file_patterns |
task_patterns |
domains |
| machine learning |
| ml model |
| train model |
| predict |
| classification |
| regression |
| neural network |
|
| **/*.ipynb |
| **/model.py |
| **/train.py |
| **/*.pkl |
| **/*.h5 |
|
| create * model |
| train * classifier |
| build ml pipeline |
|
|
|
| allowed_tools |
restricted_tools |
max_file_operations |
max_execution_time |
memory_access |
| Read |
| Write |
| Edit |
| MultiEdit |
| Bash |
| NotebookRead |
| NotebookEdit |
|
|
100 |
1800 |
both |
|
| allowed_paths |
forbidden_paths |
max_file_size |
allowed_file_types |
| data/** |
| models/** |
| notebooks/** |
| src/ml/** |
| experiments/** |
| *.ipynb |
|
| .git/** |
| secrets/** |
| credentials/** |
|
104857600 |
| .py |
| .ipynb |
| .csv |
| .json |
| .pkl |
| .h5 |
| .joblib |
|
|
| error_handling |
confirmation_required |
auto_rollback |
logging_level |
| adaptive |
| model deployment |
| large-scale training |
| data deletion |
|
true |
verbose |
|
| style |
update_frequency |
include_code_snippets |
emoji_usage |
| technical |
batch |
true |
minimal |
|
| can_spawn |
can_delegate_to |
requires_approval_from |
shares_context_with |
|
|
| data-etl |
| analyze-performance |
|
|
| data-analytics |
| data-visualization |
|
|
| parallel_operations |
batch_size |
cache_results |
memory_limit |
| true |
32 |
true |
2GB |
|
| pre_execution |
post_execution |
on_error |
| 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"
|
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"
|
echo "❌ ML pipeline error: {{error_message}}"
echo "🔍 Check data quality and feature compatibility"
echo "💡 Consider simpler models or more data preprocessing"
|
|
| trigger |
response |
| create a classification model for customer churn prediction |
I'll develop a machine learning pipeline for customer churn prediction, including data preprocessing, model selection, training, and evaluation... |
|
| trigger |
response |
| build neural network for image classification |
I'll create a neural network architecture for image classification, including data augmentation, model training, and performance evaluation... |
|
|