better-auth-add-plugin
Add a better-auth plugin to an existing project. Configures server and client plugins with proper imports.
Initialize Nuxt UI v4 in an existing Nuxt project with proper configuration
$ npx -y skills add secondsky/claude-skills --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/setupContext preview
What this command does when you run it.
Initialize Nuxt UI v4 in an existing Nuxt project with proper configuration
name: nuxt-ui-v4:setup description: Initialize Nuxt UI v4 in an existing Nuxt project with proper configuration allowed-tools: - Read - Write - Edit - Bash argument-hint: "[--ai] [--dashboard] [--editor]"
Initialize Nuxt UI v4 in the current Nuxt project with optimal configuration.
1. **Check Prerequisites**
2. **Install Dependencies**
bun add @nuxt/ui tailwindcss
If `--ai` flag:
bun add ai @ai-sdk/vue @ai-sdk/gateway
If `--editor` flag:
bun add @tiptap/vue-3 @tiptap/starter-kit
3. **Configure nuxt.config.ts** Add @nuxt/ui to modules and CSS:
export default defineNuxtConfig({
modules: ['@nuxt/ui'],
css: ['~/assets/css/main.css']
})4. **Create CSS file** Create `assets/css/main.css`:
@import "tailwindcss"; @import "@nuxt/ui";
5. **Setup app.vue** Wrap with UApp:
<template>
<UApp>
<NuxtPage />
</UApp>
</template>6. **Create app.config.ts** Setup semantic colors:
export default defineAppConfig({
ui: {
colors: {
primary: 'green',
neutral: 'slate'
}
}
})7. **If --dashboard flag**: Create dashboard layout
layouts/dashboard.vue
8. **If --ai flag**: Create chat API endpoint
server/api/chat.post.ts
9. **Generate Types**
bunx nuxt prepare
10. **Verify Installation**
bun run dev
Report what was configured:
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