원클릭으로
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 직업 분류 기준
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.
| 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).