modules/programs/agents/shared/skills/sabnzbd/SKILL.md
Inspect and control my self-hosted SABnzbd Usenet downloader. Use when the user asks about SABnzbd, NZB downloads, the Usenet queue, download history, server stats, or asks to pause/resume/delete a download.
npx skillsauth add MichaelVessia/nixos-config sabnzbdInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Manage my self-hosted SABnzbd (HTTP API, v4.5+): check the download queue and history, pause/resume the queue, delete queue items, and view server stats.
Credentials are exported into the shell by sops-nix (see
modules/programs/shell.nix):
SABNZBD_URL — base URL (no trailing slash)SABNZBD_API_KEY — API key from SABnzbd Config -> General -> SecurityThe sabnzbd CLI reports a JSON error envelope when they are missing.
SABnzbd authenticates via query string, not header. Every request includes
?apikey=$SABNZBD_API_KEY&output=json&mode=<mode>. The CLI handles this.
Use the installed sabnzbd CLI for common operations. It always emits a single
JSON envelope with ok, command, result or error, and next_actions.
scripts/sabnzbd.sh remains as a compatibility shim for older workflows.
sabnzbd status # version, uptime, paused, disk, warnings
sabnzbd version # SABnzbd version
sabnzbd queue --limit 50 # active download queue
sabnzbd history --limit 50 # recent history
sabnzbd pause # pause the queue
sabnzbd resume # resume the queue
sabnzbd delete <nzo_id> # remove from queue, keep files
sabnzbd delete <nzo_id> --files --confirm-delete-files
sabnzbd server-stats # day/week/month/total bytes per server
For anything not covered (adding NZBs, speed limits, history retry, category
changes), call the API directly with $SABNZBD_URL and $SABNZBD_API_KEY —
see references/api-endpoints.md and references/quick-reference.md.
Use the high-level subcommands first (status, queue, history,
server-stats). Drop to raw curl for niche operations.
Always confirm with the user before:
sabnzbd delete <nzo_id> --files --confirm-delete-files (deletes downloaded files from disk)purge style operations (mode=queue&name=delete&value=all)mode=history&name=delete&value=all)/api that mutates statereferences/api-endpoints.md — full API mode reference with
request/response shapesreferences/quick-reference.md — copy-paste curl recipes for common opsreferences/troubleshooting.md — auth, connection, and common error fixes?mode=<mode> against a single /api endpoint, not REST.output=json is required for JSON responses; default is XML.$SABNZBD_URL is unreachable, surface that to
the user rather than guessing.SABnzbd_nzo_xxxxxxxx and identify both queue and history
items.development
Restate the last message in plain human language, with no jargon.
testing
Fan out a batch of work items into one PR each via isolated worktree agents, review every PR before it opens, then babysit all PRs through green CI and review feedback. Use when the user wants to fan out PRs, dispatch parallel PR agents over a list of items, or run a batch of independent changes as separate PRs.
development
Dispatch user-visible coding or research agents through Herdr with Codex-Desktop-like thread ergonomics. Use when the user asks to use Herdr to spawn, dispatch, fan out, inspect, follow up with, or monitor agent workspaces/threads.
development
Generate self-contained HTML visualizations with Plannotator theming. Use for implementation plans, PR explainers, architecture diagrams, data tables, slide decks, and any visual explanation of technical concepts. Plans and PR explainers follow Plannotator's prescriptive approach; all other visual content delegates to nicobailon/visual-explainer.