← All skills
Tencent SkillHub · Data Analysis

Arccos Golf Performance Analyzer

Analyze Arccos Golf performance data including club distances, strokes gained metrics, scoring patterns, and round-by-round performance. Use when the user as...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Analyze Arccos Golf performance data including club distances, strokes gained metrics, scoring patterns, and round-by-round performance. Use when the user as...

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, scripts/arccos_golf.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
2.0.2

Documentation

ClawHub primary doc Primary doc: SKILL.md 11 sections Open source page

Arccos Golf Performance Analyzer

Fetches live data from the Arccos Golf API and generates performance analysis: strokes gained, club distances, scoring, putting, pace of play, and recent rounds.

⚠️ Privacy & Security Notice

This skill makes authenticated network requests to Arccos Golf API servers using your account credentials: Credentials: Your Arccos email and password are used to authenticate. A session token is cached at ~/.arccos_creds.json (mode 0600, readable only by your user). Network: The script calls authentication.arccosgolf.com (login) and api.arccosgolf.com (data). No other endpoints are contacted. No data leaves your machine beyond the API calls needed to fetch your own golf data. External dependency: Requires the arccos library from github.com/pfrederiksen/arccos-api (MIT licensed, authored by the same user who published this skill). Review the arccos library source before installing if you have concerns: https://github.com/pfrederiksen/arccos-api

Prerequisites

# 1. Install the arccos library git clone https://github.com/pfrederiksen/arccos-api pip install -e arccos-api/ # 2. Authenticate — opens a prompt for email + password # Credentials cached to ~/.arccos_creds.json (0600) arccos login Alternatively, pass credentials directly at runtime (see Usage below).

Full report (uses cached credentials)

python3 scripts/arccos_golf.py

Pass credentials explicitly (no cached creds required)

python3 scripts/arccos_golf.py --email you@example.com --password secret

Specific sections

python3 scripts/arccos_golf.py --summary python3 scripts/arccos_golf.py --strokes-gained python3 scripts/arccos_golf.py --clubs # all clubs python3 scripts/arccos_golf.py --clubs iron # filter by type python3 scripts/arccos_golf.py --pace python3 scripts/arccos_golf.py --recent-rounds 10

JSON output

python3 scripts/arccos_golf.py --format json

Offline / no credentials (cached JSON file)

python3 scripts/arccos_golf.py --file /path/to/arccos-data.json

System Access

ResourceDetailsNetworkauthentication.arccosgolf.com — login/token refreshNetworkapi.arccosgolf.com — rounds, handicap, clubs, stats, coursesFile read~/.arccos_creds.json — cached session token (created by arccos login)File readOptional --file path for offline JSON analysisFile write~/.arccos_creds.json — updated on token refreshSubprocessNoneShell execNone

API Calls Made

DataEndpointRounds listGET /users/{userId}/roundsCourse namesGET /courses/{courseId}HandicapGET /users/{userId}/handicaps/latestClub distancesGET /v4/clubs/user/{userId}/smart-distancesStrokes gainedGET /v2/sga/shots/{roundIds} All calls are authenticated with a Bearer JWT. The JWT is obtained from and refreshed against authentication.arccosgolf.com using your arccos session credentials.

Dependencies

Python ≥ 3.11 arccos library: github.com/pfrederiksen/arccos-api (MIT) — wraps requests, click, rich Standard library only in the analysis script itself

Category context

Data access, storage, extraction, analysis, reporting, and insight generation.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs1 Scripts
  • SKILL.md Primary doc
  • README.md Docs
  • scripts/arccos_golf.py Scripts