fixing-metadata
Review and Fix Web Page Metadata
Ensure your web pages have correct, complete metadata for SEO and social sharing. Identifies violations, duplicates, and missing tags with specific fixes to improve search visibility and social card previews.
スキルZIPをダウンロード
Claudeでアップロード
設定 → 機能 → スキル → スキルをアップロードへ移動
オンにして利用開始
テストする
「fixing-metadata」を使用しています。 Review metadata in page.tsx
期待される結果:
- Violation: Missing meta description on line 15
- Why it matters: Search engines use descriptions for search result snippets
- Fix: Add export const metadata = { description: 'Your page description here' }
- Violation: Duplicate canonical tag at line 23
- Why it matters: Multiple canonicals confuse search engines about preferred URL
- Fix: Remove the manual <link rel="canonical"> and use the metadata API instead
「fixing-metadata」を使用しています。 Check Open Graph setup for blog post page
期待される結果:
- Found: og:title, og:description, and og:image are configured correctly
- Issue: og:url does not match the canonical URL
- Recommendation: Update og:url to match canonical for consistent social sharing
- Note: Twitter card type is summary_large_image which is appropriate for blog posts
セキュリティ監査
安全Static analysis flagged potential external commands and cryptographic patterns, but manual review confirms all findings are false positives. The skill contains only markdown documentation with no executable code. Backticks are used for markdown formatting of command examples, not shell execution. All flagged patterns are SEO terminology in context.
中リスクの問題 (1)
低リスクの問題 (2)
品質スコア
作れるもの
SEO Audit for New Marketing Pages
Review newly created marketing pages for complete metadata including titles, descriptions, canonical URLs, and social sharing tags before launch
Fix Duplicate Metadata Issues
Identify and resolve competing metadata systems or duplicate tags that confuse search engines and social platforms
Implement Structured Data Correctly
Validate JSON-LD structured data blocks to ensure they accurately represent page content without invented ratings or reviews
これらのプロンプトを試す
/fixing-metadata src/app/layout.tsx
/fixing-metadata
Review the Open Graph and Twitter card metadata in this component and suggest improvements for better social sharing previews
Check our metadata configuration for duplicate canonical tags, incorrect robots directives, and noindex pages that should be indexed
ベストプラクティス
- Define metadata in one place per page using your framework's metadata API rather than mixing systems
- Verify social card previews on actual URLs using platform debugging tools before going live
- Keep metadata minimal and focused on actual page content rather than optimizing for every possible tag
回避
- Adding duplicate title or description tags through multiple systems like react-helmet and Next.js metadata API simultaneously
- Using dynamic or random values in metadata that change on each page load or build
- Inventing structured data for ratings, reviews, or prices that do not exist on the actual page