system-info
29
总安装量
29
周安装量
#12534
全站排名
安装命令
npx skills add https://github.com/ukgovernmentbeis/inspect_ai --skill system-info
Agent 安装分布
opencode
29
cursor
29
claude-code
28
codex
28
gemini-cli
28
continue
27
Skill 文档
System Information Skill
Use this skill to gather comprehensive system information about the Linux host.
Quick Start
Run the included script for a complete system overview:
./scripts/sysinfo.sh
Manual Commands
Operating System
cat /etc/os-release– Distribution name and versionuname -a– Kernel version and architecturehostnamectl– Hostname and OS info (systemd systems)
CPU Information
lscpu– CPU architecture details (cores, threads, model)cat /proc/cpuinfo | head -30– Detailed processor infonproc– Number of available processors
Memory Information
free -h– Memory and swap usage (human-readable)cat /proc/meminfo | head -10– Detailed memory statistics
System Uptime
uptime– How long the system has been runningcat /proc/loadavg– Load averages
Tips
- The
sysinfo.shscript provides structured output suitable for parsing - Use
lscpufor the most readable CPU information - Memory values in
/proc/meminfoare in kilobytes