system-info

Get system information — OS version, disk usage, memory, running processes, network status. Use when users ask about their computer status or system health.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "system-info" with this command: npx skills add ninehills/skills/ninehills-skills-system-info

System Info Skill

Gather system information using standard command-line tools.

Commands

# OS version
sw_vers                              # macOS
uname -a                             # Any Unix

# Disk usage
df -h                                # All volumes
du -sh ~/Desktop ~/Documents ~/Downloads  # Common folders

# Memory
vm_stat                              # macOS memory stats
top -l 1 -s 0 | head -12            # Quick system overview

# CPU
sysctl -n machdep.cpu.brand_string   # CPU model
sysctl -n hw.ncpu                    # CPU count

# Running processes (top CPU/memory)
ps aux --sort=-%cpu | head -10       # Top CPU
ps aux --sort=-%mem | head -10       # Top memory

# Network
ifconfig | grep "inet "              # IP addresses
networksetup -getairportnetwork en0  # WiFi network (macOS)
ping -c 1 8.8.8.8                    # Connectivity check

# Battery (MacBook)
pmset -g batt                        # Battery status

# Uptime
uptime

Tips

  • Use sw_vers for macOS version details
  • Use system_profiler SPHardwareDataType for full hardware info
  • Use lsof -i :PORT to check what's running on a port

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

self-reflection

No summary provided by upstream source.

Repository SourceNeeds Review
General

tvscreener

No summary provided by upstream source.

Repository SourceNeeds Review
General

send-file

No summary provided by upstream source.

Repository SourceNeeds Review
General

news-aggregator-skill

No summary provided by upstream source.

Repository SourceNeeds Review