Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计提醒

golf-tee-times高尔夫球开球时间

Agent Skill

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

总安装

20,871

周安装

861

GitHub Stars

公开资料未说明

下载量

6,819
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:golf-tee-times(高尔夫球开球时间)
来源仓库:https://github.com/tag-assistant/golf-tee-times
安装命令:
openclaw skills install golf-tee-times
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install golf-tee-times

简介

搜索附近高尔夫球场开球时间和优惠价格。

  • 适合比较跨平台价格和获取折扣提示。golf-tee-times 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 通过 clawhub 安装,适用于 OpenClaw 中的高尔夫出行场景。
  • 安装前需确认权限范围和维护状态,注意可能的联网调用。
  • 建议核对球场政策和天气条件以确保可用性。

SKILL.md

name
golf-tee-times
description
Search for golf tee times and deals near any location. Find cheapest rounds, compare prices across platforms, and get discount tips. Use when asked about golf, tee times, courses, or booking a round.
metadata
openclaw
emoji
requires
bins
["curl", "python3"]

Golf Tee Time Finder ⛳

Find and compare golf tee times using the GolfNow API (reverse-engineered). Works for any location.

When to Use

  • User asks to find tee times, book golf, or play a round
  • Looking for cheap/discounted golf or hot deals
  • Comparing courses in an area
  • Checking availability for a specific date
  • Finding credit-bookable (trade offer) tee times

GolfNow API (Primary Method)

The GolfNow website uses a POST API to fetch tee times. This is the only reliable method — web_fetch returns empty shells (JS-rendered SPA).

API Endpoint

POST https://www.golfnow.com/api/tee-times/tee-time-results
Content-Type: application/json
Accept: application/json
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36
Origin: https://www.golfnow.com

Facility-Specific Search (SearchType: 1) — WORKS ✅

Requires a FacilityId. Returns all tee times for that course on a given date.

{
  "Radius": 50,
  "Latitude": 26.1224,
  "Longitude": -80.1373,
  "PageSize": 50,
  "PageNumber": 0,
  "SearchType": 1,
  "SortBy": "Date",
  "SortDirection": 0,
  "Date": "Feb 16 2026",
  "BestDealsOnly": false,
  "PriceMin": "0",
  "PriceMax": "10000",
  "Players": "2",
  "Holes": "3",
  "FacilityType": 0,
  "RateType": "all",
  "TimeMin": "10",
  "TimeMax": "42",
  "FacilityId": 5744,
  "SortByRollup": "Date.MinDate",
  "View": "Grouping",
  "ExcludeFeaturedFacilities": true,
  "TeeTimeCount": 50,
  "PromotedCampaignsOnly": "false",
  "CurrentClientDate": "2026-02-16T05:00:00.000Z"
}

Area Search (SearchType: 0) — DOES NOT WORK ❌

Returns 0 results without a FacilityId. The API requires facility-specific queries.

Key Parameters

ParamValuesNotes
Players"1"-"4"String, not int
Holes"1"=9h, "2"=18h, "3"=anyString
TimeMin/TimeMax10-42Maps to time ranges. 10=5AM, 42=9PM+
Date"Feb 16 2026"Human-readable format
FacilityType0=any, 1=course, 2=simulator
BestDealsOnlytrue/falseHot deals filter (but returns 0 for area search)
SearchType1Must be 1 (facility). 0/2/3 don't work

Response Structure

ttResults.teeTimes[] → array of tee time groups
  ├── formattedTime: "7:18"
  ├── formattedTimeMeridian: "AM"
  ├── time: "2026-02-16T07:18:00"  (ISO timestamp)
  ├── displayRate: 35.0  (price per player)
  ├── multipleHolesRate: 18  (hole count)
  ├── maxPriceTransactionFee: 2.99
  ├── facility.name, facility.address.city, facility.averageRating, facility.reviewCount
  ├── facility.seoFriendlyName  (for building URLs)
  ├── facility.latitude, facility.longitude
  └── teeTimeRates[] → rate options for this time slot
       ├── rateName: "Prepaid - Online Rate" / "Hot Deal" / "Twilight" / etc.
       ├── isHotDeal: true/false  🔥
       ├── isTradeOffer: true/false  💳 (credit-bookable)
       ├── isCartIncluded: true/false
       ├── singlePlayerPrice.greensFees.value: 35.0
       └── rateSetTypeId: 1=prepaid, other=pay at course

Building Course URLs

https://www.golfnow.com/tee-times/facility/{seoFriendlyName}/search

