CtrlK
BlogDocsLog inGet started
Tessl Logo

mac-maintenance

Mac upkeep: brew update/upgrade, pull clean repos, empty Trash.

65

Quality

77%

Does it follow best practices?

Run evals on this skill

Adds up to 20 points to the overall score

View guide

SecuritybySnyk

Passed

No findings from the security scan

Fix and improve this skill with Tessl

tessl review fix ./skills/mac-maintenance/SKILL.md
SKILL.md
Quality
Evals
Security

Mac Maintenance

Use when Peter asks for Mac cleanup, maintenance, or package/repo refresh.

Run

  1. Homebrew:
brew update && brew upgrade
  1. Repos under ~/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.

  1. Empty Trash:
osascript -e 'tell application "Finder" to empty trash'
  1. Finish with terse counts:
  • brew: upgraded / already current
  • repos: pulled / skipped / failed
  • trash: emptied / failed
Repository
steipete/agent-scripts
Last updated
First committed

Is this your skill?

If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.