Skip to content
Development
Command

/check-schema

Validate Schema.org structured data implementation in the Nuxt project

From plugin
secondsky-claude-skills
20466 skills46 agents66 commands
Install
$ npx -y skills add secondsky/claude-skills --agent claude-code

How 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/check-schema

Context preview

What this command does when you run it.

Validate Schema.org structured data implementation in the Nuxt project

Command definition

check-schema.md
name: nuxt-seo:check-schema
description: Validate Schema.org structured data implementation in the Nuxt project
allowed-tools:
  - Read
  - Grep
  - Glob
  - Bash

Check Schema Command

Validate Schema.org structured data implementation using nuxt-schema-org.

What This Command Does

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

Quick Actions

Check Configuration

# Check schema.org config
grep -A 20 "schemaOrg:" nuxt.config.ts

# Check identity configuration
grep -A 10 "identity:" nuxt.config.ts

Find Schema Usage

# 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

Common Schema Types

| 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 |

Validation Checklist

Global Identity

  • [ ] Organization or Person defined in config
  • [ ] Logo URL is absolute
  • [ ] Name matches site branding

Article Schema

  • [ ] headline (title)
  • [ ] datePublished
  • [ ] dateModified
  • [ ] author
  • [ ] image

Product Schema

  • [ ] name
  • [ ] image
  • [ ] description
  • [ ] offers (price, availability)
  • [ ] brand

FAQ Schema

  • [ ] Question text
  • [ ] Answer text
  • [ ] Proper nesting

Output Format

# 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

Run Check

Start by checking the global schema.org configuration, then scan all pages for schema usage.

Read more
Ships withsecondsky-claude-skills

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).

Get the whole plugin, auto-invoked