/seo-audit
Run comprehensive SEO audit on current 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.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/seo-audit
Context preview
What this command does when you run it.
Run comprehensive SEO audit on current Nuxt project
Command definition
seo-audit.mdname: nuxt-seo:audit
description: Run comprehensive SEO audit on current Nuxt project
allowed-tools:
- Read
- Grep
- Glob
- Bash
SEO Audit Command
Run a comprehensive SEO audit on the current Nuxt project.
What This Command Does
1. Analyzes `nuxt.config.ts` for SEO module configuration 2. Checks all Vue pages for meta tag usage 3. Validates structured data implementation 4. Reviews sitemap and robots.txt configuration 5. Audits OG image setup 6. Identifies critical SEO issues
Audit Checklist
Configuration
- [ ] `site.url` is set in nuxt.config.ts
- [ ] `@nuxtjs/seo` or individual modules installed
- [ ] Site name and description configured
Meta Tags
- [ ] `useSeoMeta` used on pages
- [ ] Title tags present (not just defaults)
- [ ] Meta descriptions (150-160 chars)
- [ ] OG tags (ogTitle, ogDescription, ogImage)
- [ ] Twitter cards configured
Structured Data
- [ ] Organization/Person identity defined
- [ ] Article schema on blog posts
- [ ] Product schema on product pages
- [ ] Breadcrumbs implemented
Technical SEO
- [ ] Robots.txt configured correctly
- [ ] Sitemap generating properly
- [ ] No staging/admin routes indexed
- [ ] Proper rendering mode for SEO
Run the Audit
Start by reading the nuxt.config.ts file to understand the project's SEO setup:
# Check for SEO modules
grep -l "nuxt-seo\|nuxt-robots\|nuxt-sitemap" nuxt.config.ts
# Find SEO meta usage
grep -r "useSeoMeta\|useHead" --include="*.vue" | head -20
Then systematically check each area and report findings.
Expected Output
Generate a report with:
- Overall SEO score (0-100)
- Critical issues (blocking SEO)
- Warnings (should fix)
- Passed checks
- Specific recommendations with file locations
Read more
name: nuxt-seo:audit description: Run comprehensive SEO audit on current Nuxt project allowed-tools: - Read - Grep - Glob - Bash
SEO Audit Command
Run a comprehensive SEO audit on the current Nuxt project.
What This Command Does
1. Analyzes `nuxt.config.ts` for SEO module configuration 2. Checks all Vue pages for meta tag usage 3. Validates structured data implementation 4. Reviews sitemap and robots.txt configuration 5. Audits OG image setup 6. Identifies critical SEO issues
Audit Checklist
Configuration
- [ ] `site.url` is set in nuxt.config.ts
- [ ] `@nuxtjs/seo` or individual modules installed
- [ ] Site name and description configured
Meta Tags
- [ ] `useSeoMeta` used on pages
- [ ] Title tags present (not just defaults)
- [ ] Meta descriptions (150-160 chars)
- [ ] OG tags (ogTitle, ogDescription, ogImage)
- [ ] Twitter cards configured
Structured Data
- [ ] Organization/Person identity defined
- [ ] Article schema on blog posts
- [ ] Product schema on product pages
- [ ] Breadcrumbs implemented
Technical SEO
- [ ] Robots.txt configured correctly
- [ ] Sitemap generating properly
- [ ] No staging/admin routes indexed
- [ ] Proper rendering mode for SEO
Run the Audit
Start by reading the nuxt.config.ts file to understand the project's SEO setup:
# Check for SEO modules grep -l "nuxt-seo\|nuxt-robots\|nuxt-sitemap" nuxt.config.ts # Find SEO meta usage grep -r "useSeoMeta\|useHead" --include="*.vue" | head -20
Then systematically check each area and report findings.
Expected Output
Generate a report with:
- Overall SEO score (0-100)
- Critical issues (blocking SEO)
- Warnings (should fix)
- Passed checks
- Specific recommendations with file locations
142 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
Other commands on secondsky-claude-skills.
- /better-auth-add-plugin
Add a better-auth plugin to an existing project. Configures server and client plugins with proper imports.
Open command - /better-auth-setup
Interactive setup wizard for better-auth authentication. Guides through database, framework, OAuth providers, and plugin configuration.
Open command - /explain-error
Explain Better Auth error codes and provide solutions with code examples
Open command - /providers
Display Better Auth available authentication providers and their configuration
Open command - /bun-debug
Type of issue to debug (runtime, test, build, memory, performance)
Open command - /bun-deploy
Target platform (docker, cloudflare, vercel, fly, railway)
Open command

