aceternity-ui
100+ animated React components (Aceternity UI) for Next.js with Tailwind. Use for hero sections, parallax, 3D effects, or encountering animation, shadcn CLI…
120+ Vue/Nuxt animated components with TailwindCSS v4, motion-v, GSAP, Three.js. Use for hero sections, 3D effects, interactive backgrounds, or encountering setup, CSS variables, motion-v integration errors.
$ npx -y skills add secondsky/claude-skills --skill inspira-ui --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/inspira-uiContext preview
The summary Claude sees to decide when to auto-load this skill.
120+ Vue/Nuxt animated components with TailwindCSS v4, motion-v, GSAP, Three.js. Use for hero sections, 3D effects, interactive backgrounds, or encountering setup, CSS variables, motion-v integration errors.
name: inspira-ui
description: 120+ Vue/Nuxt animated components with TailwindCSS v4, motion-v, GSAP, Three.js. Use for hero sections, 3D effects, interactive backgrounds, or encountering setup, CSS variables, motion-v integration errors.
license: MIT
allowed-tools: ["bash", "read", "glob", "grep"]
metadata:
version: 2.0.0
last_verified: 2025-11-16
production_tested: true
token_savings: ~65%
errors_prevented: 13+
keywords:
- vue
- nuxt
- vue 3
- nuxt 4
- inspira ui
- animated components
- tailwindcss v4
- motion-v
- three.js
- ogl
- webgl
- aurora background
- shimmer button
- morphing text
- 3d globe
- fluid cursor
- confetti
- neon border
- icon cloud
- flip cardInspira UI is a collection of 120+ reusable, animated components powered by TailwindCSS v4, motion-v, GSAP, and Three.js — crafted to help ship beautiful Vue and Nuxt applications faster.
Use Inspira UI when building:
**Key Benefits**:
# Required for all components bun add -d clsx tailwind-merge class-variance-authority tw-animate-css bun add @vueuse/core motion-v # Optional: For 3D components (Globe, Cosmic Portal, etc.) bun add three @types/three # Optional: For WebGL components (Fluid Cursor, Neural Background, etc.) bun add ogl
Create `lib/utils.ts`:
import { type ClassValue, clsx } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}Add to your `main.css`. See [references/SETUP.md](references/SETUP.md) for complete CSS configuration with OkLch colors.
./scripts/verify-setup.sh
Browse [inspira-ui.com/components](https://inspira-ui.com/components), copy what you need into `components/ui/`.
This installs 6+ packages including 3D libraries (`three`, `ogl`) with large dependency trees. Before installing, follow supply chain security best practices:
Load the `dependency-upgrade` skill for full security configuration including Socket CLI integration, cooldown setup, lockfile validation, and CI enforcement.
**What type of effect do you need?**
1. **Background Effects** → Aurora, Cosmic Portal, Particles, Neural Background
2. **Text Animations** → Morphing Text, Glitch, Hyper Text, Sparkles Text
3. **3D Visualizations** → Globe, 3D Carousel, Icon Cloud, World Map
4. **Interactive Cursors** → Fluid Cursor, Tailed Cursor, Smooth Cursor
5. **Animated Buttons** → Shimmer, Ripple, Rainbow, Gradient
6. **Special Effects** → Confetti, Meteors, Neon Border, Glow Border
**For complete implementation details** (props, full code, installation): Fetch https://inspira-ui.com/docs/llms-full.txt - LLM-optimized documentation with structured props tables and working code examples.
<template>
<AuroraBackground>
<Motion
:initial="{ opacity: 0, y: 40, filter: 'blur(10px)' }"
:while-in-view="{ opacity: 1, y: 0, filter: 'blur(0px)' }"
:transition="{ delay: 0.3, duration: 0.8, ease: 'easeInOut' }"
class="relative flex flex-col items-center gap-4 px-4"
>
<div class="text-center text-3xl font-bold md:text-7xl">
Your amazing headline
</div>
<ShimmerButton>Get Started</ShimmerButton>
</Motion>
</AuroraBackground>
</template>
<script setup lang="ts">
import { Motion } from "motion-v";
import AuroraBackground from "~/components/ui/AuroraBackground.vue";
import ShimmerButton from "~/components/ui/ShimmerButton.vue";
</script><script
145 production-ready skills for Claude Code CLI 🔌 Platform / Harness Support These plugins ship as Claude Code marketplace plugins (.claude-plugin/ manifests) and Codex CLI plugins (.codex-plugin/ manifests).
Repo: secondsky/claude-skills
100+ animated React components (Aceternity UI) for Next.js with Tailwind. Use for hero sections, parallax, 3D effects, or encountering animation, shadcn CLI…
Secure API authentication with JWT, OAuth 2.0, API keys. Use for authentication systems, third-party integrations, service-to-service communication, or…
Creates comprehensive API changelogs documenting breaking changes, deprecations, and migration strategies for API consumers. Use when managing API versions,…
Verifies API contracts between services using consumer-driven contracts, schema validation, and tools like Pact. Use when testing microservices communication,…
Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight developers. Use when designing new APIs,…
Implements standardized API error responses with proper status codes, logging, and user-friendly messages. Use when building production APIs, implementing…