Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
rtgs2017 avatar

System Info

  • 55 installs
  • 1.5k repo stars
  • Updated July 16, 2026
  • rtgs2017/nagaagent

Helps with ai & agent building tasks.

About

system-info is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.

  • system-info
  • AI & Agent Building
  • AI-coding skill

System Info by the numbers

  • 55 all-time installs (skills.sh)
  • Ranked #6,846 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/rtgs2017/nagaagent --skill system-info

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs55
repo stars1.5k
Last updatedJuly 16, 2026
Repositoryrtgs2017/nagaagent

What it does

Helps with ai & agent building tasks.

Files

SKILL.mdMarkdownGitHub ↗

系统信息查询技能

本技能提供系统信息查询和状态监控能力。

可查询的信息

1. 硬件信息

  • CPU 型号和核心数
  • 内存容量和使用率
  • 磁盘空间和分区
  • 显卡信息

2. 系统状态

  • 操作系统版本
  • 系统运行时间
  • 当前用户
  • 网络状态

3. 进程监控

  • 运行中的进程
  • CPU 占用排行
  • 内存占用排行

查询命令

macOS/Linux

# CPU 信息
sysctl -n machdep.cpu.brand_string  # macOS
lscpu  # Linux

# 内存信息
vm_stat  # macOS
free -h  # Linux

# 磁盘空间
df -h

# 系统信息
uname -a
sw_vers  # macOS

通用 Python 方法

import platform
import psutil

# 系统信息
platform.system()
platform.release()
platform.machine()

# 资源使用
psutil.cpu_percent()
psutil.virtual_memory()
psutil.disk_usage('/')

输出格式

## 系统信息报告

### 操作系统
- 系统: macOS 14.0
- 架构: arm64

### 硬件配置
- CPU: Apple M2 Pro (12核)
- 内存: 32GB (已用 60%)
- 磁盘: 500GB (剩余 200GB)

### 当前状态
- 运行时间: 5天 12小时
- CPU 负载: 15%
- 活跃进程: 256个

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.