Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
secondsky avatar

Inspira Ui

  • 428 installs
  • 202 repo stars
  • Updated August 4, 2026
  • secondsky/claude-skills

inspira-ui is a Claude Code skill that integrates Inspira UI's 120+ animated Vue and Nuxt components for developers who need TailwindCSS v4 landing pages with motion-v, GSAP, and Three.js effects.

About

inspira-ui is a Claude Code skill for Inspira UI, a copy-paste library of 120+ animated Vue and Nuxt components built on TailwindCSS v4, motion-v, GSAP, and Three.js rather than a traditional npm package install. The skill walks developers through dependency setup with clsx, tailwind-merge, class-variance-authority, tw-animate-css, @vueuse/core, and motion-v, plus optional three and ogl packages for 3D or WebGL backgrounds. It provides component selection workflows for hero sections, aurora backgrounds, shimmer buttons, morphing text, fluid cursors, and particle systems, along with fixes for CSS variable theming, motion-v integration errors, and WebGL cleanup to prevent memory leaks. Developers reach for inspira-ui when shipping marketing sites, portfolios, or SaaS landing pages that need Aceternity-style motion in Vue 3 or Nuxt 4 projects without rebuilding animation primitives from scratch. Install with npx skills add secondsky/claude-skills --skill inspira-ui when you want the agent to pick components from the Inspira UI gallery and wire imports explicitly.

  • Extends Claude Code agent capabilities
  • Activates on relevant task triggers
  • Integrates with Claude Code workflow

Inspira Ui by the numbers

  • 428 all-time installs (skills.sh)
  • +16 installs in the week ending Jul 27, 2026 (Skillselion tracking)
  • Ranked #1,908 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/secondsky/claude-skills --skill inspira-ui

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs428
repo stars202
Last updatedAugust 4, 2026
Repositorysecondsky/claude-skills

How do you add animated Vue landing components?

inspira-ui: agent skill for task automation in Claude Code workflows.

Who is it for?

Developers building Vue 3 or Nuxt 4 frontends who want 120+ prebuilt animated UI blocks with guided setup and troubleshooting.

Skip if: Developers standardizing on React or shadcn/ui who will not adopt Vue copy-paste components and TailwindCSS v4 OkLch theming.

When should I use this skill?

The user mentions Inspira UI, animated Vue hero sections, motion-v errors, or TailwindCSS v4 component integration for Nuxt landing pages.

What you get

Configured TailwindCSS v4 theme variables, installed motion dependencies, and pasted Inspira UI component source with working imports.

  • animated UI components
  • Tailwind theme variables
  • dependency install commands

By the numbers

  • Inspira UI provides 120+ reusable animated Vue and Nuxt components
  • Built on TailwindCSS v4 with motion-v, GSAP, and Three.js integrations
  • Uses copy-paste component workflow instead of a single npm library package

Files

SKILL.mdMarkdownGitHub ↗

Inspira UI - Animated Vue/Nuxt Component Library

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

Table of Contents

When to Use This Skill

Use Inspira UI when building:

  • Animated landing pages with hero sections, testimonials, and effects
  • Modern web applications requiring 3D visualizations and interactive elements
  • Marketing sites with eye-catching backgrounds and text animations
  • Portfolio sites with image galleries, carousels, and showcase effects
  • Interactive experiences with custom cursors, special effects, and particle systems
  • Vue 3 or Nuxt 4 projects requiring production-ready animated components

Key Benefits:

  • 120+ copy-paste components (not a traditional npm library)
  • Full TypeScript support with Vue 3 Composition API
  • TailwindCSS v4 with OkLch color space
  • Responsive and mobile-optimized
  • Free and open source (MIT license)

Quick Start

1. Install Core Dependencies

# 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

2. Setup CN Utility

Create lib/utils.ts:

import { type ClassValue, clsx } from "clsx";
import { twMerge } from "tailwind-merge";

export function cn(...inputs: ClassValue[]) {
  return twMerge(clsx(inputs));
}

3. Configure CSS Variables

Add to your main.css. See references/SETUP.md for complete CSS configuration with OkLch colors.

4. Verify Setup

./scripts/verify-setup.sh

5. Copy Components

Browse inspira-ui.com/components, copy what you need into components/ui/.

Secure Installation

This installs 6+ packages including 3D libraries (three, ogl) with large dependency trees. Before installing, follow supply chain security best practices:

  • Block post-install scriptsnpm config set ignore-scripts true (or Bun: disabled by default)
  • Cooldown period — Wait 7 days for new package versions to be vetted by the community
  • Audit before installing — Run socket package score npm <pkg> or use socket npm install <pkg> to check packages

Load the dependency-upgrade skill for full security configuration including Socket CLI integration, cooldown setup, lockfile validation, and CI enforcement.

Component Selection Workflow

What type of effect do you need?

1. Background Effects → Aurora, Cosmic Portal, Particles, Neural Background

  • See: references/components-list.md#backgrounds

2. Text Animations → Morphing Text, Glitch, Hyper Text, Sparkles Text

  • See: references/components-list.md#text-animations

3. 3D Visualizations → Globe, 3D Carousel, Icon Cloud, World Map

  • Dependencies: bun add three @types/three
  • See: references/components-list.md#visualization

4. Interactive Cursors → Fluid Cursor, Tailed Cursor, Smooth Cursor

  • Dependencies: bun add ogl (for WebGL cursors)
  • See: references/components-list.md#cursors

