Breweries

v1.0.0

CLI for AI agents to find breweries for their humans. Uses Open Brewery DB. No auth required.

1· 1.5k·1 current·1 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for jeffaf/breweries.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Breweries" (jeffaf/breweries) from ClawHub.
Skill page: https://clawhub.ai/jeffaf/breweries
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required binaries: bash, curl, jq
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install breweries

ClawHub CLI

Package manager switcher

npx clawhub@latest install breweries
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
medium confidence
Purpose & Capability
Name/description, required binaries (bash, curl, jq), and use of Open Brewery DB align with a simple CLI that queries a public API. However, the SKILL.md describes a wrapper script at {skill_folder}/breweries and scripts/breweries that are not present in the package, so the skill as delivered cannot perform the actions it documents without fetching external code.
!
Instruction Scope
Instructions direct the agent to run local executable(s) (./breweries and scripts/breweries) and give concrete command examples. The package contains only README.md and SKILL.md — no executables or scripts. That mismatch means following the SKILL.md would either fail or require the agent/user to fetch and run external code, which broadens scope and risk.
!
Install Mechanism
There is no install specification in the registry entry. The README suggests cloning a GitHub repo (https://github.com/jeffaf/breweries-skill.git) and running chmod on scripts — an ad-hoc external install. While GitHub is a common host, the registry should include an explicit, reviewable install spec; relying on a separate repo increases risk (implicit network fetch and execution of code not packaged with the skill).
Credentials
The skill requests no environment variables or credentials, and its functionality (querying a public API) does not require secrets. The declared required binaries are appropriate and proportional to the described CLI.
Persistence & Privilege
The skill does not request persistent/always-on installation and uses default model invocation settings. It does not declare access to other skills' configs or system-wide settings.
What to consider before installing
This skill appears to be honest about what it does (queries Open Brewery DB) and does not request credentials, but the package is incomplete: SKILL.md/README expect local executables that are not included. Before installing or running it, ask the publisher for the missing scripts or an explicit install spec, and review the code in the referenced GitHub repo yourself. If you must fetch from GitHub, inspect the scripts for unexpected network calls, credential access, or shell commands before making them executable. If you prefer lower risk, install a skill that bundles its code or provides a verified install mechanism in the registry.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

🍺 Clawdis
Binsbash, curl, jq
latestvk970mwvb4g4vb2t4s6pcy78rax80kam7
1.5kdownloads
1stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

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

ActionCommand
Search by namebreweries search "name"
Find by citybreweries city "city name"
Find by statebreweries state "state"
Find by typebreweries type <type>
Randombreweries random [count]

Brewery Types

  • micro — Most craft breweries
  • nano — Very small breweries
  • regional — Regional craft breweries
  • brewpub — Brewery with restaurant/bar
  • large — Large national breweries
  • planning — Breweries in planning
  • bar — Bars that brew on premises
  • contract — Contract brewing
  • proprietor — Alternating proprietor
  • closed — Closed breweries

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

Script location: {skill_folder}/breweries (wrapper) → scripts/breweries

When user asks about breweries:

  1. Run ./breweries search "name" to find by name
  2. Run ./breweries city "city" for location-based search
  3. Run ./breweries state "state" for state-wide search
  4. Run ./breweries type brewpub for specific types
  5. Run ./breweries random for discovery/recommendations

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]?" → breweries city "[city]" or breweries type micro

Don't use for: Bars without brewing, liquor stores, wine/spirits.

Comments

Loading comments...