Install
openclaw skills install mlops-initialization-cnMLOps project initialization with uv/git/VS Code best practices
openclaw skills install mlops-initialization-cnSetup new MLOps projects with modern Python toolchain.
Create complete project structure:
./scripts/init-project.sh my-mlops-project
Creates:
src/ layoutpyproject.toml with uv.gitignore (Python/MLOps).vscode/settings.jsonCopy reference configs:
# pyproject.toml template
cp references/pyproject.toml ../your-project/
# VS Code settings
cp references/vscode-settings.json ../your-project/.vscode/
# Initialize new project
./scripts/init-project.sh my-project
cd my-project
# Add dependencies
uv add pandas numpy scikit-learn
# Sync environment
uv sync
# Verify
uv run python -c "import sys; print(sys.executable)"
src/ package layoutuv.lock)references/pyproject.toml - Full config examplereferences/vscode-settings.json - IDE settingsConverted from MLOps Coding Course