Overview
- Skill Key
- guohongbin-git/mlops-automation-cn
- Author
- guohongbin-git
- Source Repo
- openclaw/skills
- Version
- 1.0.0
- Source Path
- skills/guohongbin-git/mlops-automation-cn
- Latest Commit SHA
- a5bde140dc312c06c020b757100b583932ae5490
Task automation, containerization, CI/CD, and experiment tracking
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 mlops-automation-cn 技能。 若已安装,则直接安装 mlops-automation-cn 技能。
# MLOps Automation 🤖
Automate tasks, containers, CI/CD, and ML experiments.
## Features
### 1. Task Runner (just) ⚡
Copy justfile:
```bash
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:
```bash
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:
```bash
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
```bash
# 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
```python
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](https://github.com/MLOps-Courses/mlops-coding-skills)
## Changelog
### v1.0.0 (2026-02-18)
- Initial OpenClaw conversion
- Added justfile template
- Added Dockerfile
- Added CI workflow
aicodelion
🚀 Clone your OpenClaw AI Agent to a new device in ~25 minutes — configs, memory, skills, everything.
heyixuan2
Bambu Lab 3D printer control and automation. Activate when user mentions: printer status, 3D printing, slice, analyze model, generate 3D, AMS filament, print monitor, Bambu Lab, or any 3D printing task. Full pipeline: search → generate → analyze → colorize → preview → open BS → user slice → print → monitor. Supports all 9 Bambu Lab printers (A1 Mini, A1, P1S, P2S, X1C, X1E, H2C, H2S, H2D).
cacheforge-ai
⚡ SOTA agent skills for OpenClaw — observability, security, code quality, incident response, and more. Built by Anvil AI.
zjianru
OpenClaw Skill: Safely restart the Gateway with context preservation, guardian watchdog, and multi-channel notification
jgm2025
Automated Linux server patching with PatchMon integration for OpenClaw
cyrustmods
🛡️ Audit and verify OpenClaw skills for safety, ensuring quality with 395 safe skills from an in-depth analysis of over 4,000 entries.