Install
openclaw skills install mlops-industrialization-cnTransform prototypes into distributable Python packages
openclaw skills install mlops-industrialization-cnConvert notebooks to production packages.
Create src/ layout:
./scripts/create-package.sh my_package
Creates:
src/my_package/
├── __init__.py
├── io/ # I/O operations
├── domain/ # Pure business logic
└── application/ # Orchestration
Domain (Pure)
I/O (Impure)
Application
# Create package structure
./scripts/create-package.sh my_ml_package
# Add CLI entrypoint to pyproject.toml:
# [project.scripts]
# train = "my_ml_package.application.train:main"
Generated files:
src/my_package/domain/features.py - Feature engineeringsrc/my_package/io/data.py - Data loading/savingsrc/my_package/application/train.py - Training pipelineConverted from MLOps Coding Course