Agent skill
deploy-model
Deploy or redeploy an inference model on the cluster. Use when asked to deploy, update, or restart a model.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/deploy-model
SKILL.md
Deploy Model
Deploy or manage inference models on Kaizen. Argument should be one of: reasoning, embedding, heavy, or a manifest path.
Pre-flight Checks
- Verify target node is Ready:
kubectl get nodes - Check GPU availability:
kubectl describe node <node> | grep -A3 nvidia.com/gpu - Check existing deployments:
kubectl get pods -n inference
Available Manifests
k8s/apps/inference/— All inference deploymentsk8s/apps/inference/sglang-core.yaml— Heavy model (Qwen2.5-72B, TP=4, CORE)
GPU Constraints
- INTERFACE: RTX 5090 (32GB) + RTX 4090 (24GB) — NO tensor parallelism
- CORE: 4x RTX 5070 Ti (16GB each) — TP=4 supported
- Deployment order determines GPU assignment on INTERFACE
Deploy Steps
- Read the manifest file
- Validate:
kubectl apply --dry-run=client -f <manifest> - Show the user what will be deployed (model, GPU, node, port)
- Ask for confirmation before applying
- Apply:
kubectl apply -f <manifest> - Watch:
kubectl rollout status -n inference deploy/<name> --timeout=300s - Test:
curl http://10.10.10.10:<port>/v1/models
Restart
kubectl rollout restart -n inference deploy/<name>
kubectl rollout status -n inference deploy/<name>
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?