better-auth-add-plugin
Add a better-auth plugin to an existing project. Configures server and client plugins with proper imports.
Migrate project from Nuxt UI v2/v3 to v4 with automated fixes for breaking changes
$ npx -y skills add secondsky/claude-skills --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/migrateContext preview
What this command does when you run it.
Migrate project from Nuxt UI v2/v3 to v4 with automated fixes for breaking changes
name: nuxt-ui-v4:migrate description: Migrate project from Nuxt UI v2/v3 to v4 with automated fixes for breaking changes allowed-tools: - Read - Write - Edit - Bash - Glob - Grep argument-hint: "[--dry-run] [--from v3]"
Migrate from Nuxt UI v2/v3 to v4 with automated breaking change fixes.
1. **Detect Current Version** Read package.json to find current @nuxt/ui version.
2. **Scan for Breaking Changes** Search codebase for patterns that need updating:
| v3 Pattern | v4 Pattern | Files to Check | |------------|------------|----------------| | `<UButtonGroup>` | `<UFieldGroup>` | `*.vue` | | `<UPageMarquee>` | `<UMarquee>` | `*.vue` | | `<UPageAccordion>` | `<UAccordion>` | `*.vue` | | `v-model.nullify` | `v-model.nullable` | `*.vue` | | `.$el.focus()` | `.focus()` | `*.vue`, `*.ts` | | `useToast.js'` | `useToast'` | `*.ts`, `*.vue` |
3. **Check Configuration Files**
4. **Report Findings** If `--dry-run`:
5. **Apply Fixes** If not `--dry-run`:
6. **Update Dependencies**
bun update @nuxt/ui bun add tailwindcss@4
7. **Post-Migration Checks**
bunx nuxt prepare bun run build
8. **Highlight New Features** After migration, inform about new v4 capabilities:
- <UButtonGroup> + <UFieldGroup> - <UPageMarquee> + <UMarquee>
- <UPageAccordion> + <UAccordion unmount-on-hide="false">
- v-model.nullify="value" + v-model.nullable="value"
- inputRef.value.$el.focus() + inputRef.value?.focus()
- import { useToast } from '#ui/composables/useToast.js'
+ import { useToast } from '#ui/composables/useToast'<style> @import "tailwindcss"; /* FIRST */ @import "@nuxt/ui"; /* SECOND */ </style>
Summary report including:
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