Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计异常

quark-download夸克下载

Agent Skill

quark-download 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,545

周安装

105

GitHub Stars

4

下载量

832
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:quark-download(夸克下载)
来源仓库:https://github.com/psylch/media-master
仓库路径:skills/quark-download
安装命令:
npx skills add https://github.com/psylch/media-master --skill quark-download
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/psylch/media-master --skill quark-download

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词或任务场景快速定位候选结果。

  • 适用于夸克下载相关的媒体资源获取与管理场景,支持基于来源线索的文件路径解析。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 确认具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • quark-download 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Quark Search — 网盘资源搜索与下载

Language

Match user's language: Respond in the same language the user uses.

Automate the full workflow: search resources → validate links → save to Quark cloud drive → download locally, by combining the PanSou aggregation API with the local Quark desktop APP.

All operations use the CLI script at ${SKILL_PATH}/scripts/quark_search.py. It outputs JSON to stdout ({"status": "ok", "results": {...}, "hint": "..."}) and errors to stderr ({"error": "code", "message": "...", "hint": "...", "recoverable": true/false}). Exit codes: 0 = success, 1 = recoverable error, 2 = fatal error.

Preflight (MUST run first)

Before any business command (search, validate, save, etc.), run preflight:

python3 ${SKILL_PATH}/scripts/quark_search.py preflight

Response: Standardized JSON with ready: true/false, dependencies, and services status.

  • If ready: true → proceed to workflow.
  • If ready: false → follow the Check/Fix table below, then re-run preflight until it passes. Do NOT proceed to search or save until preflight passes.
CheckFix
Quark APP not runningLaunch Quark desktop APP and wait a few seconds for it to start
Quark APP not logged inLog in with membership account in the Quark APP
Why gate on preflight? Search itself works without Quark APP (it calls the PanSou web API), but save requires a running, logged-in Quark APP. Running preflight first prevents the frustrating experience of finding resources and then discovering you can't save them.

Workflow — Quick Search (recommended)

Prerequisite: Preflight must have returned ready: true.

A single command searches PanSou, validates all links in parallel, and fetches file details for the top results:

python3 ${SKILL_PATH}/scripts/quark_search.py search "KEYWORD" --top 5

Options:

FlagDefaultDescription
--top N5Number of top valid results to return with details
--no-validateoffSkip validation (faster, but may include dead links)
--limit N30PanSou results per page
--page N1PanSou page number

Success response:

{
  "status": "ok",
  "hint": "Found 8 valid Quark links for '三体', returning top 5.",
  "results": {
    "keyword": "三体",
    "total": 1234,
    "valid_count": 8,
    "results": [
      {
        "pwd_id": "abc123def",
        "url": "https://pan.quark.cn/s/abc123def",
        "note": "三体全集 4K",
        "source": "plugin:libvio",
        "datetime": "2025-01-15",
        "stoken": "xxx",
        "detail": {
          "pwd_id": "abc123def",
          "pdir_fid": "0",
          "total": 3,
          "list": [
            {"file_name": "三体S01E01.mkv", "size": 4294967296, "dir": false, "fid": "f1"},
            {"file_name": "Extras", "size": 0, "dir": true, "fid": "f2", "include_items": 5}
          ]
        }
      }
    ]
  }
}

Key fields:

  • total — total results across all drive types from PanSou
  • valid_count — how many quark links passed validation
  • results[].pwd_id — share ID for save command
  • results[].detail.list[] — files/folders in the share
  • results[].detail.list[].dirtrue if folder (more reliable than file_type)
  • results[].detail.list[].fid — use with detail command to browse subfolders

No quark results: When results is empty but total > 0, the response includes type_counts showing available results on other drive types. Report these to the user.

Priority: Always prioritize quark type results since the user has Quark membership. The script handles this automatically.

Workflow — Step-by-step

Prerequisite: Preflight must have returned ready: true.

For granular control, use individual subcommands:

Validate Links

python3 ${SKILL_PATH}/scripts/quark_search.py validate PWD_ID_OR_URL [...]

Accepts multiple pwd_ids or full share URLs. Returns validation status for each:

