원클릭으로
mac-maintenance
Mac upkeep: brew update/upgrade, pull clean repos, empty Trash.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Mac upkeep: brew update/upgrade, pull clean repos, empty Trash.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Delegated maintainer ops: decision-ready PRs, worker monitoring, queue cleanup, releases.
ClawSweeper status: URLs, workflow health, active workers, ops snapshot.
macOS app release: Sparkle, notarization, GitHub Release, Homebrew, closeout.
GitHub PR/issue agent transcripts: redact, preview, and insert safely.
GitHub issue/PR triage: queues, CI, blockers, risk, proof, next actions.
Codex/OpenClaw skill audit: live budget, usage, duplicates, compact descriptions.
| name | mac-maintenance |
| description | Mac upkeep: brew update/upgrade, pull clean repos, empty Trash. |
Use when Peter asks for Mac cleanup, maintenance, or package/repo refresh.
brew update && brew upgrade
~/Projects:for repo in ~/Projects/*/.git; do
dir=${repo:h}
git -C "$dir" status --short --branch
git -C "$dir" pull --ff-only
done
Skip dirty repos unless Peter explicitly asked to handle them. Report skipped paths.
osascript -e 'tell application "Finder" to empty trash'