# Send recreation.gov availability search 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": "recgov-availability",
    "name": "recreation.gov availability search",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/seanrea/recgov-availability",
    "canonicalUrl": "https://clawhub.ai/seanrea/recgov-availability",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/recgov-availability",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=recgov-availability",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "references/api-notes.md",
      "README.md",
      "scripts/check.py",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "recgov-availability",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-12T14:19:28.666Z",
      "expiresAt": "2026-05-19T14:19:28.666Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=recgov-availability",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=recgov-availability",
        "contentDisposition": "attachment; filename=\"recgov-availability-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "recgov-availability"
      },
      "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/recgov-availability"
    },
    "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/recgov-availability",
    "downloadUrl": "https://openagent3.xyz/downloads/recgov-availability",
    "agentUrl": "https://openagent3.xyz/skills/recgov-availability/agent",
    "manifestUrl": "https://openagent3.xyz/skills/recgov-availability/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/recgov-availability/agent.md"
  }
}
```
## Documentation

### Recreation.gov Availability Checker

Check campsite availability for federal campgrounds on recreation.gov.

### Quick Start

cd /Users/doop/moltbot/skills/recgov-availability

# Check availability (campground ID from URL or ridb-search)
python3 scripts/check.py -c 233965 --start 2026-07-10 --nights 2

# Multiple campgrounds
python3 scripts/check.py -c 233965 233900 --start 2026-07-10 --nights 2

# Filter to tent sites, JSON output
python3 scripts/check.py -c 233965 --start 2026-07-10 --nights 2 --type tent --json

### Finding Campground IDs

From URL: recreation.gov/camping/campgrounds/233965 → ID is 233965

Or use ridb-search:

python3 ../ridb-search/scripts/search.py -l "Newport, OR" --camping-only

### Options

OptionDescription-c, --campgroundCampground ID(s) to check (required)-s, --startStart date YYYY-MM-DD (required)-n, --nightsConsecutive nights needed (default: 1)-t, --typeSite type: tent, rv, standard, cabin, group--electricElectric sites only--nonelectricNon-electric sites only--include-groupInclude group sites--petsPet-friendly only (slower)--shadeShaded sites only (slower)--fire-pitSites with fire pits (slower)--vehicle-length NMin vehicle length in feet (slower)--show-sitesShow individual sites--jsonJSON output

### Status Meanings

StatusMeaning✅ AvailableBook now❌ ReservedAlready booked⏳ NYRNot Yet Released — reservations not open🚗 FCFSFirst-come-first-served (no reservations)

### Coverage

National Park Service campgrounds
USDA Forest Service campgrounds
BLM recreation sites
Army Corps of Engineers areas

For state parks, use reserveamerica.

### Notes

No API key needed
Python 3.8+ (stdlib only)
Amenity filters (--pets, --shade) require extra API calls
Booking window is typically 6 months ahead

See README.md for full documentation.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: seanrea
- 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-12T14:19:28.666Z
- Expires at: 2026-05-19T14:19:28.666Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/recgov-availability)
- [Send to Agent page](https://openagent3.xyz/skills/recgov-availability/agent)
- [JSON manifest](https://openagent3.xyz/skills/recgov-availability/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/recgov-availability/agent.md)
- [Download page](https://openagent3.xyz/downloads/recgov-availability)