Use when you have a written implementation plan to execute in a separate session with review checkpoints
npx skills add yueweilu/ai-agent-skills --skill "system-info"
Install specific skill from multi-skill repository
# Description
Retrieve current system resource usage (CPU, Memory, Disk).
# SKILL.md
name: system-info
description: Retrieve current system resource usage (CPU, Memory, Disk).
System Info Skill
This skill allows the agent to inspect the environment it is running in.
Tools
sys_stats.py
Location: skills/system-info/sys_stats.py
Dependencies:
- psutil
Install via: pip install psutil
Usage:
python skills/system-info/sys_stats.py
Output Format:
Returns a JSON object with:
- cpu_percent: Overall CPU usage percentage
- memory: Object containing total, available, percent
- disk: Object containing total, free, percent
- platform: OS name
Acknowledgments
- Uses the psutil library.
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.