# Send Breweries to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "breweries",
    "name": "Breweries",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/jeffaf/breweries",
    "canonicalUrl": "https://clawhub.ai/jeffaf/breweries",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/breweries",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=breweries",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "breweries",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T01:08:35.152Z",
      "expiresAt": "2026-05-08T01:08:35.152Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=breweries",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=breweries",
        "contentDisposition": "attachment; filename=\"breweries-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "breweries"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/breweries"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/breweries",
    "downloadUrl": "https://openagent3.xyz/downloads/breweries",
    "agentUrl": "https://openagent3.xyz/skills/breweries/agent",
    "manifestUrl": "https://openagent3.xyz/skills/breweries/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/breweries/agent.md"
  }
}
```
## Documentation

### 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

ActionCommandSearch 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:

Run ./breweries search "name" to find by name
Run ./breweries city "city" for location-based search
Run ./breweries state "state" for state-wide search
Run ./breweries type brewpub for specific types
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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: jeffaf
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T01:08:35.152Z
- Expires at: 2026-05-08T01:08:35.152Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/breweries)
- [Send to Agent page](https://openagent3.xyz/skills/breweries/agent)
- [JSON manifest](https://openagent3.xyz/skills/breweries/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/breweries/agent.md)
- [Download page](https://openagent3.xyz/downloads/breweries)