# Send Jellyseerr 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": "jellyseerr",
    "name": "Jellyseerr",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/EricRosenberg/jellyseerr",
    "canonicalUrl": "https://clawhub.ai/EricRosenberg/jellyseerr",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/jellyseerr",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=jellyseerr",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/WEBHOOK_SETUP.md",
      "references/api.md",
      "scripts/auto_monitor.sh",
      "scripts/install_service.sh",
      "scripts/monitor_availability.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "jellyseerr",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T12:01:13.740Z",
      "expiresAt": "2026-05-11T12:01:13.740Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=jellyseerr",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=jellyseerr",
        "contentDisposition": "attachment; filename=\"jellyseerr-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "jellyseerr"
      },
      "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/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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Jellyseerr

Request movies and TV shows through your Jellyseerr server for automated downloading to Plex/Jellyfin.

### Setup

Configure your Jellyseerr server:

scripts/setup.sh

You'll need:

Jellyseerr server URL
API key (from Jellyseerr Settings > General)

### Usage

Request a movie:

scripts/request_movie.py "Movie Name"

Request a TV show:

scripts/request_tv.py "TV Show Name"

Search for content:

scripts/search.py "Content Name"

### Examples

Request a movie:

scripts/request_movie.py "The Matrix"

Request a TV show (entire series):

scripts/request_tv.py "Breaking Bad"

Request specific TV season:

scripts/request_tv.py "Breaking Bad" --season 1

### Automatic Availability Notifications

Get notified when your requested content becomes available.

### Webhooks (Recommended)

For instant notifications, set up webhook integration. See references/WEBHOOK_SETUP.md for the complete guide.

Quick setup:

scripts/install_service.sh  # Run with sudo

Then configure Jellyseerr to send webhooks to http://YOUR_IP:8384/

### Polling (Alternative)

For environments where webhooks aren't available, use cron-based polling:

crontab -l > /tmp/cron_backup.txt
echo "* * * * * $(pwd)/scripts/auto_monitor.sh" >> /tmp/cron_backup.txt
crontab /tmp/cron_backup.txt

Check pending requests:

scripts/track_requests.py

### Configuration

Edit ~/.config/jellyseerr/config.json:

{
  "server_url": "https://jellyseerr.yourdomain.com",
  "api_key": "your-api-key",
  "auto_approve": true
}

### API Reference

See references/api.md for Jellyseerr API documentation.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: EricRosenberg
- Version: 1.0.0
## 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-04T12:01:13.740Z
- Expires at: 2026-05-11T12:01:13.740Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/jellyseerr)
- [Send to Agent page](https://openagent3.xyz/skills/jellyseerr/agent)
- [JSON manifest](https://openagent3.xyz/skills/jellyseerr/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/jellyseerr/agent.md)
- [Download page](https://openagent3.xyz/downloads/jellyseerr)