SKILLEMALL.ai

CD jellyseerr

Request movies and TV shows through Jellyseerr. Use when the user wants to add media to their Plex/Jellyfin server, search for content availability, or manage media requests.

Not recommendedcritical or high security findings
modbender/skill-library-mcp Agent Skills author: modbender MIT 14 files · 4 scripts body ≈ 461 tokens Open the sourcegithub.com analyzed 3 d ago

Request movies and TV shows through Jellyseerr.

As a process D 49/100 · Unfinished process — weak spots: result and completion, inputs and preconditions, failures and branches

IntegrationWriting and documentstype and topics are labelled automatically from the skill text
JSON
Technical rating
C
63/100
safety, quality, tests
Safety 60%
51
Quality 40%
82
Run on models
none yet
Process rating
D
49/100
Unfinished process
Result and completion w 14
0
Inputs and preconditions w 11
0
Failures and branches w 10
0
the three weakest of ten parameters · all ten

What is at stake

The skill contains fragments that, in the wrong hands, cost money or data. Below: what the installer risks and what the author should do.

Dangerous commands
If you install

The skill contains commands that delete files, rewrite disks or execute code fetched from the network. The agent may run them without asking if it believes the instructions require it.

For the author

Replace destructive commands with safe equivalents that ask for confirmation, scope them to one folder, and stop piping curl into a shell: pin a version and a checksum.

Obfuscation medium severity

Below is the worst case for this category. The finding here is medium: the guard saw a sign, not a proof.

If you install

The files contain invisible characters, encoded commands or comments hidden from readers but visible to the model. What you read differs from what the agent sees.

For the author

Remove invisible characters (they usually sneak in through copy-paste) and encoded strings: no catalog will pass them. Instructions for the model must be readable by a human too.

Exfiltration medium severity

Below is the worst case for this category. The finding here is medium: the guard saw a sign, not a proof.

If you install

The instructions or scripts send data out: environment variables, keys, file contents, chat history. You may never notice, because the agent performs the upload as "part of the task".

For the author

If the upload is not needed for the task, remove it: catalogs flag such skills and delist them. If it is needed, name the destination explicitly, say what leaves the machine, and give the user a switch.

How to improve

  1. Address the high-severity findings: each costs 18 safety points. If one is a false positive, add the rule id to guard.allow in spec.yaml.
For the model run — optional
  • Your own cases (evals/evals.json, 4–6 real requests with expected answers): the full check would then run those instead of a model-drafted suite.
  • A spec.yaml with trigger phrases and assertions — a behaviour contract for CI; `skilltest init` writes a template.

Guard findings · 12

  • high Dangerous commands cmd-persistence SKILL.md:78
    Persistence mechanism (cron / launchd / scheduled task / autorun registry)
    crontab /tmp/cron_backup.txt
Medium and low: 11
  • medium Obfuscation obf-base64-blob references/WEBHOOK_SETUP.md:46
    Long base64-looking blob
    eyJu…G1k
  • medium Dangerous commands cmd-privilege references/WEBHOOK_SETUP.md:165
    Privilege escalation / world-writable permissions
    sudo rm /etc/systemd/system/jellyseerr-webhook.service
  • medium Dangerous commands cmd-persistence references/WEBHOOK_SETUP.md:175
    Persistence mechanism (cron / launchd / scheduled task / autorun registry) (detector / deny-list definition)
    crontab -l | grep -v jellyseerr | crontab -
    detector
  • medium Dangerous commands cmd-privilege scripts/setup_webhook.sh:11
    Privilege escalation / world-writable permissions
    sudo tee /etc/systemd/system/${SERVICE_NAME}.service > /dev/null << EOF
  • medium Exfiltration net-credential-use scripts/setup.sh:18
    Credential used in a network call (verify the destination is the intended service)
    STATUS=$(curl -s -o /dev/null -w "%{http_code}" -H "X-Api-Key: $API_KEY" "$SERVER_URL/api/v1/status" 2>/dev/null)
  • low Dangerous commands cmd-cron-mention references/WEBHOOK_SETUP.md:175
    Mentions editing / listing crontab
    crontab -l | grep -v jellyseerr | crontab -
  • low Dangerous commands cmd-privilege scripts/install_service.sh:3
    Privilege escalation / world-writable permissions (code comment)
    # Run this with: sudo bash install_service.sh
    comment
  • low Dangerous commands cmd-background-process scripts/install_service.sh:35
    Starts a background / autostarted process
    systemctl enable ${SERVICE_NAME}
  • low Dangerous commands cmd-background-process scripts/setup_webhook.sh:30
    Starts a background / autostarted process
    sudo systemctl enable ${SERVICE_NAME}
  • low Obfuscation obf-base64-blob scripts/setup_webhook.sh:42
    Long base64-looking blob (quoted — discussed, not commanded)
    echo 'eyJu…kaW
    quoted
  • low Dangerous commands cmd-cron-mention SKILL.md:76
    Mentions editing / listing crontab
    crontab -l > /tmp/cron_backup.txt

Files scanned: 14. Evidence is masked. Grey chips explain why severity was lowered.

Against the Agent Skills spec

✓ No remarks against the Agent Skills spec

Process rating: all ten parameters 49/100

  • 0Result and completion. Does not say what the result is
  • 0Inputs and preconditions. Does not say what the process needs to start
  • 0Failures and branches. Linear process with no failure handling
  • 0Progress reporting. Says nothing while it works
  • 30Running it twice. 1 mutating operations with no state check
  • 50Steps. 2 steps
  • 70When it triggers. States when to use, but not when not to
  • 100Tools and files. No external tools needed
  • 100Consistency. Name and required fields are in place
  • 100Execution cost. Instruction body is 461 tokens

Everything here is measured from the skill text rather than judged by a model, so the numbers are checkable. A parameter weighs more when it is a more common reason for the process to stall.

Quality signals

  • +5Description has no quoted example phrases that should trigger the skill
  • +4Description does not say when NOT to use the skill (false activations)
  • +3No numbered steps or checklist
  • +3Output format is not stated: the model decides each time
  • -34 of 11 scripts are never mentioned in SKILL.md
  • +1No license
  • +2Single-language instructions
  • +3Description length 174: enough signal without eating the budget
  • +4Structure: 9 headings
  • +4Has examples (11 code blocks)
  • +4Reference files are cited in the instructions (2 of 2)

Quality base 70; lint remarks subtract, signals add up to 100. Result: 82.