Token导航 LogoToken导航TokenDH.com
运维和基础设施external-servicegithub未标认证来源可访问clear审计未展示

mlops-dag-buildermlops dag 构建器

Agent Skill

mlops-dag-builder 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

384

周安装

16

GitHub Stars

127

下载量

128
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:mlops-dag-builder(mlops dag 构建器)
来源仓库:https://github.com/anton-abyzov/specweave
仓库路径:skills/mlops-dag-builder
安装命令:
npx skills add https://github.com/anton-abyzov/specweave --skill mlops-dag-builder
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/anton-abyzov/specweave --skill mlops-dag-builder

简介

mlops dag 构建器用于编排机器学习流水线任务依赖关系。

  • 它支持图形化建模与自动化部署,提升 MLOps 效率。
  • 安装自 specweave 仓库,适用于 Codex、Claude 等平台。
  • 需确认目标环境是否允许执行 DAG 生成与调度操作。
  • mlops-dag-builder 属于运维和基础设施类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

MLOps DAG Builder

Design and implement DAG-based ML pipeline architectures using production orchestration tools.

Overview

This skill provides guidance for building platform-agnostic MLOps pipelines using DAG orchestrators (Airflow, Dagster, Kubeflow, Prefect). It focuses on workflow architecture, not SpecWeave integration.

When to use this skill vs ml-pipeline-orchestrator:

  • Use this skill: General MLOps architecture, Airflow/Dagster DAGs, cloud ML platforms
  • Use ml-pipeline-orchestrator: SpecWeave increment-based ML development with experiment tracking

When to Use This Skill

  • Designing DAG-based workflow orchestration (Airflow, Dagster, Kubeflow)
  • Implementing platform-agnostic ML pipeline patterns
  • Setting up CI/CD automation for ML training jobs
  • Creating reusable pipeline templates for teams
  • Integrating with cloud ML services (SageMaker, Vertex AI, Azure ML)

What This Skill Provides

Core Capabilities

  1. Pipeline Architecture

- End-to-end workflow design - DAG orchestration patterns (Airflow, Dagster, Kubeflow) - Component dependencies and data flow - Error handling and retry strategies

  1. Data Preparation

- Data validation and quality checks - Feature engineering pipelines - Data versioning and lineage - Train/validation/test splitting strategies

  1. Model Training

- Training job orchestration - Hyperparameter management - Experiment tracking integration - Distributed training patterns

  1. Model Validation

- Validation frameworks and metrics - A/B testing infrastructure - Performance regression detection - Model comparison workflows

  1. Deployment Automation

- Model serving patterns - Canary deployments - Blue-green deployment strategies - Rollback mechanisms

Usage Patterns

Basic Pipeline Setup

# 1. Define pipeline stages
stages = [
    "data_ingestion",
    "data_validation",
    "feature_engineering",
    "model_training",
    "model_validation",
    "model_deployment"
]

# 2. Configure dependencies between stages

Production Workflow

  1. Data Preparation Phase

- Ingest raw data from sources - Run data quality checks - Apply feature transformations - Version processed datasets

  1. Training Phase

- Load versioned training data - Execute training jobs - Track experiments and metrics - Save trained models

  1. Validation Phase

- Run validation test suite - Compare against baseline - Generate performance reports - Approve for deployment

  1. Deployment Phase

- Package model artifacts - Deploy to serving infrastructure - Configure monitoring - Validate production traffic

Best Practices

Pipeline Design

  • Modularity: Each stage should be independently testable
  • Idempotency: Re-running stages should be safe
  • Observability: Log metrics at every stage
  • Versioning: Track data, code, and model versions
  • Failure Handling: Implement retry logic and alerting

Data Management

  • Use data validation libraries (Great Expectations, TFX)
  • Version datasets with DVC or similar tools
  • Document feature engineering transformations
  • Maintain data lineage tracking

Model Operations

  • Separate training and serving infrastructure
  • Use model registries (MLflow, Weights & Biases)
  • Implement gradual rollouts for new models
  • Monitor model performance drift
  • Maintain rollback capabilities

Deployment Strategies

  • Start with shadow deployments
  • Use canary releases for validation
  • Implement A/B testing infrastructure
  • Set up automated rollback triggers
  • Monitor latency and throughput

Integration Points

Orchestration Tools

  • Apache Airflow: DAG-based workflow orchestration
  • Dagster: Asset-based pipeline orchestration
  • Kubeflow Pipelines: Kubernetes-native ML workflows
  • Prefect: Modern dataflow automation

Experiment Tracking

  • MLflow for experiment tracking and model registry
  • Weights & Biases for visualization and collaboration
  • TensorBoard for training metrics

Deployment Platforms

  • AWS SageMaker for managed ML infrastructure
  • Google Vertex AI for GCP deployments
  • Azure ML for Azure cloud
  • Kubernetes + KServe for cloud-agnostic serving

Progressive Disclosure

Start with the basics and gradually add complexity:

  1. Level 1: Simple linear pipeline (data → train → deploy)
  2. Level 2: Add validation and monitoring stages
  3. Level 3: Implement hyperparameter tuning
  4. Level 4: Add A/B testing and gradual rollouts
  5. Level 5: Multi-model pipelines with ensemble strategies

Common Patterns

Batch Training Pipeline

stages:
  - name: data_preparation
    dependencies: []
  - name: model_training
    dependencies: [data_preparation]
  - name: model_evaluation
    dependencies: [model_training]
  - name: model_deployment
    dependencies: [model_evaluation]

Real-time Feature Pipeline

# Stream processing for real-time features
# Combined with batch training for production

Continuous Training

# Automated retraining on schedule
# Triggered by data drift detection

Troubleshooting

Common Issues

  • Pipeline failures: Check dependencies and data availability
  • Training instability: Review hyperparameters and data quality
  • Deployment issues: Validate model artifacts and serving config
  • Performance degradation: Monitor data drift and model metrics

Debugging Steps

  1. Check pipeline logs for each stage
  2. Validate input/output data at boundaries
  3. Test components in isolation
  4. Review experiment tracking metrics
  5. Inspect model artifacts and metadata

Next Steps

After setting up your pipeline:

  1. Explore hyperparameter-tuning skill for optimization
  2. Learn experiment-tracking-setup for MLflow/W&B
  3. Review model-deployment-patterns for serving strategies
  4. Implement monitoring with observability tools

Related Skills

  • ml-pipeline-orchestrator: SpecWeave-integrated ML development (use for increment-based ML)
  • experiment-tracker: MLflow and Weights & Biases experiment tracking
  • automl-optimizer: Automated hyperparameter optimization with Optuna/Hyperopt
  • ml-deployment-helper: Model serving and deployment patterns

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

Claude Code

30.26%
按下载量换算39

Antigravity

22.56%
按下载量换算29

Cursor

16.74%
按下载量换算21

Gemini CLI

11.7%
按下载量换算15

OpenCode

7.88%
按下载量换算10

Codex

3.02%
按下载量换算4

安全审计

暂无安全审计结果可展示。

权限和风险

external-service

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills