Skip to main content

Build styled CV documents from a single YAML source.

Project description

resumake

CI Python 3.11+ License: MIT

Build styled CV documents from a single YAML source.

resumake turns a cv.yaml file into polished Word (.docx) documents with a two-column layout, photo, icons, and consistent theming. Translate to any language, tailor for a specific job, generate a cover letter, or export to Markdown/HTML/JSON — all from the command line.

resumake demo

Quickstart

# Install
uv tool install resumakeai

# Scaffold a new project
resumake init my-cv
cd my-cv

# Edit cv.yaml with your information, then build
resumake build --lang en

Installation

With uv (recommended):

uv tool install resumakeai                      # Core (YAML -> Word)
uv tool install resumakeai --with anthropic     # + AI (Anthropic Claude)
uv tool install resumakeai --with openai        # + AI (OpenAI / compatible)
uv tool install "resumakeai[all]"               # Everything

With pip:

pip install resumakeai              # Core
pip install "resumakeai[anthropic]" # + Anthropic Claude
pip install "resumakeai[openai]"    # + OpenAI / compatible
pip install "resumakeai[all]"       # Everything

Optional extras

Extra Packages Enables
anthropic anthropic AI features via Anthropic Claude
openai openai AI features via OpenAI (or any compatible API)
pdf docx2pdf PDF export via --pdf (DOCX-based)
weasyprint weasyprint Direct PDF export from HTML (no Word needed)
linkedin pdfplumber LinkedIn PDF profile import
watch watchdog Auto-rebuild via --watch and live preview
all All of the above Everything

Features

  • YAML-first — single source of truth for all your CV data
  • Styled Word output — two-column layout with sidebar, photo, icons, clickable links, and professional typography
  • Themes — six built-in themes (classic, minimal, modern, single-column, academic, compact) or bring your own via YAML
  • Template variants — two-column (default), single-column, academic (publications first), and compact layouts
  • Custom sections — define arbitrary sections (awards, patents, projects) in cv.yaml as top-level lists
  • Multilingual — translate to any language via AI, with per-language caching and auto-invalidation
  • Tailor — reorder and emphasize experience for a specific job description, with batch mode
  • Cover letter — AI-generated cover letter matched to a job description
  • Bio — generate a condensed one-pager bio document
  • Content suggestions — AI-powered bullet improvements and CV optimization advice
  • ATS keyword optimization — keyword match scoring against job descriptions
  • Export — convert to Markdown, HTML, JSON, ATS-friendly plain text, or JSON Resume
  • Import — import from JSON Resume or LinkedIn PDF exports
  • Preview — instant HTML preview in your browser, with live auto-reload
  • Diff — compare two CV YAML files side by side
  • Validate — check your YAML against the schema before building, with photo validation
  • Config file — persistent build defaults via .resumakerc.yaml
  • Watch mode — auto-rebuild on file changes
  • PDF export — via WeasyPrint (HTML-based) or docx2pdf (Word-based)
  • Web UI — interactive browser-based editor with live preview, AI tools, import, and LLM settings (resumake web)
  • Offline by default — core build requires no API keys or network access

Commands

resumake build

Build CV documents from YAML source.

resumake build                        # English only (default)
resumake build --lang en,de           # English + German
resumake build --lang fr              # French (any language code works)
resumake build --lang en,fr,de        # Multiple languages at once
resumake build --theme minimal        # Use a different theme
resumake build --pdf                  # Also generate PDF
resumake build --pdf --pdf-engine weasyprint  # PDF via WeasyPrint (no Word needed)
resumake build --no-open              # Don't auto-open the files
resumake build --watch                # Auto-rebuild on changes
resumake build --cache                # Reuse cached translations (default: always re-translate)

resumake tailor

Produce a tailored CV variant for a specific job description. Requires AI.

resumake tailor job-description.txt
resumake tailor job-description.txt --lang de --pdf
resumake tailor --batch jobs/         # Batch: one tailored CV per .txt/.md file in directory

resumake cover

Generate a cover letter matching your CV to a job description. Requires AI.

