Gog
一个面向 Dev Tools 场景的 Agent 技能。原始说明:Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs.
name: mlops-initialization-cn
version: 1.0.0
description: MLOps project initialization with uv/git/VS Code best practices
license: MIT
Setup 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