mlops-collaboration-cn
// Prepare projects for sharing, collaboration, and community
$ git log --oneline --stat
stars:1,933
forks:367
updated:March 4, 2026
SKILL.mdreadonly
SKILL.md Frontmatter
namemlops-collaboration-cn
version1.0.0
descriptionPrepare projects for sharing, collaboration, and community
licenseMIT
MLOps Collaboration 🤝
Make projects collaborative and community-ready.
Features
1. README Template 📖
Professional documentation:
cp references/README-template.md ../your-project/README.md
# Edit with your project details
Includes:
- Badges (PyPI, CI, License)
- Quick start guide
- Installation steps
- Usage examples
- Contributing guide
2. Required Files Checklist ✅
Community files:
LICENSE- MIT/Apache/GPLCODE_OF_CONDUCT.md- Contributor CovenantCONTRIBUTING.md- How to contributeCHANGELOG.md- Version history
3. Dev Container 📦
VS Code Dev Container:
// .devcontainer/devcontainer.json
{
"image": "mcr.microsoft.com/devcontainers/python:3.11",
"features": {
"ghcr.io/astral-sh/uv:latest": {}
}
}
Quick Start
# Copy README template
cp references/README-template.md ./README.md
# Create required files
touch LICENSE CODE_OF_CONDUCT.md CONTRIBUTING.md CHANGELOG.md
# Setup dev container
mkdir -p .devcontainer
# Add devcontainer.json
# Protect main branch (GitHub UI)
# Settings → Branches → Add rule
Release Checklist
- Bump version in
pyproject.toml - Update
CHANGELOG.md - Git tag:
git tag v1.0.0 - Push:
git push --tags - GitHub Release
Semantic Versioning
1.0.0→1.0.1- Bug fix (PATCH)1.0.0→1.1.0- New feature (MINOR)1.0.0→2.0.0- Breaking change (MAJOR)
Author
Converted from MLOps Coding Course
Changelog
v1.0.0 (2026-02-18)
- Initial OpenClaw conversion
- Added README template