원클릭으로
qbittorrent
管理已有 qBittorrent 下载任务。用于查看任务进度、查询分类、暂停、恢复、删除、重校验和修改分类
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
管理已有 qBittorrent 下载任务。用于查看任务进度、查询分类、暂停、恢复、删除、重校验和修改分类
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
识别到图片点评、偏好学习或画像查询意图时激活。场景:1)用户发图并请求点评/分析;2)用户对图片反馈喜欢/不喜欢;3)用户查询画像("我的喜好"/"画像"/"图像偏好"/"喜欢什么");4)用户直接声明偏好("我喜欢兽耳""不喜欢某题材")
下载磁力链接到 NAS 的 qBittorrent。用户发送 magnet 链接、"下载这个磁力"、"帮我下载" 附带磁力链接时激活
搜索 PT 站资源并添加到 qBittorrent 下载,或查看下载进度。当用户想看/下载影视、动漫等资源(如"我想看xxx电影"、"帮我下载xxx"),或查询下载进度(如"查看下载"、"下载进度"、"qb状态")时使用
当用户要求翻译漫画、汉化漫画、嵌字时激活
在连续对话或聊天模式中,为AI回复末尾生成3个可选行动项供用户快速选择。当用户发送"进入对话模式 --option"、"开启选项模式"或要求生成选项时自动激活。
当用户要求画图、生图、编辑图片、改图、风格转换时激活
| name | qbittorrent |
| description | 管理已有 qBittorrent 下载任务。用于查看任务进度、查询分类、暂停、恢复、删除、重校验和修改分类 |
管理 NAS 上运行的 qBittorrent 下载任务,重点用于查看、暂停、恢复、删除、重校验和修改分类。
本 Skill 当前不替代 magnet-download 和 pt-download 的添加流程;磁力下载和 PT 下载仍按各自原有 Skill 执行。
通过环境变量读取 qBittorrent Web UI 配置:
PT_QB_URL:qBittorrent Web UI 地址,例如 http://127.0.0.1:8080PT_QB_USERNAME:用户名,默认 adminPT_QB_PASSWORD:密码PT_QB_SAVE_PATH:默认保存路径,默认 /downloadsPT_QB_VERIFY_SSL:是否校验 SSL,默认 falselist 或 status。list --search 关键词 筛选。list 或 status 确认目标任务 hash。delete。--delete-files。execute_script(skill_name="qbittorrent", script_path="scripts/qb.py", args=["categories"])
execute_script(skill_name="qbittorrent", script_path="scripts/qb.py", args=["list"])
execute_script(skill_name="qbittorrent", script_path="scripts/qb.py", args=["list", "--filter", "downloading"])
execute_script(skill_name="qbittorrent", script_path="scripts/qb.py", args=["list", "--search", "关键词"])
execute_script(skill_name="qbittorrent", script_path="scripts/qb.py", args=["status", "--hash", "任务hash"])
execute_script(skill_name="qbittorrent", script_path="scripts/qb.py", args=["pause", "--hash", "任务hash"])
execute_script(skill_name="qbittorrent", script_path="scripts/qb.py", args=["resume", "--hash", "任务hash"])
execute_script(skill_name="qbittorrent", script_path="scripts/qb.py", args=["recheck", "--hash", "任务hash"])
execute_script(skill_name="qbittorrent", script_path="scripts/qb.py", args=["set-category", "--hash", "任务hash", "--category", "电影"])
删除任务必须加 --confirm,且必须先得到用户明确确认:
execute_script(skill_name="qbittorrent", script_path="scripts/qb.py",
args=["delete", "--hash", "任务hash", "--confirm"])
删除本地文件需要额外传 --delete-files:
execute_script(skill_name="qbittorrent", script_path="scripts/qb.py",
args=["delete", "--hash", "任务hash", "--delete-files", "--confirm"])
--search 只用于 list,不要用于 delete、pause、resume、recheck、set-category。--hash 支持一次传多个,也可重复传;例如 --hash a b c、--hash a --hash b、--hash "a,b,c"。PT_QB_URL、PT_QB_USERNAME、PT_QB_PASSWORD。