resumake cover job-description.txt
resumake cover job-description.txt --lang fr --pdf --theme modern

resumake bio

Generate a condensed one-pager bio document.

resumake bio                          # Uses AI if available, else deterministic
resumake bio --lang de --pdf

resumake export

Export your CV to Markdown, HTML, JSON, or ATS-friendly plain text.

resumake export md                    # Markdown
resumake export html                  # Styled, themed HTML page
resumake export json                  # Raw JSON
resumake export txt                   # ATS-friendly plain text
resumake export jsonresume            # JSON Resume format
resumake export md -o resume.md       # Custom output path

resumake import

Import a CV from an external format.

resumake import jsonresume resume.json          # From JSON Resume
resumake import jsonresume resume.json -o cv.yaml
resumake import linkedin profile.pdf            # From LinkedIn PDF export (requires AI)

resumake suggest

AI-powered CV content improvement suggestions. Requires AI.

resumake suggest
resumake suggest --source custom-cv.yaml

resumake ats

ATS keyword match analysis between your CV and a job description. Requires AI.

resumake ats job-description.txt
resumake ats job-description.txt --source custom-cv.yaml

resumake web

Launch an interactive web UI for editing and previewing your CV in the browser. Includes visual YAML editing, live preview, AI tools (tailor, cover letter, ATS, suggestions, bio), import, and LLM provider settings.

resumake web                          # Start on http://127.0.0.1:3000 (auto-opens browser)
resumake web --port 8080              # Custom port
resumake web --host 0.0.0.0           # Listen on all interfaces
resumake web --no-open                # Don't auto-open browser
resumake web my-cv/                   # Use a specific project directory

resumake preview

Generate an HTML preview and open it in your browser.

resumake preview                      # One-shot preview
resumake preview --theme modern       # With a specific theme
resumake preview --live               # Live-reloading server
resumake preview --live --port 3000   # Custom port

resumake diff

Compare two CV YAML files and show what changed.

resumake diff cv.yaml cv_tailored.yaml

resumake themes

List available built-in themes with color previews.

resumake themes

resumake validate

Check your CV YAML against the schema.

resumake validate

resumake init

Scaffold a new resumake project with an example CV and icons.

resumake init                         # In current directory
resumake init my-cv                   # In a new directory

Global options

resumake --version                    # Show version
resumake --help                       # Show help

Config File

Create a .resumakerc.yaml in your project directory (or ~/.resumakerc.yaml for global defaults) to avoid repeating CLI options:

lang: "en,de"
theme: "modern"
pdf: true
open: true
source: "cv.yaml"
watch: false

Project-level config overrides user-level. CLI flags always take priority over both.

CV YAML Structure

name: "Jane Doe"
title: "Senior Software Engineer"
photo: "profile.jpeg"

contact:
  address: "Berlin, Germany"
  phone: "+49 123 456 7890"
  email: "jane.doe@example.com"
  nationality: "German"

links:
  - label: "LinkedIn"
    url: "https://linkedin.com/in/janedoe"
  - label: "GitHub"
    url: "https://github.com/janedoe"

skills:
  leadership: ["Team Leadership", "Agile Coaching"]
  technical: ["Python", "TypeScript", "React"]
  languages:
    - name: "English"
      level: "fluent"     # native | fluent | professional | basic

profile: >
  Senior Software Engineer with 8+ years of experience...

experience:
  - title: "Senior Software Engineer"
    org: "TechCorp GmbH"
    start: "March 2021"
    end: "Present"
    description: "Leading backend development for a SaaS platform."
    bullets:
      - "Architected a microservices migration reducing deployment time by 60%"
    tech_stack: ["Python", "FastAPI", "PostgreSQL"]

education:
  - degree: "M.Sc. Computer Science"
    institution: "Technical University of Berlin"
    start: "2014"
    end: "2016"

Experience entries accept arbitrary extra fields (e.g. tech_stack, soft_skills, project_methodology) which are rendered as labeled metadata below the bullets.

Run resumake init to get a complete example with all supported sections including testimonials, certifications, publications, volunteering, and references.

Themes

resumake ships with three built-in themes:

