Token导航 LogoToken导航TokenDH.com
前端设计external-servicegithub未标认证来源可访问许可证需确认审计通过

machine-learning-ops-ml-pipeline机器学习 ops ml 管道

Agent Skill

machine-learning-ops-ml-pipeline 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 Codex、Claude、Cursor、Gemini CLI 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,886

周安装

374

GitHub Stars

35,715

下载量

3,112
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:machine-learning-ops-ml-pipeline(机器学习 ops ml 管道)
来源仓库:https://github.com/sickn33/antigravity-awesome-skills
仓库路径:skills/machine-learning-ops-ml-pipeline
安装命令:
npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill machine-learning-ops-ml-pipeline
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill machine-learning-ops-ml-pipeline

简介

machine-learning-ops-ml-pipeline 用于记录任务执行中的错误、用户纠正和经验总结,适合持续沉淀问题与最佳实践。

  • 它支持能力缺口分析和修正建议生成,帮助 Agent 自我优化与知识积累。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,适用于 Codex、Claude、Cursor、Gemini CLI 等宿主环境。
  • 使用时需注意数据存储路径和读写权限,避免日志覆盖或权限不足问题。
  • 建议结合原始 README 了解日志格式和存储机制,确保与现有系统兼容。

SKILL.md

Machine Learning Pipeline - Multi-Agent MLOps Orchestration

Design and implement a complete ML pipeline for: $ARGUMENTS

Use this skill when

  • Working on machine learning pipeline - multi-agent mlops orchestration tasks or workflows
  • Needing guidance, best practices, or checklists for machine learning pipeline - multi-agent mlops orchestration

Do not use this skill when

  • The task is unrelated to machine learning pipeline - multi-agent mlops orchestration
  • You need a different domain or tool outside this scope

Instructions

  • Clarify goals, constraints, and required inputs.
  • Apply relevant best practices and validate outcomes.
  • Provide actionable steps and verification.
  • If detailed examples are required, open resources/implementation-playbook.md.

Thinking

This workflow orchestrates multiple specialized agents to build a production-ready ML pipeline following modern MLOps best practices. The approach emphasizes:

  • Phase-based coordination: Each phase builds upon previous outputs, with clear handoffs between agents
  • Modern tooling integration: MLflow/W&B for experiments, Feast/Tecton for features, KServe/Seldon for serving
  • Production-first mindset: Every component designed for scale, monitoring, and reliability
  • Reproducibility: Version control for data, models, and infrastructure
  • Continuous improvement: Automated retraining, A/B testing, and drift detection

The multi-agent approach ensures each aspect is handled by domain experts:

  • Data engineers handle ingestion and quality
  • Data scientists design features and experiments
  • ML engineers implement training pipelines
  • MLOps engineers handle production deployment
  • Observability engineers ensure monitoring

Phase 1: Data & Requirements Analysis

Deliverables:

  1. Data source audit and ingestion strategy:

- Source systems and connection patterns - Schema validation using Pydantic/Great Expectations - Data versioning with DVC or lakeFS - Incremental loading and CDC strategies

  1. Data quality framework:

- Profiling and statistics generation - Anomaly detection rules - Data lineage tracking - Quality gates and SLAs

  1. Storage architecture:

- Raw/processed/feature layers - Partitioning strategy - Retention policies - Cost optimization

Provide implementation code for critical components and integration patterns.

Deliverables:

  1. Feature engineering pipeline:

- Transformation specifications - Feature store schema (Feast/Tecton) - Statistical validation rules - Handling strategies for missing data/outliers

  1. Model requirements:

- Algorithm selection rationale - Performance metrics and baselines - Training data requirements - Evaluation criteria and thresholds

  1. Experiment design:

- Hypothesis and success metrics - A/B testing methodology - Sample size calculations - Bias detection approach

Include feature transformation code and statistical validation logic.

Phase 2: Model Development & Training

Build comprehensive training system:

  1. Training pipeline implementation:

- Modular training code with clear interfaces - Hyperparameter optimization (Optuna/Ray Tune) - Distributed training support (Horovod/PyTorch DDP) - Cross-validation and ensemble strategies

  1. Experiment tracking setup:

- MLflow/Weights & Biases integration - Metric logging and visualization - Artifact management (models, plots, data samples) - Experiment comparison and analysis tools

  1. Model registry integration:

- Version control and tagging strategy - Model metadata and lineage - Promotion workflows (dev -> staging -> prod) - Rollback procedures

Provide complete training code with configuration management.

Focus areas:

  1. Code quality and structure:

- Refactor for production standards - Add comprehensive error handling - Implement proper logging with structured formats - Create reusable components and utilities

  1. Performance optimization:

