LaTeX Cover Letter Generator

VerifiedSafe

Generates a professional LaTeX cover letter based on the current file context and resume templates. It helps when applying to jobs by automating the creation of a tailored cover letter.

Sby Skills Guide Bot
ContentIntermediate
906/2/2026
Claude Code
#cover-letter#latex#job-application#resume

Recommended for

Our review

Generates a professional, concise LaTeX cover letter based on the currently opened file context and available resume templates.

Strengths

  • Automates personalized cover letter creation from a job description and existing resumes
  • Uses LaTeX for a polished, professional output
  • Asks the user for specific points to emphasize, tailoring the letter

Limitations

  • Requires the active file to be named 'job_descriptions.md'
  • Depends on resume templates in './Resumes/' directory
  • LaTeX output may need separate compilation
When to use it

When you have a job description file open and a LaTeX resume ready, and need a tailored cover letter quickly.

When not to use it

When no job description file is open or if you prefer manually writing the letter without format constraints.

Security analysis

Safe
Quality score85/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.

No concerns found

Examples

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}
Related skills