{
  "schemaVersion": "1.0",
  "item": {
    "slug": "appletv",
    "name": "Apple TV",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/LucaKaufmann/appletv",
    "canonicalUrl": "https://clawhub.ai/LucaKaufmann/appletv",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/appletv",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=appletv",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/appletv.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-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/appletv"
    },
    "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/appletv",
    "agentPageUrl": "https://openagent3.xyz/skills/appletv/agent",
    "manifestUrl": "https://openagent3.xyz/skills/appletv/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/appletv/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": "Apple TV Control",
        "body": "Control Apple TV via the pyatv library."
      },
      {
        "title": "Requirements",
        "body": "pipx install pyatv --python python3.11\n\nNote: pyatv requires Python ≤3.13. Python 3.14+ has breaking asyncio changes. Use --python python3.11 or python3.13 with pipx."
      },
      {
        "title": "Configuration",
        "body": "Config file at ~/clawd/config/appletv.json:\n\n{\n  \"name\": \"Living Room\",\n  \"id\": \"DEVICE_ID\",\n  \"ip\": \"192.168.x.x\",\n  \"credentials\": {\n    \"companion\": \"...\",\n    \"airplay\": \"...\"\n  }\n}"
      },
      {
        "title": "First-Time Pairing",
        "body": "# Find your Apple TV\natvremote scan\n\n# Pair Companion protocol (required)\natvremote --id <DEVICE_ID> --protocol companion pair\n\n# Pair AirPlay protocol (for media)\natvremote --id <DEVICE_ID> --protocol airplay pair\n\nSave the credentials to the config file."
      },
      {
        "title": "Status & Playing",
        "body": "scripts/appletv.py status     # Full status with now playing\nscripts/appletv.py playing    # What's currently playing"
      },
      {
        "title": "Playback Control",
        "body": "scripts/appletv.py play       # Play/resume\nscripts/appletv.py pause      # Pause\nscripts/appletv.py stop       # Stop\nscripts/appletv.py next       # Next track/chapter\nscripts/appletv.py prev       # Previous"
      },
      {
        "title": "Navigation",
        "body": "scripts/appletv.py up         # Navigate up\nscripts/appletv.py down       # Navigate down\nscripts/appletv.py left       # Navigate left\nscripts/appletv.py right      # Navigate right\nscripts/appletv.py select     # Press select/OK\nscripts/appletv.py menu       # Menu button\nscripts/appletv.py home       # Home screen"
      },
      {
        "title": "Volume",
        "body": "scripts/appletv.py volume_up\nscripts/appletv.py volume_down"
      },
      {
        "title": "Power",
        "body": "scripts/appletv.py turn_on    # Wake from sleep\nscripts/appletv.py turn_off   # Put to sleep\nscripts/appletv.py power      # Toggle"
      },
      {
        "title": "Apps",
        "body": "scripts/appletv.py apps       # List installed apps\nscripts/appletv.py app Netflix\nscripts/appletv.py app YouTube\nscripts/appletv.py app \"Disney+\""
      },
      {
        "title": "Discovery",
        "body": "scripts/appletv.py scan       # Find Apple TVs on network"
      },
      {
        "title": "Example Interactions",
        "body": "\"What's playing on the TV?\" → scripts/appletv.py status\n\"Pause the TV\" → scripts/appletv.py pause\n\"Turn off the Apple TV\" → scripts/appletv.py turn_off\n\"Open Netflix on TV\" → scripts/appletv.py app Netflix"
      }
    ],
    "body": "Apple TV Control\n\nControl Apple TV via the pyatv library.\n\nRequirements\npipx install pyatv --python python3.11\n\n\nNote: pyatv requires Python ≤3.13. Python 3.14+ has breaking asyncio changes. Use --python python3.11 or python3.13 with pipx.\n\nConfiguration\n\nConfig file at ~/clawd/config/appletv.json:\n\n{\n  \"name\": \"Living Room\",\n  \"id\": \"DEVICE_ID\",\n  \"ip\": \"192.168.x.x\",\n  \"credentials\": {\n    \"companion\": \"...\",\n    \"airplay\": \"...\"\n  }\n}\n\nFirst-Time Pairing\n# Find your Apple TV\natvremote scan\n\n# Pair Companion protocol (required)\natvremote --id <DEVICE_ID> --protocol companion pair\n\n# Pair AirPlay protocol (for media)\natvremote --id <DEVICE_ID> --protocol airplay pair\n\n\nSave the credentials to the config file.\n\nQuick Commands\nStatus & Playing\nscripts/appletv.py status     # Full status with now playing\nscripts/appletv.py playing    # What's currently playing\n\nPlayback Control\nscripts/appletv.py play       # Play/resume\nscripts/appletv.py pause      # Pause\nscripts/appletv.py stop       # Stop\nscripts/appletv.py next       # Next track/chapter\nscripts/appletv.py prev       # Previous\n\nNavigation\nscripts/appletv.py up         # Navigate up\nscripts/appletv.py down       # Navigate down\nscripts/appletv.py left       # Navigate left\nscripts/appletv.py right      # Navigate right\nscripts/appletv.py select     # Press select/OK\nscripts/appletv.py menu       # Menu button\nscripts/appletv.py home       # Home screen\n\nVolume\nscripts/appletv.py volume_up\nscripts/appletv.py volume_down\n\nPower\nscripts/appletv.py turn_on    # Wake from sleep\nscripts/appletv.py turn_off   # Put to sleep\nscripts/appletv.py power      # Toggle\n\nApps\nscripts/appletv.py apps       # List installed apps\nscripts/appletv.py app Netflix\nscripts/appletv.py app YouTube\nscripts/appletv.py app \"Disney+\"\n\nDiscovery\nscripts/appletv.py scan       # Find Apple TVs on network\n\nExample Interactions\n\"What's playing on the TV?\" → scripts/appletv.py status\n\"Pause the TV\" → scripts/appletv.py pause\n\"Turn off the Apple TV\" → scripts/appletv.py turn_off\n\"Open Netflix on TV\" → scripts/appletv.py app Netflix"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/LucaKaufmann/appletv",
    "publisherUrl": "https://clawhub.ai/LucaKaufmann/appletv",
    "owner": "LucaKaufmann",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/appletv",
    "downloadUrl": "https://openagent3.xyz/downloads/appletv",
    "agentUrl": "https://openagent3.xyz/skills/appletv/agent",
    "manifestUrl": "https://openagent3.xyz/skills/appletv/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/appletv/agent.md"
  }
}