# Send Urban Sports Club Booking API to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "usc-booking-api",
    "name": "Urban Sports Club Booking API",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/niklaspriddat/usc-booking-api",
    "canonicalUrl": "https://clawhub.ai/niklaspriddat/usc-booking-api",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/usc-booking-api",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=usc-booking-api",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "config.py",
      "SKILL.md",
      "credentials.json",
      "scan.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "usc-booking-api",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-10T12:10:43.370Z",
      "expiresAt": "2026-05-17T12:10:43.370Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=usc-booking-api",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=usc-booking-api",
        "contentDisposition": "attachment; filename=\"usc-booking-api-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "usc-booking-api"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/usc-booking-api"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "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/usc-booking-api",
    "downloadUrl": "https://openagent3.xyz/downloads/usc-booking-api",
    "agentUrl": "https://openagent3.xyz/skills/usc-booking-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/usc-booking-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/usc-booking-api/agent.md"
  }
}
```
## Documentation

### Urban Sports Scanner

Scannt deine Urban Sports Club Venues, zeigt Kurse mit direkten Booking-Links und kann Kurse buchen und stornieren.

### 1. Python-Umgebung

cd /pfad/zu/urban-sports
python3 -m venv venv
venv/bin/pip install playwright
venv/bin/playwright install chromium
venv/bin/playwright install-deps chromium

### 2. Zugangsdaten

Trage deine USC-Logindaten ein:

{
  "email": "deine-email@beispiel.de",
  "password": "dein-passwort"
}

Die Datei credentials.json ist in .gitignore und wird nicht committet.
Zugangsdaten werden nur fuer --book, --cancel und --bookings benoetigt.

### 3. Venues konfigurieren

Trage deine Venues in config.py ein. Die Venue-ID findest du in der URL auf urbansportsclub.com:

https://urbansportsclub.com/de/venues/20818
                                       ^^^^^

Beispiel:

VENUES = {
    "storm": {
        "name": "STORM Cycling Berlin - Mitte",
        "url": "https://urbansportsclub.com/de/venues/20818",
        "type": "cycling",
        "keywords": ["Performance", "Groove", "Cycling"],
    },
    "fitboxing": {
        "name": "Brooklyn Fitboxing",
        "url": "https://urbansportsclub.com/de/venues/27355",
        "type": "boxing",
        "keywords": ["Boxing", "Fitboxing", "HIIT"],
    },
}

name: Anzeigename
url: Venue-Seite auf urbansportsclub.com
type: Frei waehlbar, wird im Output angezeigt
keywords: Helfen bei der Erkennung der Kursnamen im Seitentext

### URL-Parameter

Der Scanner haengt automatisch folgende Parameter an die Venue-URL an:

plan_type: Mitgliedschafts-Stufe. Bestimmt welche Kurse angezeigt werden (nur die, die mit der jeweiligen Stufe buchbar sind). Privat: 1=Essential, 2=Classic, 3=Premium, 6=Max. Firma: 1=S, 2=M, 3=L, 6=XL. Standardwert: 3.
business_type: b2c (Privatmitglieder) oder b2b (Firmenmitglieder). Standardwert: b2c.

Diese Werte sind in config.py als PLAN_TYPE und BUSINESS_TYPE konfigurierbar.

### Kurse scannen

# Alle Venues fuer heute
venv/bin/python scan.py

# Bestimmtes Datum
venv/bin/python scan.py --date 2026-02-10

# Nur eine Venue
venv/bin/python scan.py --venue storm

# JSON-Ausgabe (fuer Weiterverarbeitung)
venv/bin/python scan.py --json

Jeder Kurs wird mit direktem Booking-Link zurueckgegeben:

07:30  STORM Cycling Berlin - Mitte    45 Min STORM Ride - Performance
         https://www.urbansportsclub.com/de/activities?class=98049323

### Buchen

venv/bin/python scan.py --book 98049323

### Stornieren

venv/bin/python scan.py --cancel 98049323

### Anstehende Buchungen

venv/bin/python scan.py --bookings
venv/bin/python scan.py --bookings --json

### Dateien

urban-sports/
├── SKILL.md                  # Diese Doku
├── scan.py                   # Scanner + Buchen + CLI
├── config.py                 # Venue-Konfiguration
├── credentials.json          # Login-Daten (nicht im Repo)
├── credentials.example.json  # Vorlage
├── .gitignore
└── venv/                     # Python virtualenv (nicht im Repo)

### "Keine Venues konfiguriert"

Trage mindestens eine Venue in config.py ein.

### "credentials.json nicht gefunden"

Kopiere credentials.example.json nach credentials.json und trage deine Daten ein.

### Scanner findet keine Kurse

Prüfe ob das Datum korrekt ist (nicht in der Vergangenheit)
Manche Venues haben an bestimmten Tagen keine Kurse
Chromium-Dependencies: venv/bin/playwright install-deps chromium
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: niklaspriddat
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-10T12:10:43.370Z
- Expires at: 2026-05-17T12:10:43.370Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/usc-booking-api)
- [Send to Agent page](https://openagent3.xyz/skills/usc-booking-api/agent)
- [JSON manifest](https://openagent3.xyz/skills/usc-booking-api/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/usc-booking-api/agent.md)
- [Download page](https://openagent3.xyz/downloads/usc-booking-api)