# Send Race Finder 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": "race-finder",
    "name": "Race Finder",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/nftechie/race-finder",
    "canonicalUrl": "https://clawhub.ai/nftechie/race-finder",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/race-finder",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=race-finder",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/race-finder"
    },
    "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/race-finder",
    "downloadUrl": "https://openagent3.xyz/downloads/race-finder",
    "agentUrl": "https://openagent3.xyz/skills/race-finder/agent",
    "manifestUrl": "https://openagent3.xyz/skills/race-finder/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/race-finder/agent.md"
  }
}
```
## Documentation

### Race Finder Skill

Search for upcoming races across the US and internationally. Data sourced from RunSignUp, the largest endurance event registration platform.

### API

Base URL: https://api.racefinder.net

### Search Races

GET /api/v1/races

All parameters are optional. Returns upcoming races sorted by date.

Query Parameters

ParameterTypeDescriptionExampleqstringSearch by race nameq=Austin MarathoncitystringCity namecity=AustinstatestringUS state codestate=TXcountrystringTwo-letter country code (default: US)country=CAsportstringSport type (see below)sport=runningdistancestringDistance category (see below)distance=marathonstart_datestringRaces on or after this date (YYYY-MM-DD, default: today)start_date=2026-06-01end_datestringRaces on or before this date (YYYY-MM-DD)end_date=2026-12-31zipcodestringUS zipcode (requires radius)zipcode=78701radiusstringMiles from zipcoderadius=25pageintPage number (default: 1)page=2per_pageintResults per page (default: 20, max: 50)per_page=10

Sport Values

ValueDescriptionrunningRoad running racestrailTrail running & ultrastriathlonTriathlons & duathlonscyclingBike races & ridesswimmingSwimming & open waterobstacleObstacle courses & mud runs

Distance Values

ValueRange5k~2–4 miles10k~5–8 mileshalf-marathon~12–15 milesmarathon~25–28 milesultra30+ miles

Response Format

{
  "races": [
    {
      "id": "12345",
      "name": "Austin Marathon",
      "date": "2026-03-15",
      "start_time": "7:00 AM",
      "sport": "running",
      "city": "Austin",
      "region": "Texas",
      "country": "US",
      "distances": [
        {"name": "Marathon", "miles": 26.2, "km": 42.2, "category": "marathon"},
        {"name": "Half Marathon", "miles": 13.1, "km": 21.1, "category": "half-marathon"}
      ],
      "prices": [
        {"name": "Marathon — $120", "price": 120, "currency": "USD", "available": true}
      ],
      "image_url": "https://...",
      "details_url": "https://racefinder.net/race/12345",
      "register_url": "https://runsignup.com/Race/12345?rsu_aff=..."
    }
  ],
  "page": 1,
  "total_results": 20
}

No authentication required.

### Find races in a city

curl "https://api.racefinder.net/api/v1/races?city=Austin&state=TX"

### Find marathons near a zipcode

curl "https://api.racefinder.net/api/v1/races?zipcode=78701&radius=50&distance=marathon"

### Find trail races in Colorado this summer

curl "https://api.racefinder.net/api/v1/races?state=CO&sport=trail&start_date=2026-06-01&end_date=2026-08-31"

### Search by race name

curl "https://api.racefinder.net/api/v1/races?q=Ironman"

### Find 5Ks in California

curl "https://api.racefinder.net/api/v1/races?state=CA&sport=running&distance=5k"

### Tips for Agents

Use details_url when users want to learn more about a race — it links to the full race page on racefinder.net
Use register_url when users are ready to sign up — it links directly to registration
Default search returns races starting from today, sorted by date
Combine zipcode + radius for location-based search (US only)
Combine sport + distance to narrow results (e.g., sport=running&distance=half-marathon)
The total_results field shows how many results were returned on this page; use page to paginate
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: nftechie
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/race-finder)
- [Send to Agent page](https://openagent3.xyz/skills/race-finder/agent)
- [JSON manifest](https://openagent3.xyz/skills/race-finder/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/race-finder/agent.md)
- [Download page](https://openagent3.xyz/downloads/race-finder)