# Send Arccos Golf Performance Analyzer to your agent
Use the source page and any available docs to guide the install because the item currently does not return a direct package file.
## Fast path
- Open the source page via Open source listing.
- If you can obtain the package, extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the source page and extracted files.
## Suggested prompts
### New install

```text
I tried to install a skill package from Yavira, but the item currently does not return a direct package file. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required. Then review README.md for any prerequisites, environment setup, or post-install checks.
```
### Upgrade existing

```text
I tried to upgrade a skill package from Yavira, but the item currently does not return a direct package file. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need. Then review README.md for any prerequisites, environment setup, or post-install checks.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "arccos-golf",
    "name": "Arccos Golf Performance Analyzer",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/pfrederiksen/arccos-golf",
    "canonicalUrl": "https://clawhub.ai/pfrederiksen/arccos-golf",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/arccos-golf",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arccos-golf",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/arccos_golf.py"
    ],
    "downloadMode": "manual_only",
    "sourceHealth": {
      "source": "tencent",
      "slug": "arccos-golf",
      "status": "source_issue",
      "reason": "not_found",
      "recommendedAction": "review_source",
      "checkedAt": "2026-04-29T01:49:13.201Z",
      "expiresAt": "2026-04-30T01:49:13.201Z",
      "httpStatus": 404,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arccos-golf",
      "contentType": "text/plain",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arccos-golf",
        "contentDisposition": null,
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "arccos-golf"
      },
      "scope": "item",
      "summary": "Known item issue.",
      "detail": "This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.",
      "primaryActionLabel": "Open source listing",
      "primaryActionHref": "https://clawhub.ai/pfrederiksen/arccos-golf"
    },
    "validation": {
      "installChecklist": [
        "Open the source listing and confirm there is a real package or setup artifact available.",
        "Review SKILL.md before asking your agent to continue.",
        "Treat this source as manual setup until the upstream download flow is fixed."
      ],
      "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/arccos-golf",
    "downloadUrl": "https://openagent3.xyz/downloads/arccos-golf",
    "agentUrl": "https://openagent3.xyz/skills/arccos-golf/agent",
    "manifestUrl": "https://openagent3.xyz/skills/arccos-golf/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/arccos-golf/agent.md"
  }
}
```
## Documentation

### 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: pfrederiksen
- Version: 2.0.2
## Source health
- Status: source_issue
- Known item issue.
- This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.
- Health scope: item
- Reason: not_found
- Checked at: 2026-04-29T01:49:13.201Z
- Expires at: 2026-04-30T01:49:13.201Z
- Recommended action: Open source listing
## Links
- [Detail page](https://openagent3.xyz/skills/arccos-golf)
- [Send to Agent page](https://openagent3.xyz/skills/arccos-golf/agent)
- [JSON manifest](https://openagent3.xyz/skills/arccos-golf/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/arccos-golf/agent.md)
- [Download page](https://openagent3.xyz/downloads/arccos-golf)