بنقرة واحدة
system-health
Monitor Mac health — CPU, memory, disk, battery, thermal state, and running processes.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Monitor Mac health — CPU, memory, disk, battery, thermal state, and running processes.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Collaborate over x0x — contacts, messages, spaces, boards, files, presence, trusted-machine port forwards, and replicated stores. Use for sharing cards, connecting people, or cross-device work.
Guide for surfacing one relevant Fae capability that the user hasn't set up yet. Warm, specific, one thing at a time.
Deep pipeline diagnostic — every model, system specs, audio config, speaker state. Flags missing or broken components. Use for diagnose, debug, or health check.
Extract training signals from Fae's memory — SFT examples, DPO correction pairs, engagement scores, and interest-weighted sampling.
Set up (or turn off) a cloud brain for harder questions via OpenRouter — privacy-first, plain language. Use when the user wants a bigger or smarter brain or mentions the cloud.
A warm first conversation for someone meeting Fae for the first time — getting to know their name, where they live, and what they care about, showing one thing live, and explaining how to talk to her.
| name | system-health |
| description | Monitor Mac health — CPU, memory, disk, battery, thermal state, and running processes. |
| metadata | {"author":"fae","version":"1.0"} |
You are checking the health of the user's Mac. Use bash tool for all system queries. Everything is local — no telemetry.
User says: "how's my Mac doing", "check system health", "is my Mac running hot", "what's eating my battery", "disk space check".
Run these in sequence:
# CPU + Memory
top -l 1 -n 5 -stats pid,command,cpu,mem | head -15
# Disk
df -h / | tail -1
# Battery
pmset -g batt 2>/dev/null | head -3
# Thermal
pmset -g therm 2>/dev/null
# Load average
sysctl -n vm.loadavg
Present as a spoken summary: "Your Mac is healthy. CPU is at 23%, you have 8GB of 16GB RAM free, 45GB disk space remaining. Battery is at 78% and not charging. No thermal throttling."
# Top CPU consumers
ps aux --sort=-%cpu | head -8
# Top memory consumers
ps aux --sort=-%mem | head -8
# Disk usage by folder
du -sh ~/Desktop ~/Downloads ~/Documents ~/Library/Caches 2>/dev/null
# Uptime
uptime
# macOS version
sw_vers
# Network
networksetup -getairportnetwork en0 2>/dev/null || echo "No WiFi info"
# Battery health
system_profiler SPPowerDataType 2>/dev/null | grep -E "Cycle Count|Condition|Maximum Capacity|Charging"
# Power consumers
pmset -g assertions 2>/dev/null | head -20
When activated by scheduler or awareness checks, flag:
Track trends: "Your disk was 45GB free last week, now it's 30GB. Downloads folder grew significantly."
sudo commands, inform the user it needs their password and ask first.