Install
openclaw skills install luban-cliDevelopment and management of the Luban CLI for MLOps. Use this skill when building or using the Luban CLI to manage experiment environments, training tasks, and online services.
openclaw skills install luban-cliThis skill provides a structured framework for developing and using the Luban CLI, a specialized tool for MLOps management.
The Luban CLI focuses on three primary MLOps pillars:
env): Management of development workspaces.job): Orchestration of model training workloads.svc): Deployment and scaling of inference services.When developing or extending the Luban CLI, follow these steps:
templates/cli_boilerplate.py as a starting point for the CLI structure.references/mlops_guide.md for the standard command patterns and required attributes for each entity.env, job, svc) supports the full lifecycle:
luban env list
luban env create --name research-v1 --image pytorch:2.0
luban job create --script train.py --gpu 1
luban job status --id job_001
luban svc create --model-path ./models/v1 --replicas 3
luban svc scale --id my-service --replicas 5
templates/cli_boilerplate.py: A Python-based CLI structure using argparse.references/mlops_guide.md: Detailed specifications for MLOps entities and operations.