better-auth-add-plugin
Add a better-auth plugin to an existing project. Configures server and client plugins with proper imports.
Generate custom Nuxt UI v4 theme configuration with semantic colors and component customization
$ npx -y skills add secondsky/claude-skills --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/themeContext preview
What this command does when you run it.
Generate custom Nuxt UI v4 theme configuration with semantic colors and component customization
name: nuxt-ui-v4:theme description: Generate custom Nuxt UI v4 theme configuration with semantic colors and component customization allowed-tools: - Read - Write - Edit argument-hint: "<primary-color> [--neutral <color>] [--radius <size>]"
Generate a custom theme configuration for Nuxt UI v4.
Tailwind v4 palette colors:
1. **Parse Arguments** Extract primary color and optional overrides.
2. **Generate app.config.ts** Create or update theme configuration:
export default defineAppConfig({
ui: {
theme: {
colors: {
primary: '<primary-color>',
secondary: 'sky',
success: 'emerald',
info: 'blue',
warning: 'amber',
error: 'rose',
neutral: '<neutral-color>'
},
radius: '<radius>'
}
}
})3. **Generate CSS Variables** (optional) If user wants custom shades, create in app.vue:
:root {
--ui-primary: var(--color-<primary>-500);
--ui-primary-hover: var(--color-<primary>-600);
}4. **Component-Level Customization** Offer to customize specific components:
export default defineAppConfig({
ui: {
button: {
base: 'font-semibold',
variants: {
size: {
xl: 'px-6 py-3 text-lg'
}
}
}
}
})5. **Dark Mode Configuration** Ensure color mode is enabled:
// nuxt.config.ts
export default defineNuxtConfig({
ui: { colorMode: true }
})6. **Preview Colors** Show the user what their theme will look like:
/nuxt-ui:theme violet --neutral zinc --radius lg
Creates a violet-themed configuration with zinc neutrals and large border radius.
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
Add a better-auth plugin to an existing project. Configures server and client plugins with proper imports.
Interactive setup wizard for better-auth authentication. Guides through database, framework, OAuth providers, and plugin configuration.
Explain Better Auth error codes and provide solutions with code examples
Display Better Auth available authentication providers and their configuration