{
  "schemaVersion": "1.0",
  "item": {
    "slug": "jellyseerr",
    "name": "Jellyseerr",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/EricRosenberg/jellyseerr",
    "canonicalUrl": "https://clawhub.ai/EricRosenberg/jellyseerr",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/jellyseerr",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=jellyseerr",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/WEBHOOK_SETUP.md",
      "references/api.md",
      "scripts/auto_monitor.sh",
      "scripts/install_service.sh",
      "scripts/monitor_availability.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-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-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/jellyseerr"
    },
    "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/jellyseerr",
    "agentPageUrl": "https://openagent3.xyz/skills/jellyseerr/agent",
    "manifestUrl": "https://openagent3.xyz/skills/jellyseerr/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/jellyseerr/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": "Jellyseerr",
        "body": "Request movies and TV shows through your Jellyseerr server for automated downloading to Plex/Jellyfin."
      },
      {
        "title": "Setup",
        "body": "Configure your Jellyseerr server:\n\nscripts/setup.sh\n\nYou'll need:\n\nJellyseerr server URL\nAPI key (from Jellyseerr Settings > General)"
      },
      {
        "title": "Usage",
        "body": "Request a movie:\n\nscripts/request_movie.py \"Movie Name\"\n\nRequest a TV show:\n\nscripts/request_tv.py \"TV Show Name\"\n\nSearch for content:\n\nscripts/search.py \"Content Name\""
      },
      {
        "title": "Examples",
        "body": "Request a movie:\n\nscripts/request_movie.py \"The Matrix\"\n\nRequest a TV show (entire series):\n\nscripts/request_tv.py \"Breaking Bad\"\n\nRequest specific TV season:\n\nscripts/request_tv.py \"Breaking Bad\" --season 1"
      },
      {
        "title": "Automatic Availability Notifications",
        "body": "Get notified when your requested content becomes available."
      },
      {
        "title": "Webhooks (Recommended)",
        "body": "For instant notifications, set up webhook integration. See references/WEBHOOK_SETUP.md for the complete guide.\n\nQuick setup:\n\nscripts/install_service.sh  # Run with sudo\n\nThen configure Jellyseerr to send webhooks to http://YOUR_IP:8384/"
      },
      {
        "title": "Polling (Alternative)",
        "body": "For environments where webhooks aren't available, use cron-based polling:\n\ncrontab -l > /tmp/cron_backup.txt\necho \"* * * * * $(pwd)/scripts/auto_monitor.sh\" >> /tmp/cron_backup.txt\ncrontab /tmp/cron_backup.txt\n\nCheck pending requests:\n\nscripts/track_requests.py"
      },
      {
        "title": "Configuration",
        "body": "Edit ~/.config/jellyseerr/config.json:\n\n{\n  \"server_url\": \"https://jellyseerr.yourdomain.com\",\n  \"api_key\": \"your-api-key\",\n  \"auto_approve\": true\n}"
      },
      {
        "title": "API Reference",
        "body": "See references/api.md for Jellyseerr API documentation."
      }
    ],
    "body": "Jellyseerr\n\nRequest movies and TV shows through your Jellyseerr server for automated downloading to Plex/Jellyfin.\n\nSetup\n\nConfigure your Jellyseerr server:\n\nscripts/setup.sh\n\n\nYou'll need:\n\nJellyseerr server URL\nAPI key (from Jellyseerr Settings > General)\nUsage\n\nRequest a movie:\n\nscripts/request_movie.py \"Movie Name\"\n\n\nRequest a TV show:\n\nscripts/request_tv.py \"TV Show Name\"\n\n\nSearch for content:\n\nscripts/search.py \"Content Name\"\n\nExamples\n\nRequest a movie:\n\nscripts/request_movie.py \"The Matrix\"\n\n\nRequest a TV show (entire series):\n\nscripts/request_tv.py \"Breaking Bad\"\n\n\nRequest specific TV season:\n\nscripts/request_tv.py \"Breaking Bad\" --season 1\n\nAutomatic Availability Notifications\n\nGet notified when your requested content becomes available.\n\nWebhooks (Recommended)\n\nFor instant notifications, set up webhook integration. See references/WEBHOOK_SETUP.md for the complete guide.\n\nQuick setup:\n\nscripts/install_service.sh  # Run with sudo\n\n\nThen configure Jellyseerr to send webhooks to http://YOUR_IP:8384/\n\nPolling (Alternative)\n\nFor environments where webhooks aren't available, use cron-based polling:\n\ncrontab -l > /tmp/cron_backup.txt\necho \"* * * * * $(pwd)/scripts/auto_monitor.sh\" >> /tmp/cron_backup.txt\ncrontab /tmp/cron_backup.txt\n\n\nCheck pending requests:\n\nscripts/track_requests.py\n\nConfiguration\n\nEdit ~/.config/jellyseerr/config.json:\n\n{\n  \"server_url\": \"https://jellyseerr.yourdomain.com\",\n  \"api_key\": \"your-api-key\",\n  \"auto_approve\": true\n}\n\nAPI Reference\n\nSee references/api.md for Jellyseerr API documentation."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/EricRosenberg/jellyseerr",
    "publisherUrl": "https://clawhub.ai/EricRosenberg/jellyseerr",
    "owner": "EricRosenberg",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/jellyseerr",
    "downloadUrl": "https://openagent3.xyz/downloads/jellyseerr",
    "agentUrl": "https://openagent3.xyz/skills/jellyseerr/agent",
    "manifestUrl": "https://openagent3.xyz/skills/jellyseerr/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/jellyseerr/agent.md"
  }
}