Theme Sidebar Accent Fonts
classic (default) Dark navy #0F141F Teal #0AA8A7 Arial Narrow / Calibri
minimal Dark gray #2C2C2C Gray #555555 Helvetica
modern Deep purple #1A1A2E Red #E94560 Calibri
resumake build --theme modern
resumake themes                       # List all themes with color swatches

Custom themes

Create a theme.yaml in your project directory (auto-detected) or pass a path:

name: my-theme
colors:
  primary: "1A1A2E"       # Sidebar background
  accent: "E94560"        # Links, dividers, labels
  text_light: "EAEAEA"    # Sidebar text
  text_muted: "9A9ABF"    # Secondary text (dates, labels)
  text_body: "1A1A2E"     # Main body text
fonts:
  heading: "Calibri"
  body: "Calibri"
layout:
  sidebar_width_cm: 5.5
  main_width_cm: 12.5
sizes:
  name_pt: 15
  heading_pt: 13
  body_pt: 9

AI Features

AI-powered features work with multiple LLM providers. Install the one you prefer and set an API key:

Anthropic Claude:

uv tool install resumakeai --with anthropic
export ANTHROPIC_API_KEY=your-key-here

OpenAI:

uv tool install resumakeai --with openai
export OPENAI_API_KEY=your-key-here

OpenAI-compatible APIs (Ollama, LiteLLM, Azure, etc.):

export OPENAI_API_KEY=your-key
export OPENAI_BASE_URL=http://localhost:11434/v1   # e.g. Ollama
export OPENAI_MODEL=llama3                          # optional, defaults to gpt-4o

The provider is auto-detected from environment variables (checked in order: ANTHROPIC_API_KEY, OPENAI_API_KEY).

Feature Requires AI Fallback
Translation (--lang <code>) Yes Uses cached translation if available
Tailoring (resumake tailor) Yes No fallback — AI required
Cover letter (resumake cover) Yes No fallback — AI required
Bio (resumake bio) Optional Deterministic selection from CV data

Translations are cached per language (e.g. output/.cv_de_cache.yaml, output/.cv_fr_cache.yaml). The cache auto-invalidates when your source cv.yaml changes, and incomplete translations are automatically detected and re-triggered.

See PRIVACY.md for details on what data is sent and when.

Changelog

See CHANGELOG.md for release history.

Development

git clone https://github.com/fayssal-elmofatiche/resumake.git
cd resumake
uv sync --all-extras
uv run pytest
uv run ruff check .

See CONTRIBUTING.md for more details.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

resumakeai-0.9.0.tar.gz (105.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

resumakeai-0.9.0-py3-none-any.whl (105.1 kB view details)

Uploaded Python 3

File details

Details for the file resumakeai-0.9.0.tar.gz.

File metadata

  • Download URL: resumakeai-0.9.0.tar.gz
  • Upload date:
  • Size: 105.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for resumakeai-0.9.0.tar.gz
Algorithm Hash digest
SHA256 93ade177dab949b6ca6df2d32550cd320ead6503dcf2defc13e8332d2bd3bdf6
MD5 d326975d7f26c21e045cf9e758bf6649
BLAKE2b-256 dfb6185ded6c3a506875aeaa451036598a1376ff0acab0d513f5b513cfff7934

See more details on using hashes here.

Provenance

The following attestation bundles were made for resumakeai-0.9.0.tar.gz:

Publisher: publish.yml on fayssal-elmofatiche/resumake

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file resumakeai-0.9.0-py3-none-any.whl.

File metadata

  • Download URL: resumakeai-0.9.0-py3-none-any.whl
  • Upload date:
  • Size: 105.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for resumakeai-0.9.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9c733dd6a1af2945ce21a9400a436b355adf3f7f4509cd586b80915e7003c5ca
MD5 205dcaf949f8a36e11022453e8a50898
BLAKE2b-256 e90162e5f7e3f4b9fc06202549a44e395de319112e4029939aba168018f9d0c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for resumakeai-0.9.0-py3-none-any.whl:

Publisher: publish.yml on fayssal-elmofatiche/resumake

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page