用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/javimosch/supercli --skill vmstat命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | vmstat |
| description | Report virtual memory and system statistics |
Report virtual memory, processes, CPU, I/O, and system statistics.
# One-shot system statistics
vmstat
# Continuous monitoring (every 2 seconds, 5 times)
vmstat 2 5
# Show active/inactive memory
vmstat -a
# Disk statistics
vmstat -d
# Disk summary
vmstat -D
# Partition read/write stats
vmstat -p sda1
# Slab allocator statistics
vmstat -s
# Show version
vmstat --version
| Flag | Description |
|---|---|
-a | Show active/inactive memory |
-d | Disk statistics (read/write per disk) |
-D | Disk summary statistics |
-p | Partition-specific statistics |
-s | Slab allocator statistics |
-t | Timestamp on each line |
-S | Unit (k/K/m/M) |
-w | Wide output |
| Field | Description |
|---|---|
| r | Processes waiting for CPU |
| b | Processes in uninterruptible sleep |
| swpd | Used swap memory |
| free | Free memory |
| buff | Buffer cache |
| cache | Page cache |
| si/so | Swap in/out |
| bi/bo | Block in/out |
| us/sy/id/wa | CPU time percentages |
delay and count for real-time monitoringwa (wait) indicates I/O bottlenecksi/so indicates swapping pressure (needs more RAM)