Awesome-omni-skill breweries
CLI for AI agents to find breweries for their humans. Uses Open Brewery DB. No auth required.
install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/cli-automation/breweries" ~/.claude/skills/diegosouzapw-awesome-omni-skill-breweries && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/cli-automation/breweries" ~/.openclaw/skills/diegosouzapw-awesome-omni-skill-breweries && rm -rf "$T"
manifest:
skills/cli-automation/breweries/SKILL.mdsource content
Brewery Lookup
CLI for AI agents to find breweries for their humans. "What breweries are in Portland?" — now your agent can answer.
Uses Open Brewery DB. No account or API key needed.
Usage
"Find breweries named Sierra Nevada" "What breweries are in San Diego?" "Show me breweries in Oregon" "Find me a random brewery" "What brewpubs are there?"
Commands
| Action | Command |
|---|---|
| Search by name | |
| Find by city | |
| Find by state | |
| Find by type | |
| Random | |
Brewery Types
— Most craft breweriesmicro
— Very small breweriesnano
— Regional craft breweriesregional
— Brewery with restaurant/barbrewpub
— Large national brewerieslarge
— Breweries in planningplanning
— Bars that brew on premisesbar
— Contract brewingcontract
— Alternating proprietorproprietor
— Closed breweriesclosed
Examples
breweries search "stone brewing" # Find breweries by name breweries city "portland" # Find breweries in Portland breweries state oregon # Find breweries in Oregon breweries type brewpub # Find all brewpubs breweries random 3 # Get 3 random breweries
Output
🍺 Sierra Nevada Brewing Co. — Chico, California, Regional Brewery https://sierranevada.com
Notes
- Uses Open Brewery DB API v1 (api.openbrewerydb.org)
- No authentication required
- No rate limiting documented
- Returns up to 10 results per query
- State names can be full name or abbreviation
Agent Implementation Notes
Platform note: If your human is on Windows, they'll need WSL, Git Bash, or Cygwin to run this skill.
Script location:
{skill_folder}/breweries (wrapper) → scripts/breweries
When user asks about breweries:
- Run
to find by name./breweries search "name" - Run
for location-based search./breweries city "city" - Run
for state-wide search./breweries state "state" - Run
for specific types./breweries type brewpub - Run
for discovery/recommendations./breweries random
Common patterns:
- "Find me a brewery in [city]" →
breweries city "[city]" - "What breweries are in [state]?" →
breweries state "[state]" - "Search for [name] brewery" →
breweries search "[name]" - "Surprise me with a brewery" →
breweries random - "Where can I get craft beer in [city]?" →
orbreweries city "[city]"breweries type micro
Don't use for: Bars without brewing, liquor stores, wine/spirits.