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 contactandrewchl-wq/turtle-mcp --skill blossom-carouselgit clone --depth 1 https://github.com/contactandrewchl-wq/turtle-mcpWrote 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/contactandrewchl-wq/turtle-mcp/blossom-carousel)<a href="https://agentmods.dev/skills/contactandrewchl-wq/turtle-mcp/blossom-carousel"><img src="https://agentmods.dev/badge/skills/contactandrewchl-wq/turtle-mcp/blossom-carousel/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/contactandrewchl-wq/turtle-mcp/blossom-carousel"><img src="https://agentmods.dev/badge/skills/contactandrewchl-wq/turtle-mcp/blossom-carousel.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.00059 | $0.00669 |
| Opus 5 | $0.00030 | $0.00334 |
| Sonnet 5 | $0.00012 | $0.00134 |
| Haiku 4.5 | $0.00006 | $0.00067 |
Grade A, and why
blossom-carousel scanned grade A with 0 findings 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 11d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
What it actually says
Blossom carousel
Cuándo usar
- Galería horizontal en landing.
- Carrusel de testimonios, productos, casos.
- Cualquier slider donde el gesto táctil deba ser nativo (no simulado).
Si necesitás autoplay complejo, paginación con dots animados o transiciones 3D, usá Swiper. Blossom es para lo simple, rápido y accesible.
Idea
Scroll horizontal del navegador + scroll-snap-type. Sin listeners de drag,
sin librerías de touch. Animaciones nativas, momentum nativo, accesible por defecto.
CSS base
.carousel {
display: flex;
gap: 1rem;
overflow-x: auto;
scroll-snap-type: x mandatory;
scroll-behavior: smooth;
scrollbar-width: none;
-webkit-overflow-scrolling: touch;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel > * {
flex: 0 0 auto;
scroll-snap-align: start;
}
React
export function Carousel({ children }: { children: React.ReactNode }) {
return <div className="carousel" role="region" aria-label="Carrusel">{children}</div>
}
Vue
<template>
<div class="carousel" role="region" aria-label="Carrusel">
<slot />
</div>
</template>
Svelte
<div class="carousel" role="region" aria-label="Carrusel">
<slot />
</div>
Botones prev/next (opcional)
const scrollByCard = (el: HTMLElement, dir: 1 | -1) => {
const card = el.querySelector(':scope > *') as HTMLElement | null
if (!card) return
el.scrollBy({ left: dir * (card.offsetWidth + 16), behavior: 'smooth' })
}
A11y
role="region"+aria-labelen el contenedor.- Cada slide focusable (
tabindex="0") si tiene contenido interactivo dentro. - Botones prev/next con
aria-label="Anterior"/"Siguiente". - Indicar progreso si hay >5 slides: "3 de 8".
Reglas
- Sin librerías salvo que necesites algo que CSS no da.
- Sin altura fija por slide; dejar que el contenido mande.
- Lazy load de imágenes (
loading="lazy").
Relacionadas
[[ui-ux-pro-max]] · [[accessibility-wcag]]
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.
- 11d ago First seen · 102 lines · 59 tokens per session scan A 675014de2307
blossom-carousel is a skill published in the GitHub repository contactandrewchl-wq/turtle-mcp (2 stars, last pushed 2mo ago), licensed MIT. It adds 59 tokens to every session and 669 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
frontend-ux-engineer
Use for frontend features, Next.js/React/Vue/Svelte UI, accessibility, responsive layout, design polish, state handling, forms, visual QA, or product workflow improvements.
artisan
A production frontend craftsman for React/Vue/Svelte. Responsible for hooks design, state management, Server Components, form handling, and data fetching. Converts Forge prototypes into production-quality code. Use when production frontend implementation is required.
web-artifacts-builder
Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui). Use for complex artifacts requiring state management, routing, or shadcn/ui components - not for simple single-file HTML/JSX artifacts.
frontend-developer
Expert frontend developer persona — React/Vue/Angular, performance optimization, Core Web Vitals, accessibility. Builds responsive web apps with pixel-perfect precision.
frontend-best-practices
Coding guidance for building React or Vue front ends, where components display screens and manage user interactions. It covers component responsibilities, state placement, performance, and accessibility.
frontend
When to use: React, Vue, or Angular work — component design, accessibility, performance, state management.