一键导入
mlops-automation
Guide to refine MLOps projects with task automation, containerization, CI/CD pipelines, and robust experiment tracking.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Guide to refine MLOps projects with task automation, containerization, CI/CD pipelines, and robust experiment tracking.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | MLOps Automation |
| description | Guide to refine MLOps projects with task automation, containerization, CI/CD pipelines, and robust experiment tracking. |
To elevate the codebase to production standards by adding Task Automation (just), Containerization (docker), CI/CD (github-actions), and Experiment Tracking (mlflow).
uvReplace manual commands with a justfile.
just (modern alternative to Make).tasks/*.just modules (e.g., tasks/check.just, tasks/docker.just).check: Run all linters and tests.package: Build wheels.clean: Remove artifacts.install: Setup dev environment.Catch issues locally.
pre-commit.ruff, bandit, check-yaml, trailing-whitespace.commitizen hook to enforce Conventional Commits (e.g., feat: add new model)..pre-commit-config.yaml at root.Reproducibility anywhere.
docker.ghcr.io/astral-sh/uv:python3.1X-bookworm-slim for minimal size.uv.lock + pyproject.toml and run uv sync before copying src/.dist/*.whl) to the runtime stage.ghcr.io for GitHub.Automate verification and release.
github-actions for GitHub.check.yml: On PRs (Run just check).publish.yml: On Release (Build docker image, publish docs/package).concurrency to cancel redundant runs.Manage the ML lifecycle.
MLflow.mlflow.autolog().@champion or @production for stable deployment pointers. Never rely on moving versions (e.g., v1 -> v2).Write flexible code.
ModelFactory).Guide to prepare MLOps projects for sharing, collaboration, and community engagement.
Guide to transform prototypes into robust, distributable Python packages using the src layout, hybrid paradigm, and strict configuration management.
Guide to initialize a new MLOps project with standard tools (uv, git, VS Code) and best practices.
Guide to implement full stack observability including reproducibility, lineage, monitoring, alerting, and explainability.
Guide to create structured, reproducible Jupyter notebooks for MLOps prototyping, emphasizing configuration management and pipeline integrity.
Guide to implement rigorous validation layers including static analysis, automated testing, structured logging, and security scanning.