Overview
- Skill Key
- guohongbin-git/mlops-observability-cn
- Author
- guohongbin-git
- Source Repo
- openclaw/skills
- Version
- 1.0.0
- Source Path
- skills/guohongbin-git/mlops-observability-cn
- Latest Commit SHA
- f45c54896ff3d92bc553f9eed17e10524648cf09
Full stack observability - reproducibility, lineage, monitoring, alerting
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 mlops-observability-cn 技能。 若已安装,则直接安装 mlops-observability-cn 技能。
# MLOps Observability 👁️
Glass box system - reproducible, traceable, monitored.
## Features
### 1. MLflow Tracking 📊
Complete tracking setup:
```bash
cp references/mlflow-tracking.py ../your-project/src/tracking.py
```
Tracks:
- Config (params)
- Metrics (accuracy, loss)
- Models (sklearn/pytorch)
- Datasets (lineage)
- Git commit (reproducibility)
### 2. Drift Detection 📉
Using Evidently:
```python
from evidently import Report
from evidently.metrics import DataDriftTable
report = Report(metrics=[DataDriftTable()])
report.run(reference_data=train, current_data=prod)
```
### 3. Explainability (SHAP) 🔍
```python
import shap
explainer = shap.TreeExplainer(model)
shap_values = explainer.shap_values(X)
shap.summary_plot(shap_values, X)
```
## Quick Start
```bash
# Copy tracking code
cp references/mlflow-tracking.py ./src/
# Add to training script:
# from tracking import setup_tracking, log_training_run
```
## Reproducibility
```python
# Set all seeds
import random, numpy as np, torch
random.seed(42)
np.random.seed(42)
torch.manual_seed(42)
# Track git commit
import git
commit = git.Repo().head.commit.hexsha
mlflow.log_param("git_commit", commit)
```
## Monitoring Checklist
- [ ] Random seeds fixed
- [ ] MLflow tracking enabled
- [ ] System metrics logged
- [ ] Drift detection setup
- [ ] SHAP explanations saved
- [ ] Alerts configured
## Alerting
- **Local**: `plyer` notifications
- **Production**: PagerDuty (critical) / Slack (warnings)
## Author
Converted from [MLOps Coding Course](https://github.com/MLOps-Courses/mlops-coding-skills)
## Changelog
### v1.0.0 (2026-02-18)
- Initial OpenClaw conversion
- Added MLflow tracking code
0xnyk
X Intelligence CLI — search, monitor, analyze, and engage on X/Twitter. TypeScript + Bun. AI agent skill.
heyixuan2
Bambu Lab 3D printer control and automation. Activate when user mentions: printer status, 3D printing, slice, analyze model, generate 3D, AMS filament, print monitor, Bambu Lab, or any 3D printing task. Full pipeline: search → generate → analyze → colorize → preview → open BS → user slice → print → monitor. Supports all 9 Bambu Lab printers (A1 Mini, A1, P1S, P2S, X1C, X1E, H2C, H2S, H2D).
jackculpan
Track flight prices from Google Flights with this OpenClaw skill. Search routes, monitor prices, and get alerts when prices drop.
openclaw-trade
openclaw trading assistant| openclaw trading skill | nof1.ai & openclaw [moltbot] collaboration | We get the best practices from alpha arena trading seasons and bring it to clawdbot All top AI agents, realtime monitoring and news research, gather info from private insiders and many other! Using Hyperliquid API.
xquik-dev
X (Twitter) automation skill for AI coding agents. Tweet search, user lookup, follower/following extraction, media download, reply/retweet/quote extraction, 40+ tools, account monitoring & trending topics. REST API, MCP server, HMAC webhooks. Works with Claude Code, Cursor, Codex, Copilot, Windsurf & 40+ agents.
mohsinkhadim59
Step-by-step guides for installing and running OpenClaw, an open-source AI agent, on Mac, Linux VPS, and AWS covering setup, security, messaging channels, Google integration, skills, and monitoring.