- Profile and optimize bottlenecks - Implement caching strategies - Optimize data loading and preprocessing - Memory management for large-scale training

  1. Testing framework:

- Unit tests for data transformations - Integration tests for pipeline components - Model quality tests (invariance, directional) - Performance regression tests

Deliver production-ready, maintainable code with full test coverage.

Phase 3: Production Deployment & Serving

Implementation requirements:

  1. Model serving infrastructure:

- REST/gRPC APIs with FastAPI/TorchServe - Batch prediction pipelines (Airflow/Kubeflow) - Stream processing (Kafka/Kinesis integration) - Model serving platforms (KServe/Seldon Core)

  1. Deployment strategies:

- Blue-green deployments for zero downtime - Canary releases with traffic splitting - Shadow deployments for validation - A/B testing infrastructure

  1. CI/CD pipeline:

- GitHub Actions/GitLab CI workflows - Automated testing gates - Model validation before deployment - ArgoCD for GitOps deployment

  1. Infrastructure as Code:

- Terraform modules for cloud resources - Helm charts for Kubernetes deployments - Docker multi-stage builds for optimization - Secret management with Vault/Secrets Manager

Provide complete deployment configuration and automation scripts.

Kubernetes-specific requirements:

  1. Workload orchestration:

- Training job scheduling with Kubeflow - GPU resource allocation and sharing - Spot/preemptible instance integration - Priority classes and resource quotas

  1. Serving infrastructure:

- HPA/VPA for autoscaling - KEDA for event-driven scaling - Istio service mesh for traffic management - Model caching and warm-up strategies

  1. Storage and data access:

- PVC strategies for training data - Model artifact storage with CSI drivers - Distributed storage for feature stores - Cache layers for inference optimization

Provide Kubernetes manifests and Helm charts for entire ML platform.

Phase 4: Monitoring & Continuous Improvement

Monitoring framework:

  1. Model performance monitoring:

- Prediction accuracy tracking - Latency and throughput metrics - Feature importance shifts - Business KPI correlation

  1. Data and model drift detection:

- Statistical drift detection (KS test, PSI) - Concept drift monitoring - Feature distribution tracking - Automated drift alerts and reports

  1. System observability:

- Prometheus metrics for all components - Grafana dashboards for visualization - Distributed tracing with Jaeger/Zipkin - Log aggregation with ELK/Loki

  1. Alerting and automation:

- PagerDuty/Opsgenie integration - Automated retraining triggers - Performance degradation workflows - Incident response runbooks

  1. Cost tracking:

- Resource utilization metrics - Cost allocation by model/experiment - Optimization recommendations - Budget alerts and controls

Deliver monitoring configuration, dashboards, and alert rules.

Configuration Options

  • experiment_tracking: mlflow | wandb | neptune | clearml
  • feature_store: feast | tecton | databricks | custom
  • serving_platform: kserve | seldon | torchserve | triton
  • orchestration: kubeflow | airflow | prefect | dagster
  • cloud_provider: aws | azure | gcp | multi-cloud
  • deployment_mode: realtime | batch | streaming | hybrid
  • monitoring_stack: prometheus | datadog | newrelic | custom

Success Criteria

  1. Data Pipeline Success:

- < 0.1% data quality issues in production - Automated data validation passing 99.9% of time - Complete data lineage tracking - Sub-second feature serving latency

  1. Model Performance:

- Meeting or exceeding baseline metrics - < 5% performance degradation before retraining - Successful A/B tests with statistical significance - No undetected model drift > 24 hours

  1. Operational Excellence:

- 99.9% uptime for model serving - < 200ms p99 inference latency - Automated rollback within 5 minutes - Complete observability with < 1 minute alert time

  1. Development Velocity:

- < 1 hour from commit to production - Parallel experiment execution - Reproducible training runs - Self-service model deployment

  1. Cost Efficiency:

- < 20% infrastructure waste - Optimized resource allocation - Automatic scaling based on load - Spot instance utilization > 60%

Final Deliverables

Upon completion, the orchestrated pipeline will provide:

  • End-to-end ML pipeline with full automation
  • Comprehensive documentation and runbooks
  • Production-ready infrastructure as code
  • Complete monitoring and alerting system
  • CI/CD pipelines for continuous improvement
  • Cost optimization and scaling strategies
  • Disaster recovery and rollback procedures

Limitations

  • Use this skill only when the task clearly matches the scope described above.
  • Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
  • Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.66%
按下载量换算1,047

Claude

31.06%
按下载量换算967

Cursor

19.74%
按下载量换算614

Gemini CLI

8.94%
按下载量换算278

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills