aceternity-ui
100+ animated React components (Aceternity UI) for Next.js with Tailwind. Use for hero sections, parallax, 3D effects, or encountering animation, shadcn CLI…
Nuxt SEO v5 modules (robots, sitemap, og-image, schema-org, link-checker, seo-utils, site-config). Use when implementing SEO, robots.txt, sitemaps, Schema.org, or meta tags in Nuxt apps.
$ npx -y skills add secondsky/claude-skills --skill nuxt-seo --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/nuxt-seoContext preview
The summary Claude sees to decide when to auto-load this skill.
Nuxt SEO v5 modules (robots, sitemap, og-image, schema-org, link-checker, seo-utils, site-config). Use when implementing SEO, robots.txt, sitemaps, Schema.org, or meta tags in Nuxt apps.
name: nuxt-seo
description: Nuxt SEO v5 modules (robots, sitemap, og-image, schema-org, link-checker, seo-utils, site-config). Use when implementing SEO, robots.txt, sitemaps, Schema.org, or meta tags in Nuxt apps.
license: MIT
metadata:
version: 4.0.0
last_updated: 2026-08-03
module_versions:
nuxtjs_seo: 5.1.0
"@nuxtjs/robots": 6.0.6
"@nuxtjs/sitemap": 8.0.11
nuxt_og_image: 6.3.1
nuxt_schema_org: 6.0.4
nuxt_link_checker: 5.0.6
nuxt_seo_utils: 8.1.4
nuxt_site_config: 4.0.7
nuxt_compatibility: ">=4.0.0"
auto_trigger_scenarios:
- Setting up SEO in Nuxt project
- Configuring robots.txt or sitemap
- Generating Open Graph images
- Adding Schema.org structured data
- Managing meta tags and social sharing
- Checking and fixing broken links
- Implementing site-wide SEO configuration
- Implementing Twitter Cards or Open Graph
- Setting up canonical URLs
- Configuring rendering modes (SSR/SSG/ISR)
- Using IndexNow for instant indexing
- Implementing rich results with JSON-LD
- Setting up multilanguage/i18n SEO
- Configuring SEO route rules
- Migrating from Nuxt SEO v4 to v5**Status**: Production Ready | **Dependencies**: Nuxt >=4.0.0
Use this skill when building SEO-optimized Nuxt applications with any combination of the 8 official Nuxt SEO modules plus standalone modules.
---
# Recommended (v5) npx nuxt module add @nuxtjs/seo
export default defineNuxtConfig({
modules: ['@nuxtjs/seo'],
site: {
url: 'https://example.com',
name: 'My Awesome Site',
description: 'Building amazing web experiences',
defaultLocale: 'en'
}
})**CRITICAL (v5 Breaking Change):**
Visit these URLs to verify:
npx nuxt module add @nuxtjs/robots npx nuxt module add @nuxtjs/sitemap npx nuxt module add nuxt-og-image
---
| Module | Version | Purpose | |--------|---------|---------| | **@nuxtjs/seo** | v5.1.0 | Primary SEO module (installs all 8 as bundle) | | **@nuxtjs/robots** | v6.0.6 | Manages robots.txt and bot detection | | **@nuxtjs/sitemap** | v8.0.11 | Generates XML sitemaps with advanced features | | **nuxt-og-image** | v6.3.1 | Creates Open Graph images via Vue templates | | **nuxt-schema-org** | v6.0.4 | Builds Schema.org structured data graphs | | **nuxt-link-checker** | v5.0.6 | Finds and fixes broken links with ESLint integration | | **nuxt-seo-utils** | v8.1.4 | SEO utilities, share links, favicons, inline minification | | **nuxt-site-config** | v4.0.7 | Centralized site configuration management |
**Standalone (MIT)**: `nuxt-ai-ready` (llms.txt), `nuxt-skew-protection` (version safety) **Pro (Paid)**: Nuxt SEO Pro — Search Console, Core Web Vitals, MCP server
**For detailed module docs:** Load `references/module-details.md`
---
---
**Error**: `/sitemap.xml` returns 404 | **Fix**: Set `site.url` in nuxt.config.ts
**Error**: `/robots.txt` not accessible | **Fix**: Install `@nuxtjs/robots` and set `site.url`
**Error**: `/__og-image__/og.png` returns error | **Fix**: Use Satori-compatible CSS or switch to Chromium renderer
**Error**: Invalid JSON-LD | **Fix**: Follow official Schema.org types, validate with Google Rich Results Test
**Error**: 404 on internal links | **Fix**: Enable `nuxt-link-checker` with ESLint rules during development
**Error**: Multiple meta tags with same property | **Fix**: Let modules handle meta tags automatically
**Error**: Wrong canonical URL | **Fix**: Configure `site.url` and `trailingSlash` correctly
**Error**: Sitemap index XML malformed | **Fix**: Use `chunkSize` option to split large sitemaps
**Error**: Staging indexed by Google | **Fix**: `disallow: process.env.NUXT_PUBLIC_ENV === 'staging' ? ['/'] : []`
**Error**: No preview on social media | **Fix**: Use `defineOgImage()` on all important pages
**Error**: Site title/og:site_name missing | **Fix**: Set `site.name` in nuxt.config.ts or `NUXT_SITE_NAME` env var **Ref**: https://nuxtseo.com/docs/nuxt-seo/migration-guide/v4-to-v5
**Error**: `useSiteCo
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
100+ animated React components (Aceternity UI) for Next.js with Tailwind. Use for hero sections, parallax, 3D effects, or encountering animation, shadcn CLI…
Secure API authentication with JWT, OAuth 2.0, API keys. Use for authentication systems, third-party integrations, service-to-service communication, or…
Creates comprehensive API changelogs documenting breaking changes, deprecations, and migration strategies for API consumers. Use when managing API versions,…
Verifies API contracts between services using consumer-driven contracts, schema validation, and tools like Pact. Use when testing microservices communication,…
Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight developers. Use when designing new APIs,…
Implements standardized API error responses with proper status codes, logging, and user-friendly messages. Use when building production APIs, implementing…