← 返回 Skills 市场
49
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install capacity-monitor
功能描述
Monitors system resource utilization and reports idle capacity for workload scheduling
使用说明 (SKILL.md)
容量监控器
概述
读取系统资源使用情况(CPU、内存),计算当前空闲容量。供下游调度器用于决定在系统空闲时运行哪些辅助任务以提升资源利用率。
使用场景
- 资源优化:在系统空闲时启动辅助任务
- 容量规划:记录资源使用趋势辅助容量规划
- 负载均衡:识别低负载节点以分配更多任务
使用方法
- 读取
/proc/loadavg获取 CPU 负载。 - 读取系统内存信息计算空闲内存。
- 输出空闲容量报告 JSON。
输出格式
{
"monitor_timestamp": "2026-06-01T12:00:00",
"cpu_percent_idle": 75.0,
"memory_mb_available": 4096,
"status": "completed"
}
实现代码
见 scripts/monitor.py。
安全使用建议
Install only if you are comfortable letting the skill read basic local system utilization metrics. It appears limited to CPU and memory availability reporting and does not show network, credential, persistence, or file-mutation behavior.
能力评估
Purpose & Capability
The SKILL.md describes capacity monitoring, and the included Python script reads /proc/loadavg and /proc/meminfo to output a JSON idle-capacity report.
Instruction Scope
Runtime behavior is narrow and disclosed; it does not instruct the agent to access credentials, modify files, contact networks, or take autonomous actions beyond running the monitor.
Install Mechanism
No package installation, external download, or setup-time execution is declared; the artifact contains only SKILL.md and a small Python script.
Credentials
Reading Linux /proc CPU and memory metrics is proportionate for a system-administration capacity monitor.
Persistence & Privilege
No persistence, privilege escalation, background worker, credential use, or sensitive data handling is present in the inspected artifact.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install capacity-monitor - 安装完成后,直接呼叫该 Skill 的名称或使用
/capacity-monitor触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of capacity-monitor.
- Monitors CPU and memory usage to calculate current idle capacity.
- Reports system idle capacity in JSON format for workload scheduling.
- Supports use cases such as resource optimization, capacity planning, and load balancing.
- Reads from system files (`/proc/loadavg`, memory info) for metrics.
- Provides usage overview and output format documentation.
元数据
常见问题
Capacity Monitor 是什么?
Monitors system resource utilization and reports idle capacity for workload scheduling. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 49 次。
如何安装 Capacity Monitor?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install capacity-monitor」即可一键安装,无需额外配置。
Capacity Monitor 是免费的吗?
是的,Capacity Monitor 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Capacity Monitor 支持哪些平台?
Capacity Monitor 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Capacity Monitor?
由 InkLin(@ink5725)开发并维护,当前版本 v1.0.0。
推荐 Skills