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…
Maz-UI v4 - Modern Vue & Nuxt component library with 50+ standalone components, composables, directives, theming, i18n, and SSR support. Use when building Vue/Nuxt applications with forms, dialogs, tables, animations, or need responsive design system with dark mode.
$ npx -y skills add secondsky/claude-skills --skill maz-ui --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/maz-uiContext preview
The summary Claude sees to decide when to auto-load this skill.
Maz-UI v4 - Modern Vue & Nuxt component library with 50+ standalone components, composables, directives, theming, i18n, and SSR support. Use when building Vue/Nuxt applications with forms, dialogs, tables, animations, or need responsive design system with dark mode.
name: maz-ui description: Maz-UI v4 - Modern Vue & Nuxt component library with 50+ standalone components, composables, directives, theming, i18n, and SSR support. Use when building Vue/Nuxt applications with forms, dialogs, tables, animations, or need responsive design system with dark mode. license: MIT
Maz-UI is a comprehensive, standalone component library for Vue 3 and Nuxt 3 applications, offering 50+ production-ready components, powerful theming, internationalization, and exceptional developer experience.
**Latest Version**: 4.9.3 (as of 2026-08-03) **Package**: `maz-ui` | `@maz-ui/nuxt` | `@maz-ui/themes` | `@maz-ui/translations` | `@maz-ui/icons`
# Install core packages pnpm add maz-ui @maz-ui/themes # Or with npm npm install maz-ui @maz-ui/themes
**Setup** in `main.ts`:
import { createApp } from 'vue'
import { MazUi } from 'maz-ui/plugins/maz-ui'
import { mazUi } from '@maz-ui/themes'
import { en } from '@maz-ui/translations'
import 'maz-ui/styles'
import App from './App.vue'
const app = createApp(App)
app.use(MazUi, {
theme: { preset: mazUi },
translations: { messages: { en } }
})
app.mount('#app')**Use Components**:
<script setup>
import MazBtn from 'maz-ui/components/MazBtn'
import MazInput from 'maz-ui/components/MazInput'
import { ref } from 'vue'
const inputValue = ref('')
</script>
<template>
<MazInput v-model="inputValue" label="Name" />
<MazBtn color="primary">Submit</MazBtn>
</template># Install Nuxt module pnpm add @maz-ui/nuxt
**Setup** in `nuxt.config.ts`:
export default defineNuxtConfig({
modules: ['@maz-ui/nuxt']
// That's it! Auto-imports enabled 🎉
})**Use Components** (no imports needed):
<script setup>
// Auto-imported composables
const theme = useTheme()
const toast = useToast()
const inputValue = ref('')
</script>
<template>
<!-- Auto-imported components -->
<MazInput v-model="inputValue" label="Name" />
<MazBtn color="primary" @click="toast.success('Submitted!')">
Submit
</MazBtn>
</template>**Forms & Inputs**:
**UI Elements**:
**Overlays & Modals**:
**Feedback & Animation**:
**Layout & Display**:
**Theming**:
**Translations**:
**UI Interactions**:
**Utilities**:
✅ **Standalone Components** - Import only what you need, zero bloat ✅ **SSR/SSG Ready** - Full Nuxt 3 support with auto-imports ✅ **TypeScript-First** - Complete type safety out of the box ✅ **Dark Mode** - Built-in dark/light theme switching ✅ **Tree-Shakable** - Optimized bundle sizes ✅ **Responsive** - Mobile-first design ✅ **Accessible** - ARIA-compliant components ✅ **Themeable** - 4 built-in presets + custom themes ✅ **i18n** - Multi-language support with @maz-ui/translations ✅ **840+ Icons** - Optimized SVG icon library (@maz-ui/icons)
Maz-UI provides **two sets of production-ready templates** organized by framework:
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…