بنقرة واحدة
homebrew
macOS package manager — search, install, upgrade, and manage software via brew.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
macOS package manager — search, install, upgrade, and manage software via brew.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Analyze and process Excel/CSV files using pandas and openpyxl. Supports data summary, filtering, pivot tables, and chart generation.
Playwright browser automation — navigate, read, and interact with web pages using text snapshots and ref-based targeting. Supports keyboard, dialogs, file upload, JS evaluation, console/network debugging, and PDF export. Login state persists across sessions. Use when user wants to open a URL, fill a web form, scrape page content, or operate any website that requires clicking/typing.
Local web search (Tavily/Exa, requires API Key). For quick searches. If no Key configured or deep research needed, use cloud_agent instead.
Set up and use 1Password CLI (op). Use when installing the CLI, enabling desktop app integration, signing in (single or multi-account), or reading/injecting/running secrets via op.
Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks Moltbot to add a note, list notes, search notes, or manage note folders.
Search and manage Apple Photos library on macOS via osascript.
| name | homebrew |
| description | macOS package manager — search, install, upgrade, and manage software via brew. |
| metadata | {"xiaodazi":{"dependency_level":"builtin","os":["darwin"],"backend_type":"local","user_facing":true,"bins":["brew"]}} |
| capabilities | ["package_management","software_install"] |
macOS 包管理器,安装、升级、管理命令行工具和桌面应用。
brew search 关键词
# 命令行工具
brew install ffmpeg
# GUI 应用
brew install --cask visual-studio-code
# 更新 Homebrew 本身
brew update
# 查看可升级的包
brew outdated
# 升级所有
brew upgrade
# 升级单个
brew upgrade ffmpeg
# 包信息
brew info ffmpeg
# 已安装列表
brew list
brew list --cask
# 依赖树
brew deps --tree ffmpeg
# 清理旧版本缓存
brew cleanup
# 查看可回收空间
brew cleanup -n
brew uninstall ffmpeg
brew uninstall --cask visual-studio-code