Help us improve
Share bugs, ideas, or general feedback.
From alltuu-downloader
Batch downloads original photos from PhotoPlus album links (photoplus.cn/live/). Extracts album ID, confirms with user, and runs a Python script with multi-threading and skip support.
npx claudepluginhub chujianyun/skills --plugin prompt-engineering-skillsHow this skill is triggered — by the user, by Claude, or both
Slash command
/alltuu-downloader:photoplus-downloaderThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
从 PhotoPlus 相册(photoplus.cn)批量下载原图。
Batch downloads original photos (6720x4480) from alltuu.com cloud photography albums. Extracts album IDs from URLs, uses Chrome CDP to capture signed OSS URLs, and downloads with concurrency control.
Creates, curates, and publishes Immich albums organized by geography, theme, or custom criteria. Automates album creation from user prompts like 'create an album from my trip to Italy'.
Automates Google Photos tasks (upload media, manage albums, search photos, batch add items) via Rube MCP (Composio). Always searches tools first for current schemas.
Share bugs, ideas, or general feedback.
从 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/[目标目录]/