Cloud drive resource search and download via Quark desktop APP
npx claudepluginhub psylch/quark-download-skillSearch, validate, and save cloud drive resources via PanSou aggregation API and local Quark desktop APP integration
A Claude Code skill for searching, validating, and saving cloud drive resources. Combines the PanSou aggregation API (90+ Telegram channels, 60+ website plugins) with the local Quark desktop APP to go from keyword → validated results → one-click save.
| Step | What Happens | API Used |
|---|---|---|
| Search | Query PanSou for cloud drive links across 6 drive types | s.panhunt.com/api/search (param: kw) |
| Validate | Check each share link is still alive (not deleted/expired) | drive-pc.quark.cn public API |
| Details | Fetch file names, sizes, folder contents | drive-pc.quark.cn public API |
| Save | Open the share in Quark APP for one-click save to drive | localhost:9128 local API |
This skill is part of media-master, which bundles music, cloud drive, and book download skills:
npx skills add psylch/media-master -g -y
npx skills add psylch/quark-download-skill -g -y
/plugin marketplace add psylch/quark-download-skill
/plugin install quark-download@psylch-quark-download-skill
Restart Claude Code after installation.
In Claude Code, use any of these trigger phrases:
搜资源 三体
找片 星际穿越
帮我下载 xxx
搜一下网盘资源
quark search interstellar
localhost:9128/desktop_infoNote: The actual "save to drive" and "download to local" steps happen in the Quark APP UI — the user clicks one button. This is by design to avoid reverse-engineering authenticated APIs.
PanSou returns results from multiple cloud drives. The skill prioritizes Quark results but also reports others:
| Type | Drive |
|---|---|
quark | Quark (夸克网盘) — preferred |
aliyun | Aliyun Drive (阿里云盘) |
baidu | Baidu Netdisk (百度网盘) |
115 | 115 Drive |
pikpak | PikPak |
uc | UC Drive |
| Error | Detection | Resolution |
|---|---|---|
| APP not running | localhost:9128 connection refused | Launch Quark APP |
| Not logged in | desktop_info returns isLogin: false | Log in to Quark |
| No results | PanSou returns total: 0 | Try different keywords |
| All links invalid | All validation checks fail | Try alternative keywords or drive types |
| Share has password | Token API returns password required | Ask user for extraction code (提取码) |
quark-search-skill/
├── .claude-plugin/
│ ├── marketplace.json # Plugin registry
│ └── plugin.json # Plugin manifest
├── skills/
│ └── quark-search/
│ ├── SKILL.md # Main skill definition
│ └── scripts/
│ └── quark_search.py # CLI script (search, validate, detail, save)
├── README.md
├── README.zh.md
└── LICENSE
MIT