5. Animated Buttons → Shimmer, Ripple, Rainbow, Gradient

  • No extra dependencies
  • See: references/components-list.md#buttons

6. Special Effects → Confetti, Meteors, Neon Border, Glow Border

  • See: references/components-list.md#special-effects

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.

Core Usage Patterns

Pattern 1: Animated Landing Page

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

Pattern 2: Props with TypeScript Interfaces

<script setup lang="ts">
// ALWAYS use interface-based props
interface Props {
  title: string;
  count?: number;
  variant?: "primary" | "secondary";
}

const props = withDefaults(defineProps<Props>(), {
  count: 0,
  variant: "primary",
});
</script>

Pattern 3: Explicit Imports (Critical for Vue.js Compatibility)

<script setup lang="ts">
// ALWAYS include explicit imports even with Nuxt auto-imports
import { ref, onMounted, computed } from "vue";
import { useWindowSize } from "@vueuse/core";

const { width } = useWindowSize();
</script>

Pattern 4: WebGL Component Cleanup

<script setup lang="ts">
import { onUnmounted } from "vue";

let animationFrame: number;
let renderer: any;

onUnmounted(() => {
  // CRITICAL: Clean up WebGL resources to prevent memory leaks
  if (animationFrame) cancelAnimationFrame(animationFrame);
  if (renderer) renderer.dispose();
});
</script>

Pattern 5: Client-Only Wrapper (Nuxt)

<template>
  <ClientOnly>
    <FluidCursor />
  </ClientOnly>
</template>

Critical Pitfalls to Avoid

1. Accessibility Bug (CRITICAL)

The original Inspira UI docs have --destructive-foreground set to the same color as --destructive, making text invisible. Use the corrected value:

:root {
  --destructive: oklch(0.577 0.245 27.325);
  --destructive-foreground: oklch(0.985 0 0); /* CORRECTED */
}

2. Missing CSS Imports

/* REQUIRED in main.css */
@import "tailwindcss";
@import "tw-animate-css";  /* Often forgotten! */

3. Wrong Props Syntax

// DON'T: Object syntax
const props = defineProps({ title: { type: String } });

// DO: Interface syntax
interface Props { title: string; }
const props = defineProps<Props>();

4. Three.js Without ClientOnly (Nuxt)

<!-- WRONG: Will fail during SSR -->
<GithubGlobe :markers="markers" />

<!-- CORRECT -->
<ClientOnly>
  <GithubGlobe :markers="markers" />
</ClientOnly>

5. Using Enums Instead of as const

// DON'T: TypeScript enums
enum ButtonVariant { Primary = "primary" }

// DO: as const objects
const ButtonVariants = { Primary: "primary" } as const;

Token Efficiency

Average Token Savings: ~65%

  • Without skill: ~15k tokens (trial-and-error with setup)
  • With skill: ~5k tokens (direct implementation)

Errors Prevented: 13+ common issues including: 1. Critical accessibility bug (destructive-foreground) 2. TailwindCSS v4 CSS variables misconfiguration 3. Missing @import "tw-animate-css" 4. Motion-V setup issues 5. Three.js/OGL without ClientOnly 6. Props typed with object syntax instead of interfaces 7. Missing explicit imports

Detailed Documentation

For complete setup with all CSS variables: references/SETUP.md

For all 120+ components with dependencies: references/components-list.md

For troubleshooting common issues: references/TROUBLESHOOTING.md

For TypeScript patterns and conventions: references/CODE_PATTERNS.md

Keywords

Frameworks: Vue, Vue 3, Nuxt, Nuxt 4, Composition API, script setup

Styling: TailwindCSS v4, OkLch, CSS variables, dark mode

Animation: motion-v, GSAP, Three.js, WebGL, OGL, canvas

Components: aurora background, shimmer button, morphing text, 3D globe, fluid cursor, confetti, neon border, icon cloud, flip card, particles

Use Cases: landing pages, hero sections, animated backgrounds, interactive UI, marketing sites, portfolios, 3D websites

Problems Solved: Vue animations, Nuxt animations, animated components, 3D effects, particle effects, modern UI effects

Resources

  • Official Documentation: https://inspira-ui.com/docs
  • LLM-Optimized Docs: https://inspira-ui.com/docs/llms-full.txt (complete props, code examples, installation)
  • Component Gallery: https://inspira-ui.com/components
  • GitHub Repository: https://github.com/unovue/inspira-ui
  • Discord Community: https://discord.gg/Xbh5DwJRc9

---

Production Status: ✅ Production-Ready Token Efficiency: ✅ ~65% savings Error Prevention: ✅ 13+ common issues prevented Last Updated: 2025-11-12

Related skills

How it compares

Choose inspira-ui over React Magic UI skills when the stack is Vue or Nuxt and you need Aceternity-style motion with TailwindCSS v4 setup guidance.

FAQ

Is inspira-ui an npm component library?

inspira-ui documents Inspira UI as 120+ copy-paste Vue and Nuxt components, not a traditional npm package. Developers browse the gallery, copy source, and adapt components inside their own projects.

Which dependencies does inspira-ui require?

inspira-ui lists clsx, tailwind-merge, class-variance-authority, tw-animate-css, @vueuse/core, and motion-v as core installs, with optional three, @types/three, and ogl for 3D or WebGL components.

What frameworks does inspira-ui target?

inspira-ui targets Vue 3 and Nuxt 4 projects using TailwindCSS v4 OkLch theming, Composition API script setup, and TypeScript-friendly Inspira UI component patterns.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.