better-auth-add-plugin
Add a better-auth plugin to an existing project. Configures server and client plugins with proper imports.
Validate Schema.org structured data implementation in the Nuxt project
$ npx -y skills add secondsky/claude-skills --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/check-schemaContext preview
What this command does when you run it.
Validate Schema.org structured data implementation in the Nuxt project
name: nuxt-seo:check-schema description: Validate Schema.org structured data implementation in the Nuxt project allowed-tools: - Read - Grep - Glob - Bash
Validate Schema.org structured data implementation using nuxt-schema-org.
1. Checks schema.org configuration in nuxt.config.ts 2. Finds all useSchemaOrg usage across pages 3. Validates schema type implementations 4. Identifies missing required properties 5. Suggests additional schema opportunities
# Check schema.org config grep -A 20 "schemaOrg:" nuxt.config.ts # Check identity configuration grep -A 10 "identity:" nuxt.config.ts
# Find useSchemaOrg usage grep -r "useSchemaOrg" --include="*.vue" -l # Find define* helpers grep -rE "define(Article|Product|Organization|Person|FAQPage|Event|Recipe)" \ --include="*.vue" -l # Find schema in Nuxt Content grep -rE "schemaOrg:" --include="*.md" -l
| Type | Use Case | Helper | |------|----------|--------| | Organization | Company site | defineOrganization | | Person | Personal site | definePerson | | Article | Blog posts | defineArticle | | Product | E-commerce | defineProduct | | FAQPage | FAQ sections | defineFAQPage | | BreadcrumbList | Navigation | defineBreadcrumb | | Event | Events | defineEvent | | Recipe | Recipes | defineRecipe |
# Schema.org Validation Report ## Global Configuration - Identity Type: [Organization/Person/None] - Identity Name: [name] - Logo: [configured/missing] ## Schema Usage by Page ### Blog Posts | Page | Schema Types | Status | |------|--------------|--------| | /blog/[slug].vue | Article | Complete | | /blog/index.vue | None | Missing | ### Products | Page | Schema Types | Status | |------|--------------|--------| | /products/[id].vue | Product | Missing price | ## Issues Found 1. **[Warning]** Article missing dateModified - File: pages/blog/[slug].vue - Fix: Add `dateModified` property ## Rich Results Eligibility - Article: Eligible - Product: Missing required fields - FAQ: Not implemented ## Recommendations 1. Add FAQ schema to /faq page 2. Add BreadcrumbList to all nested pages 3. Include dateModified for Article schema
Start by checking the global schema.org configuration, then scan all pages for schema usage.
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