Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Development 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.
Development 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.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
This 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: Experiment Environments (env): Management of development workspaces. Training Tasks (job): Orchestration of model training workloads. Online Services (svc): Deployment and scaling of inference services.
When developing or extending the Luban CLI, follow these steps: Initialize Project: Use the boilerplate in templates/cli_boilerplate.py as a starting point for the CLI structure. Define Commands: Refer to references/mlops_guide.md for the standard command patterns and required attributes for each entity. Implement CRUD: Ensure every entity (env, job, svc) supports the full lifecycle: Create: Provisioning new resources. Read: Listing and describing existing resources. Update: Modifying configurations or scaling. Delete: Cleaning up resources.
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.
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.