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 pedroiff0/awesome-skills --skill animated-portfolio-sitesgit clone --depth 1 https://github.com/pedroiff0/awesome-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/pedroiff0/awesome-skills/animated-portfolio-sites)<a href="https://agentmods.dev/skills/pedroiff0/awesome-skills/animated-portfolio-sites"><img src="https://agentmods.dev/badge/skills/pedroiff0/awesome-skills/animated-portfolio-sites/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/pedroiff0/awesome-skills/animated-portfolio-sites"><img src="https://agentmods.dev/badge/skills/pedroiff0/awesome-skills/animated-portfolio-sites.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.00058 | $0.05311 |
| Opus 5 | $0.00029 | $0.02655 |
| Sonnet 5 | $0.00012 | $0.01062 |
| Haiku 4.5 | $0.00006 | $0.00531 |
Grade A, and why
animated-portfolio-sites 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 8d 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.
fresh `node --check` + `node -e '...'` data-shape assertion + `curl` of the published URL How it starts
The opening of the file, as written. The whole thing — 298 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Animated Portfolio Sites
Build a single-page, anchor-navigated personal/portfolio site with a "wow" animated background, hidden-on-click content, and publish it free on GitHub Pages.
For visual tokens (color palettes, typography, component CSS) of known brands, pair
with the popular-web-designs skill (Stripe/Linear/Vercel/etc.). This skill covers the
structure, canvas animation technique, and the Pages publishing wall.
When to use
- User wants a "cool" personal site, portfolio, CV, or short-resumé page.
- Astronomy/space/dark theme is requested (or you choose it for impact).
- They want it on GitHub Pages.
Architecture (single file, no build step)
index.html— page + sections with#anchorids; nav links to them.assets/css/style.css— theme via CSS custom properties (--accent,--grad…).assets/js/projects.js—window.PORTFOLIO_DATA = { REPOS, FEATURED, RESEARCH, BOLSAS, CONTACTS, FULL_NAME, ORCID }(data-driven; list public AND private repos with short briefs without touching HTML).assets/js/main.js— renders cards/accordions/contacts, canvas animation, scroll reveal, nav.
Hidden-until-click content
CSS max-height transition, toggled by a class:
.detail { max-height:0; overflow:hidden; opacity:0; transition:max-height .5s, opacity .4s; }
.card.open .detail { max-height:520px; opacity:1; }
JS: on card click, card.classList.toggle('open'), but if (e.target.closest('a')) return;
so inner repo links still work. Accordions use the same trick (.acc.open .acc__body).
Canvas background (starfield + rotating galaxies)
Two stacked <canvas> (#galaxies behind, #starfield front), both
position:fixed; inset:0; z-index:0; pointer-events:none.
Galaxy per frame, per galaxy:
- Nucleus: radial gradient white→hueA→hueB→transparent, plus a small bright core glow.
- Spiral arms: for each star,
arm = floor(a/(2π/arms))*(2π/arms);ang = arm + rad*3.4 + rot;x=cx+cos(ang)*rad;y=cy+sin(ang)*rad*0.42(×0.42 squashes into a disk).rot += spineach frame → rotation.
What ships with it
3 files 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.
- 8d ago First seen · 298 lines · 58 tokens per session scan A 105dbd6649f0
animated-portfolio-sites is a skill published in the GitHub repository pedroiff0/awesome-skills (1 stars, last pushed 5d ago), licensed MIT. It adds 58 tokens to every session and 5,311 once invoked, about $0.0003 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-03.
Other skills, from other repositories
animation-reverse-engineering
Reverse-engineer any motion reference (a video from X/Twitter, Dribbble, a screen recording, a GIF) into production animation code through frame-level dissection. Use when the user shares a video/URL and says "implement this animation", "recreate this motion", "port this interaction", "how does this animate", "clone…
pebble-protocol-ui
Component catalogue for Pebble pebblesend type "ui" blocks — OpenUI Lang syntax, components, the action model (buttons, forms, $state), and what Pebble does NOT support. View when building an interactive UI block.
ui-templates
Human-designed UI template library with 380 templates from 9 professional sources. Use for any web page creation: landing pages, portfolios, business sites, dashboards, crypto/web3, etc. All templates are real human-designed HTML/CSS/JS — no AI-generated slop.
popular-web-designs
54 real design systems (Stripe, Linear, Vercel) as HTML/CSS.
agent-canvas
Interactive element picker for web pages. Opens a browser with click-to-select UI overlay. Use when you need to let users visually select DOM elements, identify element selectors, or get detailed element information interactively. Triggers on "select an element", "pick element", "let me choose", "which element", or…
finalize
Pre-ship gate — runs detector, verifies brief and tokens, applies the 10-pass finish bar, ranks findings by feedback hierarchy. Use when the user wants to ship, merge, or finalize a surface and needs a verdict (READY / NOT READY / BLOCKED) before committing. Invoke when the user asks for finalize on their UI, or…