better-auth-add-plugin
Add a better-auth plugin to an existing project. Configures server and client plugins with proper imports.
Validate sitemap configuration and check for common issues
$ npx -y skills add secondsky/claude-skills --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/validate-sitemapContext preview
What this command does when you run it.
Validate sitemap configuration and check for common issues
name: nuxt-seo:validate-sitemap description: Validate sitemap configuration and check for common issues allowed-tools: - Read - Grep - Glob - Bash - WebFetch
Validate sitemap configuration and identify common issues in Nuxt applications.
1. Checks sitemap configuration in nuxt.config.ts 2. Verifies site.url is set (required for sitemaps) 3. Analyzes dynamic URL sources 4. Checks i18n sitemap integration 5. Validates exclude/include patterns 6. Reviews caching configuration
# Check site.url (required) grep -E "site:|url:" nuxt.config.ts | head -10 # Check sitemap config grep -A 30 "sitemap:" nuxt.config.ts # Check for API sources ls -la server/api/__sitemap__/
# Check if sitemap module is installed grep -E "@nuxtjs/seo|@nuxtjs/sitemap|nuxt-sitemap" package.json
# Find sitemap API endpoints find server -name "*.ts" | xargs grep -l "defineSitemapEventHandler" # Check sources configuration grep -A 5 "sources:" nuxt.config.ts
| Issue | Cause | Fix | |-------|-------|-----| | Empty sitemap | Missing site.url | Add `site: { url: '...' }` | | 404 on sitemap.xml | Module not installed | Install @nuxtjs/sitemap | | Duplicate URLs | Multiple sources overlap | Use include/exclude filters | | Missing dynamic URLs | Source not registered | Add to `sources: []` | | i18n not working | Module order wrong | Load i18n before sitemap |
# Sitemap Validation Report
## Configuration Status
- site.url: [set/missing]
- Module: [installed/missing]
- Mode: [single/multi/auto-chunked]
## Validation Results
- [ ] Required: site.url configured
- [x] Required: Module installed
- [ ] Optional: Dynamic sources configured
- [x] Optional: Caching enabled
## Issues Found
1. **[Critical]** site.url not configured
- File: nuxt.config.ts
- Fix: Add `site: { url: 'https://example.com' }`
## Sitemap Structure
| Sitemap | URLs | Source |
|---------|------|--------|
| /sitemap.xml | ~50 | nuxt:pages |
| /posts-sitemap.xml | ~200 | API endpoint |
## Recommendations
1. Set site.url for production
2. Add dynamic sources for database content
3. Enable caching for better performanceStart by checking the nuxt.config.ts for site.url and sitemap configuration.
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