Générateur de Lettre de Motivation LaTeX

VérifiéSûr

Génère une lettre de motivation professionnelle en LaTeX à partir du contexte du fichier actif et des modèles de CV. Elle aide lors de candidatures en automatisant la création d'une lettre personnalisée.

Spar Skills Guide Bot
ContenuIntermédiaire
8002/06/2026
Claude Code
#cover-letter#latex#job-application#resume

Recommandé pour

Notre avis

Génère une lettre de motivation professionnelle et concise au format LaTeX en utilisant le contexte du fichier ouvert et les modèles de CV disponibles.

Points forts

  • Automatise la création de lettres de motivation personnalisées à partir d'une description de poste et de CV existants
  • Utilise LaTeX pour un rendu soigné et professionnel
  • Demande à l'utilisateur les points forts à mettre en avant pour adapter la lettre

Limites

  • Nécessite que le fichier actif soit nommé 'job_descriptions.md'
  • Dépend de la présence de modèles de CV dans un dossier './Resumes/'
  • La sortie LaTeX peut nécessiter une compilation séparée
Quand l'utiliser

Lorsque vous avez une description de poste et un CV LaTeX prêts, et que vous souhaitez générer rapidement une lettre de motivation adaptée.

Quand l'éviter

Si vous n'avez pas de fichier de description de poste ouvert ou si vous préférez rédiger votre lettre manuellement sans contrainte de format.

Analyse de sécurité

Sûr
Score qualité85/100

The skill only reads files within the project (job description and resume templates) and writes a new .tex file. It uses safe tools (Read, Write, AskUserQuestion) and has no network access, code execution, or data exfiltration.

Aucun point d'attention détecté

Exemples

Generate cover letter from job description
Generate a cover letter for this job description using my resume.
Create LaTeX cover letter
Create a LaTeX cover letter based on the current job posting and my resume in ./Resumes/.

name: cover-letter description: Generates a concise LaTeX cover letter based on the currently opened file context. allowed-tools: [Read, Write, AskUserQuestion]

Cover Letter Generator

This skill generates a professional, concise cover letter in LaTeX format based on the context from the currently opened file in the editor.

Instructions

When this skill is invoked:

  1. Read the context: Look at the user's currently active file, the active file should be named as job_descriptions.md. This file contains the company and job information that you will need to generate the cover-letter.

  2. Read resume templates: Look for the Resume files in ./Resumes/, glob them all, and:

    • Search for common resume file patterns: *.tex
    • Read available resume templates to extract:
      • Personal information (name, contact details, email, phone)
      • Professional summary or objective
      • Key skills and technical competencies
      • Work experience and achievements
      • Education background
    • If multiple resume templates exist, prefer .tex files as they're easier to parse
  3. Gather additional information: Ask the user for:

    • Company folder name (for organizing the output)
    • Job ID or position identifier
    • Any specific points they want to emphasize beyond what's in the resume
    • Which skills or experiences to highlight for this particular position
  4. Generate the cover letter:

    • Keep it concise (aim for 3-4 paragraphs maximum), below 1 page.
    • Use a professional tone
    • Use the personal information extracted from the resume templates
    • Highlight relevant skills and experience based on both the job context and resume
    • Use the LaTeX letter document class or a modern CV template format
    • Include standard sections: opening, body paragraphs, and closing
    • Tailor the content to match the job description from the opened file
  5. File naming: Save the cover letter as {folder}-{jobID}-cv.tex where:

    • {folder} is the company/organization folder name provided by the user
    • {jobID} is the job identifier provided by the user
    • Example: acme-SWE2024-cv.tex
    • Save in the current working directory or a subdirectory specified by the user
  6. LaTeX Format: Use a clean, professional LaTeX format. Include:

    • Proper document class and packages
    • Contact information header
    • Date
    • Recipient address (if available)
    • Professional opening and closing
    • Well-formatted paragraphs

Example Output Structure

\documentclass[11pt]{letter}
\usepackage[margin=1in]{geometry}
\usepackage{hyperref}

\signature{Your Name}
\address{Your Address \\ City, State ZIP \\ Email \\ Phone}

\begin{document}

\begin{letter}{Hiring Manager \\ Company Name \\ Company Address}

\opening{Dear Hiring Manager,}

[Concise paragraph expressing interest and highlighting key qualifications]

[Optional: Brief paragraph demonstrating knowledge of the company and fit]

[Closing paragraph with call to action]

\closing{Sincerely,}

\end{letter}
\end{document}
Skills similaires