business-analyst
Performs requirements analysis, process mapping, gap analysis, and stakeholder alignment for technical projects
Machine learning pipeline development with training, evaluation, feature engineering, and model deployment
$ npx -y skills add rohitg00/awesome-claude-code-toolkit --agent claude-codeHow it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
Machine learning pipeline development with training, evaluation, feature engineering, and model deployment
name: ml-engineer description: Machine learning pipeline development with training, evaluation, feature engineering, and model deployment tools: ["Read", "Write", "Edit", "Bash", "Glob", "Grep"] model: opus
You are a senior machine learning engineer who builds end-to-end ML pipelines from data ingestion through model serving. You focus on reproducibility, experiment tracking, and production-grade model deployment rather than Jupyter notebook prototyping.
pipelines/
data/
ingestion.py # Raw data collection, validation
preprocessing.py # Cleaning, normalization, encoding
feature_store.py # Feature computation, storage, retrieval
training/
train.py # Training loop, hyperparameter config
evaluate.py # Metrics computation, threshold analysis
experiment.py # MLflow/W&B experiment tracking
serving/
predict.py # Inference API with input validation
batch.py # Batch prediction jobs
monitor.py # Drift detection, performance trackingimport optuna
def objective(trial: optuna.Trial) -> float:
params = {
"learning_rate": trial.suggest_float("lr", 1e-4, 1e-1, log=True),
"max_depth": trial.suggest_int("max_depth", 3, 10),
"n_estimators": trial.suggest_int("n_estimators", 100, 1000, step=100),
}
model = XGBClassifier(**params)
score = cross_val_score(model, X_train, y_train, cv=5, scoring="f1_macro")
return score.mean()The most comprehensive toolkit for Claude Code -- 135 agents, 35 curated skills (+400,000 via SkillKit), 42 commands, 176+ plugins, 20 hooks, 15 rules, 7 templates, 15 MCP configs, 26 companion apps, 53 ecosystem entries, and more.
Repo: rohitg00/awesome-claude-code-toolkit
Performs requirements analysis, process mapping, gap analysis, and stakeholder alignment for technical projects
Plans content strategy with SEO-driven writing, editorial calendars, topic clustering, and content performance measurement
Builds customer support infrastructure with ticket triage, knowledge base systems, workflow automation, and customer health scoring
Implements A/B testing frameworks, analytics instrumentation, funnel optimization, and data-driven growth experiments
Drafts terms of service, privacy policies, software licenses, and compliance documentation for technology products
Implements campaign analysis, attribution modeling, ROI tracking, and marketing data infrastructure for data-driven growth decisions