← 返回 Skills 市场
katherineedwards2475

Rdk X5 Monitor

作者 qiaolongli · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
282
总下载
0
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install rdk-x5-monitor
功能描述
只读查询 RDK X5 实时硬件状态:CPU 使用率与频率、BPU 算力占用、内存/磁盘使用、芯片温度、GPU 频率、网络 IP 地址。Use when the user wants to READ or CHECK current CPU usage, BPU utilization, memory, temp...
使用说明 (SKILL.md)

RDK X5 Monitor — 系统监控

操作步骤

1. CPU 状态

# CPU 使用率(实时)
top -bn1 | head -5

# 各核频率
cat /sys/devices/system/cpu/cpu*/cpufreq/scaling_cur_freq

# 调度策略
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor

2. BPU 算力监控

# BPU 使用率(0~100)
cat /sys/devices/system/bpu/bpu0/ratio

# BPU 频率
cat /sys/devices/system/bpu/bpu0/devfreq/*/cur_freq

3. 温度

# 芯片温度(除以 1000 = ℃)
cat /sys/class/thermal/thermal_zone0/temp

# BPU 温度
cat /sys/class/hwmon/hwmon0/temp1_input

超过 95°C 自动降频,极限 105°C。

4. 内存与磁盘

free -h              # 内存
df -h                # 磁盘

5. GPU 频率

cat /sys/class/devfreq/*/cur_freq 2>/dev/null | head -1

6. 网络 IP

ip -4 addr show | grep inet | grep -v 127.0.0.1
hostname -I

7. 一键状态总览

echo "=== CPU ===" && top -bn1 | head -5 && \
echo "=== BPU ===" && cat /sys/devices/system/bpu/bpu0/ratio 2>/dev/null && \
echo "=== Temp ===" && echo "$(($(cat /sys/class/thermal/thermal_zone0/temp)/1000))°C" && \
echo "=== Mem ===" && free -h | head -2 && \
echo "=== Disk ===" && df -h / | tail -1 && \
echo "=== IP ===" && hostname -I

8. 持续监控(每 2 秒刷新)

watch -n 2 'echo "CPU: $(top -bn1 | grep Cpu | head -1)" && \
echo "BPU: $(cat /sys/devices/system/bpu/bpu0/ratio 2>/dev/null)%" && \
echo "Temp: $(($(cat /sys/class/thermal/thermal_zone0/temp)/1000))°C" && \
free -h | head -2'

排查故障

现象 原因 解决
CPU 100% 持续 进程占满 top 查看高占用进程;kill 或降低负载
温度 >90°C 散热不足 加装散热片/风扇;降低 BPU 负载
BPU ratio 始终 0 无推理任务运行 正常现象;启动 AI 推理后会上升
磁盘满 日志或备份过大 du -sh /var/log/*sudo apt clean
安全使用建议
This skill is internally consistent for read-only monitoring of an RDK X5 device and asks for nothing unusual. Before installing, consider: (1) confirm the agent will only run the listed read-only commands (prevent autonomous execution of remediation commands such as kill or apt clean unless you want that); (2) run the commands manually first to verify the same paths exist on your device; and (3) if you enable autonomous invocation, restrict it or require human approval so state-changing suggestions in the troubleshooting section are not executed without review.
功能分析
Type: OpenClaw Skill Name: rdk-x5-monitor Version: 1.0.0 The skill bundle contains standard Linux system monitoring commands specifically tailored for the RDK X5 hardware platform. The instructions in SKILL.md are limited to read-only operations for CPU, BPU, temperature, memory, and network status using common utilities like 'top', 'cat', 'free', and 'ip'. There is no evidence of malicious intent, data exfiltration, or unauthorized system modification.
能力评估
Purpose & Capability
Name and description describe read-only hardware/status queries and the SKILL.md contains only commands that read system state (top, cat of /sys and /proc paths, free, df, ip, hostname). The files/paths accessed (e.g., /sys/devices/system/bpu, /sys/class/thermal, /sys/class/devfreq) are consistent with monitoring an RDK X5 device.
Instruction Scope
Primary instructions are read-only and scoped to querying hardware/status. The troubleshooting section mentions state-changing commands (e.g., using kill, sudo apt clean) as manual remediation steps — these are not part of the main read-only checks but could be executed if the agent acted autonomously. Also the watch command polls repeatedly; ensure any automated execution is intended.
Install Mechanism
No install spec and no code files — lowest-risk instruction-only skill. Nothing is downloaded or written to disk by the skill itself.
Credentials
No environment variables, credentials, or config paths are requested. The operations rely on local system files and common binaries; requested access is proportional to a monitoring tool.
Persistence & Privilege
always:false and no special persistence or modifications to other skills or system-wide settings. The skill does not request elevated privileges explicitly, though some sysfs entries may require root to read on some systems.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install rdk-x5-monitor
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /rdk-x5-monitor 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release: Real-time hardware status monitoring
元数据
Slug rdk-x5-monitor
版本 1.0.0
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 1
常见问题

Rdk X5 Monitor 是什么?

只读查询 RDK X5 实时硬件状态:CPU 使用率与频率、BPU 算力占用、内存/磁盘使用、芯片温度、GPU 频率、网络 IP 地址。Use when the user wants to READ or CHECK current CPU usage, BPU utilization, memory, temp... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 282 次。

如何安装 Rdk X5 Monitor?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install rdk-x5-monitor」即可一键安装,无需额外配置。

Rdk X5 Monitor 是免费的吗?

是的,Rdk X5 Monitor 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Rdk X5 Monitor 支持哪些平台?

Rdk X5 Monitor 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Rdk X5 Monitor?

由 qiaolongli(@katherineedwards2475)开发并维护,当前版本 v1.0.0。

💬 留言讨论