Tencent MPS
一个面向 crypto 场景的 Agent 技能。原始说明:腾讯云 MPS 媒体处理服务,支持以下功能:【视频转码】转码/压缩/格式转换/H.264/H.265/AV1/MP4/编码/码率/分辨率/帧率。【画质增强】画质增强/老片修复/超分/视频超分/真人增强/漫剧增强/防抖/720P/1080P/2K/4K。【音频处理】音频分离/人声提取/伴奏提取/去...
Version: 1.0.0
Skill ID:
memory-health-check
Status: Ready for Development
| 项目 | 内容 |
| ---- | ---- |
| 核心功能 | 6维内存健康诊断(完整性/新鲜度/膨胀率/孤儿/去重/覆盖率) |
| 主入口 | bin/health_check.sh |
| 依赖 | OpenClaw v2026.4.9+, sqlite3 |
memory-health-check/
├── SKILL.md # This file
├── bin/
│ ├── health_check.sh # Main entry point
│ ├── integrity_scan.py # DB corruption checks
│ ├── bloat_detector.py # Size analysis
│ ├── orphan_finder.py # Reference graph orphan detection
│ ├── dedup_scanner.py # Duplicate detection
│ ├── freshness_report.py # Entry age distribution
│ └── health_score.py # Aggregate scoring
├── scripts/
│ ├── generate_report.py # Report generator
│ └── auto_repair.py # Cleanup script
├── config/
│ └── thresholds.yaml
├── reports/
│ └── .gitkeep
└── README.md
# Full health check
memory-health-check/bin/health_check.sh
# With auto-repair
memory-health-check/bin/health_check.sh --auto-repair
# Specific dimensions only
memory-health-check/bin/health_check.sh --dims integrity,bloat
| Dimension | Healthy | Warning | Critical |
|-----------|---------|---------|----------|
| Integrity | ✅ | ⚠️ | 🔴 |
| Freshness (>70%) | >70% | 40–70% | <40% |
| Bloat | <500MB | 500MB–2GB | >2GB |
| Orphans | 0% | 1–5% | >5% |
| Dedup | <2% | 2–10% | >10% |
| Coverage | >80% | 50–80% | <50% |
| Tier | Price | Features |
|------|-------|----------|
| Free | $0 | 1 scan/week, text report |
| Pro | $9.90/mo | Unlimited scans, 6-dim diagnostics, auto-repair, 90-day history |
| Bundle | $17.90/mo | dreaming-optimizer Pro + memory-health-check Pro |
See: ``