Golf Tee Times

PassAudited by ClawScan on May 1, 2026.

Overview

This skill appears to do what it says—search GolfNow tee times—while relying on an unofficial GolfNow API call that users should be aware of.

This skill looks reasonable for finding golf tee times. Before installing, note that it queries GolfNow through an unofficial reverse-engineered API and may send your search location, date, and player count to GolfNow.

Findings (2)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Golf search details may leave the local environment and the unofficial endpoint may change or behave differently from a documented public API.

Why it was flagged

The helper script shells out to curl to call GolfNow's tee-time API with search parameters. This is disclosed and aligned with the skill's purpose, but it means user search details such as date, player count, and location coordinates are sent to GolfNow.

Skill content
subprocess.run([ 'curl', '-s', '-X', 'POST', 'https://www.golfnow.com/api/tee-times/tee-time-results', ... '-d', payload ])
Recommendation

Use the skill only when comfortable sending the requested tee-time search details to GolfNow, and review searches before running them for sensitive locations.

What this means

Users have less external context for who maintains the skill or where the code originated.

Why it was flagged

The registry metadata does not provide an upstream source or homepage for provenance review, although the included script is visible and has no external package dependencies.

Skill content
Source: unknown; Homepage: none
Recommendation

Review the included SKILL.md and helper script before installation, and prefer installing from trusted publishers when provenance matters.