Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add terrylica/cc-skills --skill amazon-photos-album-downloadgit clone --depth 1 https://github.com/terrylica/cc-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/terrylica/cc-skills/amazon-photos-album-download)<a href="https://agentmods.dev/skills/terrylica/cc-skills/amazon-photos-album-download"><img src="https://agentmods.dev/badge/skills/terrylica/cc-skills/amazon-photos-album-download/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/terrylica/cc-skills/amazon-photos-album-download"><img src="https://agentmods.dev/badge/skills/terrylica/cc-skills/amazon-photos-album-download.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 2 findings, up to high
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- high Rogue Agent · line 111 Skill modifies its own code, configuration, or behavior at runtime. Self-modification enables an agent to escalate privileges, disable safety constraints, or install persistent backdoors.Fix: Prevent the skill from modifying its own code, SKILL.md, or configuration files. Treat skill files as read-only at runtime.
- medium Rogue Agent · line 50 Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00136 | $0.01523 |
| Opus 5 | $0.00068 | $0.00762 |
| Sonnet 5 | $0.00027 | $0.00305 |
| Haiku 4.5 | $0.00014 | $0.00152 |
Grade A, and why
amazon-photos-album-download scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
- **Run the JSON calls in-page.** Calling `/drive/v1/` from plain `curl` fails — How it starts
The opening of the file, as written. The whole thing — 112 lines — stays where its author put it; the contents beside it link to each section on GitHub.
amazon-photos-album-download
Self-Evolving Skill: This skill improves through use. If instructions are wrong, parameters drifted, or a workaround was needed — fix this file immediately, don't defer. Only update for real, reproducible issues.
Download every original file from a public Amazon Photos shared album —
the kind of link you get from "Share → Copy link", e.g.
https://www.amazon.ca/photos/share/qGAyl…. No Amazon login is needed for a
public share; the album authorizes anonymously via its shareId.
When to use
- You shared an album with someone and need the originals back locally to
re-process them (the #1 case: convert iPhone HEIC originals to JPEG for a
recipient who can't open HEIC — then see the
heic-to-jpeg-bundleskill). - You want to re-host an album's photos yourself (a static gallery, a ZIP).
- You need a verified, complete local backup of a share you (or someone) sent.
How it works
Amazon Photos is a React app over Amazon Drive's /drive/v1/ JSON API. A
public share exposes, with just the shareId as auth:
GET /drive/v1/shares/<shareId>→ the rootSHARED_COLLECTIONnode id.GET /drive/v1/nodes/<root>/children?limit=1…→ the album folder node id.GET /drive/v1/nodes/<album>/children?filters=…image*+OR+video*…&limit=200…→ the list of asset nodes (name,contentProperties.contentType,size).- per node:
GET /drive/v1/nodes/<id>/contentRedirection?download=true&shareId=…→ the original bytes.
The script runs the JSON calls inside a headless Chrome page (via Playwright)
so they carry the exact cookies/headers the web app uses, then writes each file
under its real name and verifies the byte size against contentProperties.size.
A manifest.json records every node id, name, type, and size.
Prerequisites
bun,playwright-core, and Google Chrome installed.- The album link must be public (open it once in a logged-out browser to confirm it doesn't redirect to a sign-in wall).
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 7d ago First seen · 112 lines · 136 tokens per session scan A 724c10e52cdb
amazon-photos-album-download is a skill published in the GitHub repository terrylica/cc-skills (73 stars, last pushed today), licensed MIT. It adds 136 tokens to every session and 1,523 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.
Other skills, from other repositories
gs-skillify
Codify a successful gstack scrape/browser flow into a permanent browser-skill on disk (scrape-specific). CARL TRIGGERS: make this a skill, skillify, turn into a skill, save this workflow, capture this pattern. SOURCE: garrytan/gstack/skillify, integrated as gs-skillify on 2026-05-29.
gcp-setup
Automates Google Cloud Console setup via browser. Use when the user wants to set up a GCP project, enable APIs, create service accounts, configure IAM, set up billing, configure OAuth, set up firewall rules, or deploy to Cloud Run/App Engine/GKE. Also use when the user says "set up GCP", "configure Google Cloud"…
Instagram Access
Permanent capability skill for authenticated Instagram data extraction using instaloader and a reusable session cookie file.
search-console
Audit Google Search Console via browser. Use when the user says "check Search Console", "what's wrong with my domain", "why aren't my pages indexed", "SEO audit", "sitemap issues", or wants to investigate indexing problems, Core Web Vitals, structured data errors, or merchant listing issues. Opens GSC in Chrome, reads…
cloudflare-connect
Adds a subdomain to a Cloudflare-managed zone and wires it to a hosting platform (Railway, Vercel) via browser automation. Use when the user wants to point a subdomain at a Railway service, Vercel project, or other hosting platform. Also use when the user says "add a subdomain", "connect domain to Railway/Vercel"…
playwright-visual-testing
Browser automation, visual testing, and screenshot validation using Playwright MCP server for accelerated web development. Master visual regression testing, automated UI testing, and cross-browser validation.