Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

race-finder比赛查找器

Agent Skill

race-finder 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

26,397

周安装

1,089

GitHub Stars

公开资料未说明

下载量

8,625
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:race-finder(比赛查找器)
来源仓库:https://github.com/nftechie/race-finder
安装命令:
openclaw skills install race-finder
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install race-finder

简介

查找即将举行的比赛——跑步、越野、铁人三项、自行车、游泳和障碍赛。按位置、距离、运动和日期搜索。返回带有注册链接的比赛详细信息。

SKILL.md

name
race-finder
description
Find upcoming races — running, trail, triathlon, cycling, swimming, and obstacle courses. Search by location, distance, sport, and date. Returns race details with registration links.

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

ParameterTypeDescriptionExample
qstringSearch by race nameq=Austin Marathon
citystringCity namecity=Austin
statestringUS state codestate=TX
countrystringTwo-letter country code (default: US)country=CA
sportstringSport type (see below)sport=running
distancestringDistance category (see below)distance=marathon
start_datestringRaces on or after this date (YYYY-MM-DD, default: today)start_date=2026-06-01
end_datestringRaces on or before this date (YYYY-MM-DD)end_date=2026-12-31
zipcodestringUS zipcode (requires radius)zipcode=78701
radiusstringMiles from zipcoderadius=25
pageintPage number (default: 1)page=2
per_pageintResults per page (default: 20, max: 50)per_page=10

Sport Values

ValueDescription
runningRoad running races
trailTrail running & ultras
triathlonTriathlons & duathlons
cyclingBike races & rides
swimmingSwimming & open water
obstacleObstacle courses & mud runs

Distance Values

ValueRange
5k~2–4 miles
10k~5–8 miles
half-marathon~12–15 miles
marathon~25–28 miles
ultra30+ 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.

Examples

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

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

93.89%
按下载量换算8,098

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills