.gemini/skills/MLOps Automation/SKILL.md
Guide to refine MLOps projects with task automation, containerization, CI/CD pipelines, and robust experiment tracking.
npx skillsauth add fmind/mlops-python-package MLOps AutomationInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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).development
Guide to implement rigorous validation layers including static analysis, automated testing, structured logging, and security scanning.
testing
Guide to create structured, reproducible Jupyter notebooks for MLOps prototyping, emphasizing configuration management and pipeline integrity.
testing
Guide to implement full stack observability including reproducibility, lineage, monitoring, alerting, and explainability.
tools
Guide to initialize a new MLOps project with standard tools (uv, git, VS Code) and best practices.