mlops-automation-cn

Task automation, containerization, CI/CD, and experiment tracking

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "mlops-automation-cn" with this command: npx skills add guohongbin-git/mlops-automation-cn

MLOps Automation 🤖

Automate tasks, containers, CI/CD, and ML experiments.

Features

1. Task Runner (just) ⚡

Copy justfile:

cp references/justfile ../your-project/

Tasks:

  • just check - Run all checks
  • just test - Run tests
  • just build - Build package
  • just clean - Remove artifacts
  • just train - Run training

2. Docker 🐳

Multi-stage build:

cp references/Dockerfile ../your-project/
docker build -t my-model .
docker run my-model

Optimizations:

  • Layer caching (uv sync before copy src/)
  • Minimal runtime image
  • Non-root user

3. CI/CD (GitHub Actions) 🔄

Automated pipeline:

cp references/ci-workflow.yml ../your-project/.github/workflows/ci.yml

Runs on push/PR:

  • Lint (Ruff + MyPy)
  • Test (pytest + coverage)
  • Build (package + Docker)

Quick Start

# Setup task runner
cp references/justfile ./

# Setup CI
mkdir -p .github/workflows
cp references/ci-workflow.yml .github/workflows/ci.yml

# Setup Docker
cp references/Dockerfile ./

# Test locally
just check
docker build -t test .

MLflow Tracking

import mlflow

mlflow.autolog()
with mlflow.start_run():
    mlflow.log_param("lr", 0.001)
    model.fit(X, y)
    mlflow.log_metric("accuracy", acc)

Author

Converted from MLOps Coding Course

Changelog

v1.0.0 (2026-02-18)

  • Initial OpenClaw conversion
  • Added justfile template
  • Added Dockerfile
  • Added CI workflow

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Security

AI Skill Maintainer (EN)

AI公司 Skill 维护工作流(CTO 版本govern + CISO security运营standard版)。当需要对已publish的 Skill 进行版本update、bug修复、Function增强、依赖upgrade、security补丁、废弃(deprecation)manage时trigger。...

Registry SourceRecently Updated
1320Profile unavailable
Security

AI Skill Optimizer (EN)

AI公司 Skill optimize工作流(CTO 性能工程 + CISO securityoptimizestandard版)。当需要对现有 Skill 进行性能optimize、Token 节省、上下文精简、security加固、代码重构、质量enhance时trigger。trigger关键词:optim...

Registry SourceRecently Updated
1410Profile unavailable
Security

AI Skill Creator (EN)

AI公司 Skill 创作工作流(CTO MLOps + CISO securitystandard版)。当需要从头create新 Skill(包括初始化目录结构、编写 SKILL.md、引用文件、脚本资源、securityreview、quality gate)时使用。trigger关键词:createSkil...

Registry SourceRecently Updated
1500Profile unavailable
Automation

Email Excel Transfer

Pobieranie załączników z maila przez IMAP i wypełnianie plików Excel przez PowerShell. Użyj gdy użytkownik prosi o pobranie plików z email i wstawienie warto...

Registry SourceRecently Updated
680Profile unavailable