Création de contenu Astro/Starlight MDX

VérifiéSûr

Aide à créer des pages de contenu MDX pour des projets Astro/Starlight. Il guide l'utilisateur pour clarifier le message principal de l'article, choisir une catégorie (tech ou vie), configurer le frontmatter et les entrées de la barre latérale, et suivre des directives de contenu pour éviter un style trop artificiel. Utile pour ajouter des articles de blog ou des articles techniques à un site de documentation Starlight.

Spar Skills Guide Bot
ContenuIntermédiaire
5002/06/2026
Claude Code
#astro#starlight#mdx#blogging#content-creation

Recommandé pour

Notre avis

Crée des pages de contenu MDX pour un site Astro/Starlight en suivant un processus structuré incluant clarification, catégorisation et rédaction anti-IA.

Points forts

  • Processus en plusieurs étapes qui clarifie le message central avant la rédaction.
  • Intègre une phase de 'mur' pour éviter les contenus génériques.
  • Guide détaillé pour la structure de fichiers, le frontmatter et la mise à jour de la barre latérale.
  • Consignes précises pour éviter les écritures ressemblant à de l'IA.

Limites

  • Spécifique à Astro/Starlight et à une arborescence de dossiers particulière.
  • Nécessite que l'utilisateur fournisse des informations détaillées (catégorie, slug, etc.).
  • Ne gère pas la publication ou le déploiement.
Quand l'utiliser

Utilisez ce skill lorsque vous devez ajouter un article ou une page MDX structurée à un projet Astro/Starlight existant.

Quand l'éviter

Évitez ce skill si le site n'utilise pas Astro/Starlight ou si vous voulez simplement générer du contenu rapidement sans interaction ni structure précise.

Analyse de sécurité

Sûr
Score qualité90/100

The skill provides guidance for creating Astro/Starlight MDX content pages and updating a sidebar configuration file. It does not involve execution of any commands that could be destructive or exfiltrate data; the suggested npm commands are standard development tasks and are only recommended, not automatically executed.

Aucun point d'attention détecté

Exemples

Write a new article
Write a new article about my experience learning Rust, put it in the Tech category.
Add an MDX page
Add an MDX page about my hiking trip in the Life category.
Create a blog post
Create a blog post on the benefits of static site generators, title it 'Why I Love Astro'.

name: astro-content description: Create Astro/Starlight MDX content pages. Use when the user says "write a new article", "add a blog post", "create content in Tech/Life category", or "add an MDX page".

astro-content

Create Astro/Starlight MDX content pages.

Trigger Examples

  • "Write a new article"
  • "Add an article to Tech category"
  • "Create a blog post"
  • "Add an MDX page"

Directory Structure

app/src/content/docs/
├── about-me/          # About Me section
│   └── overview.mdx
├── tech/              # Tech articles
│   └── *.mdx
└── life/              # Life articles
    └── *.mdx

Execution Flow

0. Wall-Hitting Phase (Before Writing)

Before creating files, have a conversation with the user to clarify the article's direction:

  1. Clarify the core message

    • Ask: "What do you want readers to take away?"
    • Identify the single most important point
  2. Dig into experiences and episodes

    • Ask for concrete stories, failures, and learnings
    • Extract raw, unpolished details (these become authentic content)
  3. Decide writing style early

    • Japanese: Confirm「だ・である調」vs「ですます調」before writing
    • English: Confirm formal vs conversational tone
  4. Verify title-content alignment

    • Ensure the title matches the core message
    • If the content evolves, revisit the title

1. Confirm Category

Ask user for category:

| Category | Purpose | |----------|---------| | tech | Technical articles (Cloud, AI, DevOps, Architecture, etc.) | | life | Lifestyle, hobbies, journals, etc. |

2. Gather Article Information

Confirm the following:

  • Title: Article title
  • Description: One-sentence summary
  • Slug: URL path (e.g., tech/genkit-intro/tech/genkit-intro/)
  • Draft: Whether it's a draft (default: false)

3. Create MDX File

File path: app/src/content/docs/{category}/{slug}.mdx

Frontmatter template:

---
title: <title>
description: <description>
draft: true  # Only if draft
---

With hero image:

---
title: <title>
description: <description>
hero:
  tagline: <subtitle>
  image:
    alt: <image description>
    file: ../../../assets/<image-file>
---

4. Update sidebar.ts

Add new article to app/src/sidebar.ts:

{
  label: "Tech",
  items: [
    { label: "<Article Title>", slug: "tech/<slug>" },
  ],
},

5. Assets (Optional)

If using images:

  1. Place image in app/src/assets/
  2. Import and use in MDX:
import myImage from '../../../assets/my-image.png';

<img src={myImage.src} alt="Description" style="..." />

Content Guidelines

  1. Language: English or Japanese (follow user preference)
  2. Markdown: Use GitHub Flavored Markdown
  3. Headings: Start with ## (# is auto-generated from title by Starlight)
  4. Lists: Use bullet points for readability
  5. Code blocks: Always specify language (typescript, bash, etc.)
  6. Emoji: Use sparingly (only when user explicitly requests)

Avoiding AI-like Writing

Common patterns that make articles feel "AI-generated" — avoid these:

Headings

  • Avoid: 「転機:〜」「結論:〜」「まとめ」 (feels formulaic)
  • Better: Simple, direct headings that flow naturally from content

Structure

  • Avoid: Overly organized tables summarizing points (feels forced)
  • Better: Let the narrative carry the message; tables only when genuinely helpful

Introductions

  • Avoid: Starting with a dialogue or rhetorical question that feels staged
  • Better: Jump into the topic directly or share a brief personal context

Conclusions

  • Avoid: Abrupt transition to "## 結論" with bullet-point summaries
  • Better: Use a horizontal rule (---) and let the closing flow naturally from the content

Tone

  • Avoid: Overly balanced statements ("〜かもしれない" everywhere)
  • Better: Take a stance when you have conviction; acknowledge uncertainty honestly when you don't

Key principle

If a section feels "too neat" or "too organized," it probably needs more raw, human detail. Ask the user for specific episodes, failures, or emotions to make it authentic.

Post-Creation Verification

After creation, suggest:

cd app && npm run build && npm run lint && npm run typecheck

Verify build succeeds.

Skills similaires