ml-ops
Deploy, monitor, and manage ML models in production. Use when setting up model serving, experiment tracking, or ML infrastructure.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Deploy, monitor, and manage ML models in production. Use when setting up model serving, experiment tracking, or ML infrastructure.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Produce .pptx architecture presentations (title, context, component, sequence, deployment slides) with python-pptx. Use when the user asks for an architecture deck, solution presentation, design review slides, or any .pptx deliverable about a system design.
Produce .docx Solution Architecture Documents (SAD) with python-docx — context, requirements, views, decisions, NFRs. Use when the user asks for an architecture document, solution design document, HLD/LLD, or any .docx deliverable describing a system design.
Author Mermaid diagrams for architecture work — C4 context/container/component, sequence, deployment, flowchart, and state diagrams with copy-paste examples and CLI validation. Use when the user wants a text-based diagram, a diagram embedded in Markdown, or a quick architecture sketch.
Create production-grade frontend interfaces when backend services need admin panels, dashboards, or API documentation UIs. Use when building web interfaces for backend services.
Process multimedia files with FFmpeg and ImageMagick for encoding, conversion, and manipulation. Use when working with video, audio, or image processing pipelines.
Template for creating new skills. Copy this directory and customize for your specific use case.
| name | ml-ops |
| description | Deploy, monitor, and manage ML models in production. Use when setting up model serving, experiment tracking, or ML infrastructure. |
Activate this skill when deploying models or managing ML infrastructure.
import mlflow
mlflow.set_experiment("classification_v2")
with mlflow.start_run():
mlflow.log_params({"lr": 0.001, "epochs": 50})
mlflow.log_metrics({"accuracy": 0.94, "f1": 0.91})
mlflow.sklearn.log_model(model, "model")