fixing-metadata
ウェブページのメタデータを確認・修正
SEOとソーシャル共有のために、ウェブページが正しく完全なメタデータを持っていることを確認します。違反、重複、不足しているタグを特定し、検索表示とソーシャルカードのプレビューを改善するための具体的な修正案を提示します。
Télécharger le ZIP du skill
Importer dans Claude
Allez dans Paramètres → Capacités → Skills → Importer un skill
Activez et commencez à utiliser
Tester
Utilisation de "fixing-metadata". Review metadata in page.tsx
Résultat attendu:
- 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
Utilisation de "fixing-metadata". Check Open Graph setup for blog post page
Résultat attendu:
- 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
Audit de sécurité
SûrStatic 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.
Problèmes à risque moyen (1)
Problèmes à risque faible (2)
Score de qualité
Ce que vous pouvez construire
新しいマーケティングページのSEO監査
公開前に、新しく作成されたマーケティングページのタイトル、説明、正規URL、ソーシャル共有タグを含む完全なメタデータを確認
重複メタデータの問題を修正
検索エンジンやソーシャルプラットフォームを混乱させる、競合するメタデータシステムや重複タグを特定して解決
構造化データを正しく実装
JSON-LD構造化データブロックを検証し、架空の評価やレビューではなく、ページコンテンツを正確に表現していることを確認
Essayez ces prompts
/fixing-metadata src/app/layout.tsx
/fixing-metadata
このコンポーネントのOpen GraphとTwitterカードのメタデータを確認し、より良いソーシャル共有プレビューのための改善案を提案
メタデータ設定を確認し、重複する正規タグ、誤ったrobotsディレクティブ、インデックスされるべきnoindexページを特定
Bonnes pratiques
- フレームワークのメタデータAPIを使用して、複数のシステムを混在させずにページごとに1箇所でメタデータを定義する
- 本番公開前に、実際のURLでプラットフォームのデバッグツールを使用してソーシャルカードのプレビューを検証する
- 可能な限りすべてのタグを最適化するのではなく、メタデータを最小限に保ち、実際のページコンテンツに集中させる
Éviter
- react-helmetとNext.jsメタデータAPIなど、複数のシステムを通じて重複するタイトルや説明タグを追加する
- ページ読み込みやビルドごとに変化する動的またはランダムな値をメタデータで使用する
- 実際のページに存在しない評価、レビュー、価格の構造化データを架空に作成する