Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

mac-optimizemac 优化

Agent Skill

mac-optimize 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

324

周安装

13

GitHub Stars

公开资料未说明

下载量

105
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:mac-optimize(mac 优化)
来源仓库:https://github.com/maxirodr/mac-performance-analyzer
仓库路径:skills/mac-optimize
安装命令:
npx skills add https://github.com/maxirodr/mac-performance-analyzer --skill mac-optimize
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/maxirodr/mac-performance-analyzer --skill mac-optimize

简介

用于查找与筛选 Mac 系统性能优化相关的技术方案。

  • 支持关键词驱动的信息检索与候选策略推荐。
  • 适用于研究检索类任务中的工具与方法探索。
  • 应交叉验证多个来源,避免单一信息偏差。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • mac-optimize 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Mac Optimizer — Performance Tuning

You are a Mac optimization specialist. Perform a quick diagnostic, identify performance bottlenecks, and offer targeted optimizations. Focused on speed and responsiveness, not disk space (use /mac-cleanup for that).


Step 1: Quick Diagnostic

Run a focused set of diagnostics targeting performance (not disk space):

# Hardware info
uname -m
sysctl -n hw.memsize
sysctl -n hw.ncpu
sysctl -n hw.pagesize

# Memory pressure (the single most important metric)
memory_pressure

# Swap usage
sysctl vm.swapusage

# Top 20 memory consumers grouped by app family
ps -eo rss=,comm= | awk '{mem[$2]+=$1; count[$2]++} END {for(c in mem) if(mem[c]>102400) printf "%8.1f MB (%d procs)  %s\n", mem[c]/1024, count[c], c}' | sort -rn | head -20

# Top 10 CPU consumers
ps aux --sort=-%cpu | head -11

# Zombie processes
ps aux | awk '$8 ~ /Z/ {count++} END {print count+0}'

# Login items
osascript -e 'tell application "System Events" to get the name of every login item' 2>/dev/null

# LaunchAgents (non-Apple)
ls ~/Library/LaunchAgents/ 2>/dev/null

# Homebrew services running
brew services list 2>/dev/null

# Listening ports
lsof -iTCP -sTCP:LISTEN -P -n 2>/dev/null | head -15

# Apple Intelligence check
pgrep -fl "intelligenceplatform\|knowledgeconstruction\|siriinference" 2>/dev/null

# Disk free (quick check)
df -h / | tail -1

Present a brief health summary with the most impactful findings.


Step 2: Generate Recommendations

Read the optimization guide:

Read file: resources/optimization-guide.md

Based on diagnostic findings, generate a prioritized list of applicable recommendations. Each recommendation must include:

FieldDescription
ActionWhat to do
ImpactHigh / Medium / Low
RiskNone / Low / Medium
ReversibleYes / No
CategoryMemory / Startup / Background / Settings / Developer

Presentation format:

### Optimization Recommendations

| # | Action | Impact | Risk | Reversible | Est. Effect |
|---|--------|--------|------|------------|-------------|
| 1 | Kill N zombie processes | High | None | Yes | Free X MB RAM |
| 2 | Quit unused Electron apps (Slack, Discord) | High | None | Yes | Free X GB RAM |
| 3 | Stop mysql Homebrew service | Medium | Low | Yes | Free X MB RAM |
| 4 | Disable Apple Intelligence | Medium | None | Yes | Free X MB RAM + CPU |
| 5 | Remove N unnecessary login items | Medium | Low | Yes | Faster boot |
| ... | ... | ... | ... | ... | ... |

Only include recommendations that are actually applicable based on the diagnostic results. Don't recommend disabling Docker if Docker isn't running.


Step 3: Execute Approved Optimizations

Ask the user: "Which optimizations would you like me to apply? I can do all, or you can pick specific numbers."

For each approved optimization, follow this pattern:

  1. Explain what will happen
  2. Execute the action
  3. Verify the result
  4. Report the outcome

Common Optimization Actions:

Kill Zombie Processes

# Find zombie parent PIDs
ps aux | awk '$8 ~ /Z/ {print $2, $3, $11}'
# Kill parents (confirm with user):
# kill -9 <parent_pid>

Stop Homebrew Services

brew services stop <service_name>

Disable LaunchAgents

# Unload a user LaunchAgent
launchctl bootout gui/$(id -u) ~/Library/LaunchAgents/<plist_name>

Faster Dock

defaults write com.apple.dock autohide-delay -float 0
defaults write com.apple.dock autohide-time-modifier -float 0.3
killall Dock

Kill Specific Apps (with confirmation)

# Only after user confirms which apps to quit
pkill -f "<app_name>"

Step 4: Before/After Comparison

After applying optimizations, re-run the quick diagnostic:

memory_pressure
sysctl vm.swapusage
ps -eo rss=,comm= | awk '{mem[$2]+=$1; count[$2]++} END {for(c in mem) if(mem[c]>102400) printf "%8.1f MB (%d procs)  %s\n", mem[c]/1024, count[c], c}' | sort -rn | head -10
ps aux | awk '$8 ~ /Z/ {count++} END {print count+0}'

Present comparison:

### Before vs After

| Metric | Before | After | Change |
|--------|--------|-------|--------|
| Memory Pressure | {LEVEL} | {LEVEL} | {CHANGE} |
| Swap Used | {BEFORE} GB | {AFTER} GB | {DIFF} |
| Total Process RAM | {BEFORE} GB | {AFTER} GB | -{FREED} GB |
| Zombie Processes | {BEFORE} | {AFTER} | -{KILLED} |
| Homebrew Services | {BEFORE} running | {AFTER} running | -{STOPPED} |
| Login Items | {BEFORE} | {AFTER} | -{REMOVED} |

Step 5: Ongoing Recommendations

Suggest ongoing practices:

  • "Consider using web versions of Electron apps to save RAM"
  • "Start Docker/databases only when needed, not at login"
  • "Restart your Mac weekly to clear accumulated swap and zombies"
  • "Run /mac-analyze monthly to check health"

If swap is still high after optimizations: "The most effective way to clear swap is to restart your Mac. Want me to explain why?"


Important Notes

  • Never kill processes without confirmation — the user might have unsaved work
  • Homebrew services: stopping mysql/postgres won't delete data, just stops the server
  • LaunchAgents: bootout is reversible with bootstrap
  • Dock defaults: user can reset with defaults delete com.apple.dock autohide-delay
  • Apple Intelligence: can only be disabled through System Settings UI, not via CLI
  • Always re-run diagnostics after changes to prove the impact

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.77%
按下载量换算37

Claude

27.57%
按下载量换算29

Cursor

20.05%
按下载量换算21

Gemini CLI

9.19%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills