用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/nastorehub/NasDoor --skill photoplus-downloader命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Generate images, video, and audio with ComfyUI — install, launch, manage nodes/models, run workflows with parameter injection. Uses the official comfy-cli for lifecycle and direct REST/WebSocket API for execution.
Pixel art w/ era palettes (NES, Game Boy, PICO-8).
Hand-drawn Excalidraw JSON diagrams (arch, flow, seq).
正在显示 SKILL.md
| name | photoplus-downloader |
| description | PhotoPlus相册批量下载原图工具。当用户需要从 photoplus.cn/live/ 相册批量下载原图时使用此技能。适用于 photoplus.cn 相册链接,支持多线程并发、自动跳过已下载文件。 |
从 PhotoPlus 相册(photoplus.cn)批量下载原图。
用户提供包含 photoplus.cn 的相册链接,例如:
https://live.photoplus.cn/live/67458816?accessFrom=livehttps://live.photoplus.cn/live/67458816scripts/download_photos.py 已可直接使用requests 和 tqdm,首次运行前需安装从 URL 路径中提取 /live/ 后面的数字。
示例:https://live.photoplus.cn/live/67458816?accessFrom=live → ID 为 67458816
运行脚本获取相册信息,确认后再下载:
cd {skill_dir}/scripts
python3 download_photos.py --id [相册ID] --count 1
向用户展示总照片数量,确认是否继续下载。
pip3 install --break-system-packages requests tqdm
用户确认后,下载全部照片:
cd {skill_dir}/scripts
python3 download_photos.py --id [相册ID] --count 9999
参数:
--id:相册 ID(必需)--count:下载数量(默认 9999 即全部)ls {skill_dir}/scripts/dist/[相册ID]/ | wc -l
向用户报告下载数量和保存路径。默认保存在 scripts/dist/[相册ID]/。
如用户需要移动到指定目录:
mv {skill_dir}/scripts/dist/[相册ID]/* ~/Downloads/[目标目录]/