blossom-carousel

blossom-carousel is a skill for Claude Code from contactandrewchl-wq/turtle-mcp. It costs 59 tokens per session (669 once invoked), scanned A, original, MIT.

A front-end carousel pattern using the browser's native horizontal scrolling and snap-to-item behavior, with examples for React, Vue, and Svelte. A carousel is a row of content that users move through horizontally.

In plain words
What is it for?
Use it for landing-page galleries, testimonial rows, product displays, and other simple horizontal sliders where native touch behavior is suitable.
Why use it?
It provides touch scrolling without custom drag handlers or a heavy touch library, which keeps simple sliders easier to maintain and use.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the turtle plugin — 26 skills shipped together

Good fit Use it for landing-page galleries, testimonial rows, product displays, and other simple horizontal sliders where native touch behavior is suitable.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/contactandrewchl-wq/turtle-mcp/blossom-carousel
Install

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.

Any agent
npx skills add contactandrewchl-wq/turtle-mcp --skill blossom-carousel
Clone the repo
git clone --depth 1 https://github.com/contactandrewchl-wq/turtle-mcp

Made for: Claude Code.

Or install turtle, the plugin that ships this one along with the rest of its 26 skills.

Wrote 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.

agentmods badge for blossom-carousel

README.md
[![agentmods](https://agentmods.dev/badge/skills/contactandrewchl-wq/turtle-mcp/blossom-carousel/github.svg)](https://agentmods.dev/skills/contactandrewchl-wq/turtle-mcp/blossom-carousel)
Your own site
<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.

agentmods 80×15 button for blossom-carousel

Your own site · 80×15
<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>
Per session 59 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 669 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 11d ago against content hash 675014de2307, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

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.

skills/blossom-carousel/SKILL.md · 102 lines

What it actually says

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-label en 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]]

Changes

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.

  1. 11d ago First seen · 102 lines · 59 tokens per session scan A 675014de2307

Subscribe to this mod's changes

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.

Related

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.

DominikTobureto/awesome-grok-build · 42 tokens

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.

onfire7777/universal-ai-skills-library · 48 tokens

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.

PM-Shawn/Abu-Cowork · 64 tokens

frontend-developer

Expert frontend developer persona — React/Vue/Angular, performance optimization, Core Web Vitals, accessibility. Builds responsive web apps with pixel-perfect precision.

chandrudp29/skillhub · 34 tokens

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.

Wade-DevCode/awesome-coding-skills-cn · 29 tokens

frontend

When to use: React, Vue, or Angular work — component design, accessibility, performance, state management.

Effulgent-Point/paw · 0 tokens