statusMeaningAction
validShare is aliveProceed. Response includes stoken for detail query
expiredShare expired (code 41004)Skip, mark as expired
not_existShare deleted (code 41006)Skip, mark as invalid
errorOther errorSkip

Get File Details

python3 ${SKILL_PATH}/scripts/quark_search.py detail PWD_ID --stoken STOKEN [--fid FID]

Fetches the file listing for a share. Use --fid to browse into a subfolder (pass the folder's fid from a previous detail response).

Health Check

python3 ${SKILL_PATH}/scripts/quark_search.py health [--refresh]

Shows PanSou API status and the channels/plugins lists used for search. Health data is cached for 24 hours at ~/.cache/quark-search/health.json. Use --refresh to force a fresh fetch.

Present Results to User

Format results clearly:

搜索 "三体" 找到 X 个有效夸克网盘资源:

1. [有效] 三体全集 4K — 3个文件,来源: plugin:libvio
   https://pan.quark.cn/s/abc123
2. [有效] 三体 第一季 1080P — 1个文件夹(42项),来源: channel:yunpanx
   https://pan.quark.cn/s/def456
3. [已失效] 三体合集 — 分享已过期

Ask the user which one to save.

Save

Requires Quark APP running and logged in. Before attempting save, verify preflight has passed in this session. If unsure, re-run preflight.

When the user selects a resource, trigger the Quark APP to open the share link:

python3 ${SKILL_PATH}/scripts/quark_search.py save PWD_ID_OR_URL

The script tries three methods in order: desktop_share_visiting (preferred) → desktop_caller deeplink → browser fallback. The response indicates which method succeeded.

After a successful APP save (method desktop_share_visiting or desktop_caller), inform the user:

已在夸克 APP 中打开分享链接窗口。注意:弹出的窗口可能很小,请留意任务栏/Dock 上的夸克图标。 在 APP 中点击「保存到网盘」按钮完成保存。保存后文件会出现在你的网盘中,可以直接在 APP 中下载到本地。

If the response method is browser_fallback, open the URL in the browser instead and inform the user to save from the web page.

Batch Processing

When the user wants to search and save multiple resources, loop through the search → present → save workflow for each keyword. Validate all links first via the search command, then trigger APP saves sequentially.

Completion Report

After a successful save, present this summary to the user:

[Quark Download] Complete!
Resource: [title]
Share: [URL]
Method: [save method used]
→ Click "保存到网盘" in Quark APP to complete

Error Handling

ErrorDetectionResolution
Quark APP not runningpreflight returns ready: false, service not_runningTell user to launch Quark APP
Not logged inpreflight returns ready: false, hint mentions loginTell user to log in
APP disconnected mid-sessionsave returns app_not_running error after preflight passed earlierRe-run preflight; if it fails, tell user to restart Quark APP and log in again
No search resultssearch returns total: 0Suggest different keywords
All links invalidsearch returns valid_count: 0Try alternative keywords or drive types
Share has passwordvalidate returns password required errorAsk user for the extraction code (提取码)
PanSou API errorsearch returns error: "pansou_error"Retry or try later

Troubleshooting

SymptomLikely CauseFix
localhost:9128 refusedQuark APP not runningLaunch Quark desktop APP
preflight passes but save failsAPP window minimized or hiddenCheck taskbar/Dock for Quark icon, bring window to front
Search returns results but all invalidResources expired or removedTry different keywords or broaden search terms
pansou_error on every searchPanSou API down or network issueWait and retry later; check network connectivity
browser_fallback method usedQuark APP local API not respondingRestart Quark APP; ensure it's the desktop version (not mobile)
Detail returns empty file listShare requires extraction code (提取码)Ask user for the code and re-validate with passcode

Important Notes

  • All share validation APIs are public (no authentication needed)
  • The local Quark APP API at localhost:9128 requires no authentication
  • The actual save-to-drive operation happens in the Quark APP UI (user clicks one button)
  • Download-to-local is handled by Quark APP's built-in download manager
  • Do not attempt to call Quark's authenticated remote APIs directly

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.25%
按下载量换算302

Claude

31.07%
按下载量换算259

Cursor

20.43%
按下载量换算170

Gemini CLI

10.11%
按下载量换算84

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

未通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills