with one click
mac-maintenance
Mac upkeep: brew update/upgrade, pull clean repos, empty Trash.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Mac upkeep: brew update/upgrade, pull clean repos, empty Trash.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
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'