{
  "schemaVersion": "1.0",
  "item": {
    "slug": "table-mountain-status",
    "name": "Table Mountain Status",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/zopyx/table-mountain-status",
    "canonicalUrl": "https://clawhub.ai/zopyx/table-mountain-status",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/table-mountain-status",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=table-mountain-status",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/fetch_status.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/table-mountain-status"
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/table-mountain-status",
    "agentPageUrl": "https://openagent3.xyz/skills/table-mountain-status/agent",
    "manifestUrl": "https://openagent3.xyz/skills/table-mountain-status/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/table-mountain-status/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Überblick",
        "body": "Dieses Skill ruft die offizielle Cableway-API (https://cms.tablemountain.net/.../weather-api) ab, parsed Status/Weather-Felder und liefert eine saubere Zusammenfassung (Text oder JSON). Ideal für Sofortabfragen („Status Tafelberg?“) sowie automatisierte Polling-Jobs mit Telegram-Alerts."
      },
      {
        "title": "Quick Start",
        "body": "Manuell abrufen\npython3 skills/table-mountain-status/scripts/fetch_status.py \\\n  --output data/table-mountain/$(date +%F_%H%M).txt\n\nAusgabe erscheint sowohl in der Datei als auch im Terminal.\n\n\nJSON für Weiterverarbeitung\npython3 skills/table-mountain-status/scripts/fetch_status.py \\\n  --format json --output data/table-mountain/$(date +%F).json\n\n\n\nFelder (bereits im Script enthalten): statusType, status, temperature, visibility, wind, firstUp, lastUp, lastDown, waitingTimeBottom, waitingTimeTop, lastUpdated."
      },
      {
        "title": "Automatisierte Telegram-Alerts",
        "body": "Cronjob alle 10 Minuten (Beispiel):\nopenclaw cron add <<'JSON'\n{\n  \"name\": \"table-mountain-10min\",\n  \"schedule\": { \"kind\": \"every\", \"everyMs\": 600000 },\n  \"sessionTarget\": \"isolated\",\n  \"payload\": {\n    \"kind\": \"agentTurn\",\n    \"model\": \"default\",\n    \"message\": \"Run `python3 skills/table-mountain-status/scripts/fetch_status.py --output data/table-mountain/latest.txt`. Post the summary to Master on Telegram, highlight status (open/closed), weather, queues, and timestamp. If the fetch fails, report the error.\"\n  }\n}\nJSON\n\n\nTemporäre Jobs (z. B. nur bis 16:00 lokal) → schedule.kind = \"cron\", expr = \"*/10 6-15 * * *\", tz = \"Europe/Berlin\", und nach Ende wieder cron update --enabled=false oder cron remove.\nJob-Stop: Immer sowohl Interval- als auch Tagesjob deaktivieren, falls mehrere Instanzen laufen."
      },
      {
        "title": "Troubleshooting",
        "body": "API down / Consent-Block: Script liefert Exit-Code 1 + Fehlermeldung → Cron meldet den Fehler weiter.\nZeitzonen: lastUpdated wird auf UTC+2 konvertiert (Cape Town). Bei Bedarf format_summary im Script anpassen.\nStandard-Wartezeiten (0:05:00) stammen oft vom API-Default; wenn echte Queue benötigt wird, Hinweis im Bericht ergänzen.\nNetzwerk-Limits: Falls curl-Proxy nötig, urllib ggf. um Environment-Proxy erweitern."
      },
      {
        "title": "Ressourcen",
        "body": "scripts/fetch_status.py – Einfache CLI zum Abrufen, Formatieren und Speichern (Text/JSON) des Table-Mountain-Status."
      }
    ],
    "body": "Table Mountain Status\nÜberblick\n\nDieses Skill ruft die offizielle Cableway-API (https://cms.tablemountain.net/.../weather-api) ab, parsed Status/Weather-Felder und liefert eine saubere Zusammenfassung (Text oder JSON). Ideal für Sofortabfragen („Status Tafelberg?“) sowie automatisierte Polling-Jobs mit Telegram-Alerts.\n\nQuick Start\n\nManuell abrufen\n\npython3 skills/table-mountain-status/scripts/fetch_status.py \\\n  --output data/table-mountain/$(date +%F_%H%M).txt\n\n\nAusgabe erscheint sowohl in der Datei als auch im Terminal.\n\nJSON für Weiterverarbeitung\n\npython3 skills/table-mountain-status/scripts/fetch_status.py \\\n  --format json --output data/table-mountain/$(date +%F).json\n\n\nFelder (bereits im Script enthalten): statusType, status, temperature, visibility, wind, firstUp, lastUp, lastDown, waitingTimeBottom, waitingTimeTop, lastUpdated.\n\nAutomatisierte Telegram-Alerts\nCronjob alle 10 Minuten (Beispiel):\nopenclaw cron add <<'JSON'\n{\n  \"name\": \"table-mountain-10min\",\n  \"schedule\": { \"kind\": \"every\", \"everyMs\": 600000 },\n  \"sessionTarget\": \"isolated\",\n  \"payload\": {\n    \"kind\": \"agentTurn\",\n    \"model\": \"default\",\n    \"message\": \"Run `python3 skills/table-mountain-status/scripts/fetch_status.py --output data/table-mountain/latest.txt`. Post the summary to Master on Telegram, highlight status (open/closed), weather, queues, and timestamp. If the fetch fails, report the error.\"\n  }\n}\nJSON\n\nTemporäre Jobs (z. B. nur bis 16:00 lokal) → schedule.kind = \"cron\", expr = \"*/10 6-15 * * *\", tz = \"Europe/Berlin\", und nach Ende wieder cron update --enabled=false oder cron remove.\nJob-Stop: Immer sowohl Interval- als auch Tagesjob deaktivieren, falls mehrere Instanzen laufen.\nTroubleshooting\nAPI down / Consent-Block: Script liefert Exit-Code 1 + Fehlermeldung → Cron meldet den Fehler weiter.\nZeitzonen: lastUpdated wird auf UTC+2 konvertiert (Cape Town). Bei Bedarf format_summary im Script anpassen.\nStandard-Wartezeiten (0:05:00) stammen oft vom API-Default; wenn echte Queue benötigt wird, Hinweis im Bericht ergänzen.\nNetzwerk-Limits: Falls curl-Proxy nötig, urllib ggf. um Environment-Proxy erweitern.\nRessourcen\nscripts/fetch_status.py – Einfache CLI zum Abrufen, Formatieren und Speichern (Text/JSON) des Table-Mountain-Status."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/zopyx/table-mountain-status",
    "publisherUrl": "https://clawhub.ai/zopyx/table-mountain-status",
    "owner": "zopyx",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/table-mountain-status",
    "downloadUrl": "https://openagent3.xyz/downloads/table-mountain-status",
    "agentUrl": "https://openagent3.xyz/skills/table-mountain-status/agent",
    "manifestUrl": "https://openagent3.xyz/skills/table-mountain-status/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/table-mountain-status/agent.md"
  }
}