rpi-cpu-monitor
树莓派 CPU 温度监控。当需要监控树莓派 CPU 温度时使用此 skill。功能:(1) 读取当前 CPU 温度,(2) 设置定时监控任务,(3) 温度超标时自动告警。支持 crontab 方案(零消耗,推荐)和 OpenClaw cron 方案。
Best use case
rpi-cpu-monitor is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
树莓派 CPU 温度监控。当需要监控树莓派 CPU 温度时使用此 skill。功能:(1) 读取当前 CPU 温度,(2) 设置定时监控任务,(3) 温度超标时自动告警。支持 crontab 方案(零消耗,推荐)和 OpenClaw cron 方案。
Teams using rpi-cpu-monitor should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/rpi-cpu-monitor/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How rpi-cpu-monitor Compares
| Feature / Agent | rpi-cpu-monitor | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
树莓派 CPU 温度监控。当需要监控树莓派 CPU 温度时使用此 skill。功能:(1) 读取当前 CPU 温度,(2) 设置定时监控任务,(3) 温度超标时自动告警。支持 crontab 方案(零消耗,推荐)和 OpenClaw cron 方案。
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
AI Agents for Marketing
Discover AI agents for marketing workflows, from SEO and content production to campaign research, outreach, and analytics.
AI Agents for Startups
Explore AI agent skills for startup validation, product research, growth experiments, documentation, and fast execution with small teams.
AI Agents for Coding
Browse AI agent skills for coding, debugging, testing, refactoring, code review, and developer workflows across Claude, Cursor, and Codex.
SKILL.md Source
# 树莓派 CPU 温度监控
## 快速开始
### 方案 1:crontab 方案(推荐,零消耗)
```bash
# 创建监控脚本
cat > /path/to/scripts/cpu-temp-monitor.sh << 'EOF'
#!/bin/bash
TEMP=$(vcgencmd measure_temp 2>/dev/null | cut -d= -f2 | cut -d\' -f1)
[ -z "$TEMP" ] && TEMP=$(cat /sys/class/thermal/thermal_zone0/temp | awk '{print $1/1000}')
TEMP_INT=${TEMP%.*}
if [ "$TEMP_INT" -gt 70 ]; then
curl -s -X POST "http://localhost:3000/api/sessions/agent:main:main/message" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $(cat /home/weiye/.openclaw/gateway-token)" \
-d '{"message":"⚠️ CPU温度过高: '${TEMP}'°C", "channel":"feishu"}'
fi
EOF
chmod +x /path/to/scripts/cpu-temp-monitor.sh
# 添加到 crontab(每 35 分钟执行)
crontab -e
# 添加: */35 * * * * /path/to/scripts/cpu-temp-monitor.sh
```
### 方案 2:OpenClaw cron 方案
```bash
# 启用 OpenClaw 内置 cron(每次调用大模型)
openclaw cron add --name "CPU温度监控" --schedule "*/35 * * * *" \
--message "检查CPU温度:运行 vcgencmd measure_temp,如果>70°C发送警告" \
--session isolated
```
## 对比
| 方案 | 大模型调用 | 适用场景 |
|------|-----------|---------|
| crontab | 0 次(仅超标时 API) | 生产环境,推荐 |
| OpenClaw cron | 每次 1 次 | 测试/开发 |
## 配置项
- 温度阈值:默认 70°C,可修改脚本中的 `70`
- 监控间隔:默认 35 分钟,修改 crontab 表达式
- 告警渠道:默认飞书,修改 API 调用中的 channel 参数Related Skills
Competitor Monitor
Tracks and analyzes competitor moves — pricing changes, feature launches, hiring, and positioning shifts
Agent Observability & Monitoring
Score, monitor, and troubleshoot AI agent fleets in production. Built for ops teams running 1-100+ agents.
pc-monitor-cn
name: pc-monitor-cn
hatsune-miku-monitor
初音未来监控器 - 可爱的桌面系统监控工具(GIF动画 + 贴边隐藏 + 一键加速)
desktop-monitor-widget
桌面监控悬浮球 - 实时显示系统资源状态
openclaw-version-monitor
监控 OpenClaw GitHub 版本更新,获取最新版本发布说明,翻译成中文, 并推送到 Telegram 和 Feishu。用于:(1) 定时检查版本更新 (2) 推送版本更新通知 (3) 生成中文版发布说明
jarvis-stock-monitor
全功能智能股票监控预警系统 Pro 版。支持成本百分比、均线金叉死叉、RSI 超买超卖、成交量异动、跳空缺口、动态止盈等 7 大预警规则。基础功能免费,高级功能 SkillPay 付费。
renewal-risk-monitor
识别续约风险信号,区分可挽回风险与高概率流失信号。;use for renewal, risk, customer-success workflows;do not use for 伪造健康度数据, 替代正式续约决策.
Amazon Review Monitor — Track, Analyze, Respond
**Never miss a negative review again. AI-drafted responses included.**
token-budget-monitor
Track and control token consumption across OpenClaw cron jobs
session-health-monitor
Context window health monitoring for OpenClaw agents — threshold warnings via Telegram, pre-compaction snapshots, and memory rotation.
cc-changelog-monitor
Monitor Claude Code releases and get Telegram alerts when new versions ship. Zero AI credits — pure bash monitoring.