Création de post blog Hugo SEO

VérifiéSûr

Crée un nouveau billet de blog Hugo sur dabase.com en générant un titre et une description optimisés pour le référencement. Interroge l'utilisateur sur le sujet, produit un titre et une description SEO, puis utilise Hugo pour créer le fichier et mettre à jour le frontmatter.

Spar Skills Guide Bot
ContenuDébutant
14002/06/2026
Claude Code
#blog#hugo#seo#content-creation

Recommandé pour

Notre avis

Ce skill assiste la création d'un article de blog Hugo avec un titre et une description optimisés pour le SEO.

Points forts

  • Génération automatique d'un titre accrocheur et d'une description SEO
  • Création du fichier via la commande Hugo, respectant la structure du projet
  • Validation du titre et de la description avant la création effective

Limites

  • Ne crée que le squelette de l'article, pas le contenu rédigé
  • Dépend de la présence de Hugo et de la structure 'content/blog/ANNEE/'
  • Le titre généré peut nécessiter des ajustements manuels
Quand l'utiliser

Lorsque vous devez rapidement ajouter un nouvel article à un blog Hugo et souhaitez un point de départ SEO-friendly.

Quand l'éviter

Si le blog n'utilise pas Hugo ou si vous préférez rédiger entièrement le contenu avant d'initialiser le fichier.

Analyse de sécurité

Sûr
Score qualité90/100

The skill only runs benign commands (date, hugo new) and does not involve any destructive, exfiltrating, or obfuscated actions. It lacks any risk of executing arbitrary code or bypassing safety measures.

Aucun point d'attention détecté

Exemples

New blog post about Hugo tips
I want to create a blog post about useful Hugo tips for beginners. Provide a title and description.
SEO-optimized blog post
Create a new blog post for my Hugo site about the benefits of static sites. Generate an SEO-friendly title and description, and ask me to confirm.
Quick blog post creation
Help me write a new blog post about my latest project. Use Hugo and ensure the frontmatter is updated.

name: blog description: Create a new blog post for dabase.com using Hugo with SEO-friendly title and description

Blog Post Creation Skill

You are helping the user create a new blog post for their Hugo-based blog at dabase.com.

Your Task

  1. Determine the current year:

    • Run: date +%Y to get the current year dynamically
  2. Ask the user for:

    • What is the blog post about? (Get a detailed description of the topic/content)
    • What title do they want? (Or offer to generate one based on the topic)
  3. Generate an SEO-friendly title and description:

    • Create a concise, compelling title if they don't provide one
    • Write a brief, SEO-optimized description (1-2 sentences) based on what the blog is about
    • Confirm both with the user before proceeding
  4. Generate the filename from the title:

    • Convert to lowercase
    • Replace spaces with hyphens
    • Remove special characters (keep only alphanumeric and hyphens)
    • Example: "My Great Post!" → "my-great-post.md"
  5. Create the blog post using Hugo:

    • Run: hugo new content/blog/YEAR/[filename].md (where YEAR is from step 1)
    • Hugo will automatically create the file with the correct frontmatter
  6. Update the frontmatter:

    • Read the newly created file
    • Update the title field with the confirmed title
    • Update the description field with the SEO-friendly description
    • Keep the auto-generated date field
  7. Confirm completion:

    • Show the file path: content/blog/YEAR/filename.md
    • Let them know they can start writing content
    • Suggest running hugo server to preview if needed

Important Notes

  • Use date +%Y to dynamically determine the current year
  • Use Hugo's hugo new command to bootstrap the post
  • Generate SEO-friendly titles and descriptions
  • Confirm the title and description with the user before creating the file
Skills similaires