agentsclimarketplace

Brew update

Skill ebal/AI-Skills/brew-update

Run Homebrew update, upgrade, and cleanup. Use when the user says "brew update", "homebrew update", "update homebrew", "brew upgrade", "brew cleanup", or "update packages".From its SKILL.md

Install
npx -y skills add ebal/AI-Skills --skill brew-update

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

1.8 KB, 436 tokens by cl100k_base, as published. Nobody here has run it

Brew Update

Runs a full Homebrew maintenance cycle: update, upgrade outdated packages, and cleanup old caches.

Locating the script

Commands below use ${SKILL_DIR} for the folder that contains this skill. Set it to wherever the skill is installed, for example:

SKILL_DIR="$HOME/.claude/skills/brew-update"      # Claude Code
# SKILL_DIR="$HOME/.config/opencode/skills/brew-update"   # OpenCode / OpenWork
# On Claude Code you can also reuse the injected variable: SKILL_DIR="$CLAUDE_SKILL_DIR"

Quick Start

Run the helper script:

bash "${SKILL_DIR}/brew-update.sh"

What It Does

  1. Update — Runs brew update to fetch the latest formulae
  2. Upgrade — Upgrades all outdated packages (skipped if --no-upgrade flag is passed)
  3. Cleanup — Removes old versions, downloads, and caches
  4. Report — Prints a summary of what changed

Options

FlagEffect
--no-upgradeOnly update and cleanup, skip upgrades
--dry-runShow what would be upgraded without doing it
--quietSuppress verbose output

Example:

bash "${SKILL_DIR}/brew-update.sh" --dry-run

Notes

  • The script locates the brew binary via command -v brew, so it works with both /opt/homebrew (Apple Silicon), /usr/local (Intel), and custom HOMEBREW_PREFIX installs. If brew is not on PATH, set BREW before running: BREW=/path/to/brew bash "${SKILL_DIR}/brew-update.sh"
  • Logs are written to a logs/ directory next to the script
  • If a formula's post-install step fails (e.g. fontconfig), suggest running brew postinstall <formula>

What ships with it: 2 files

4.0 KB alongside SKILL.md, 1 of them executable

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.