Example: https://www.golfnow.com/tee-times/facility/5744-colony-west-golf-club-glades-course/search

Helper Script

Use skills/golf-tee-times/golfnow-search.py for batch queries. See script for usage.

Finding Facility IDs

Since area search doesn't work, you need FacilityIds. Methods:

  1. Use the known course database (see below)
  2. Web search: site:golfnow.com/tee-times/facility {city} {state} — URL contains the ID
  3. Browser intercept: Load a course page, intercept the POST to /api/tee-times/tee-time-results, read the FacilityId from the payload

Telegram Output Format

Use this clean format for presenting tee times:

🏌️ *Tee Times · {Day} {Date} · {Players} Players*

⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯

🔥 *DEALS*

🔥 *[Course Name](url)*
City · X mi · ⭐ X.X · N reviews
▸ Time · *$XX* · 18 holes · cart 🔥

⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯

*[Course Name](url)*
City · X mi · ⭐ X.X · N reviews
▸ Time range · $XX
▸ Time range · $XX twilight

⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯

_All prices per player · cart included · via GolfNow_

Key formatting rules:

  • Use for time slot lines
  • Bold the course name as a markdown link
  • Show deals section first (🔥 hot deals, 💳 credit/trade offers)
  • Group times by price tier within each course
  • Include distance, rating, review count
  • Add ← AM slots or similar callouts for notable availability
  • Footer: _All prices per player · cart included · via GolfNow_
  • Do NOT use backtick code blocks for time listings (looks bad on mobile)

Discount Tips

  1. 🔥 GolfNow Hot DealsisHotDeal: true in API. Unsold inventory at deep discounts.
  2. 💳 Trade OffersisTradeOffer: true. Bookable with GolfNow credits.
  3. 🚶 Walk don't ride — saves $20-50 on cart fees
  4. 🌅 Twilight rates — after 2-3 PM, prices drop significantly (look for rateName: "Twilight")
  5. 🏠 FL resident rate — show ID for local discount at public courses
  6. Last-minute deals — day-of prices drop; hot deals appear closer to tee time
  7. 📞 Call pro shop — phone-only rates sometimes cheaper than online
  8. 🗓️ Weekday > Weekend — Monday-Thursday is always cheaper
  9. 🌧️ Rain forecast — prices drop when weather looks iffy

Seasonal Notes (your area)

  • Peak season (Dec-Apr): Highest prices, book 3-7 days ahead. Morning sells out fast.
  • Summer (May-Sep): 40-60% cheaper, but hot/humid. Early AM or twilight.
  • Hurricane season (Jun-Nov): Rain discounts common
  • Best value month: September (cheapest + least crowded)

Booking Flow## Booking Flow (GolfNow via Browser)

⚠️ CRITICAL: Always send a screenshot of the final checkout page to the user BEFORE clicking "Make Your Reservation". Wait for explicit approval.

Steps

  1. Navigate to https://www.golfnow.com/tee-times/facility/{facilityId}/tee-time/{teeTimeId}
  2. Select golfer count — click radio button, dispatch change event, verify green fees total updates
  3. Click "Continue to Book" (.btnBook) — redirects to login if not authenticated
  4. Login — GolfID iframe (my.golfid.io): use frame=[src*=golfid] to access email/password fields

- Creds: scripts/vault.sh get golfnow

  1. Checkout page (URL: .../checkout/players/{count}):

- Apply rewards: Click #applyRewardsBtn → checkboxes by code ID (e.g. #MEMBERSAVE) - Note: Rewards marked "Cannot Be Combined" won't stack on Hot Deals - Apply GolfPass Points: Click #btn-apply-loyalty-points (these DO work on Hot Deals) - Decline Tee Time Protection: Click input[name=rdlTeeTimeProtection][value=false] - Decline charity roundup: Click "No Thanks" if desired - Payment: Pre-filled from saved cards (default: AMEX 1004)

  1. 📸 SCREENSHOT & SEND TO USER — Send checkout screenshot via Telegram before proceeding
  2. Wait for approval
  3. Accept terms: Check #agree-terms-top
  4. Click reservation: #reservation-button-top
  5. Confirmation: Remove Truist ad overlay ([class*=rokt], [class*=bold]), screenshot confirmation page

the user's Booking Preferences

  • Always apply points/rewards to minimize cost
  • Decline Tee Time Protection (save $3-4)
  • Default payment: AMEX ending 1004
  • Send confirmation screenshot after booking

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

79.63%
按下载量换算5,430

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills