Skip to main content

Create a master CV Google Sheet from uploaded CVs with easybits

Workflow preview

Workflow preview
100%
Create a master CV Google Sheet from uploaded CVs with easybits preview
Open on n8n.io

1. Workflow Overview

What This Workflow Does Upload your CV as a PDF and instantly get a structured "Master CV" Google Sheet – every experience, education entry, skill, and contact detail extracted into the right tab. ...

Best for

  • Document Extraction automation workflows
  • AI Summarization automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

n8n-nodes-base.formtrigger, n8n-nodes-base.splitout, n8n-nodes-base.googlesheets, n8n-nodes-base.code, @easybits/n8n-nodes-extractor.easybitsextractor, n8n-nodes-base.merge, n8n-nodes-base.form, n8n-nodes-base.stickynote

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Felix.

Original n8n.io source

1.1 Workflow description

Title
Create a master CV Google Sheet from uploaded CVs with easybits
Workflow name
Create a master CV Google Sheet from uploaded CVs with easybits

What This Workflow Does

Upload your CV as a PDF and instantly get a structured "Master CV" Google Sheet – every experience, education entry, skill, and contact detail extracted into the right tab. This gives you a clean personal CV database you can reuse across other workflows (job tailoring, application tracking, skills gap analysis).

How It Works

  1. Upload – Drop your CV PDF into the n8n web form
  2. Extract – easybits Extractor pulls structured data (experiences, education, skills, summary)
  3. Fan out – A Code node splits the response into rows for each sheet tab
  4. Append – Four parallel branches write to the four tabs of your Master CV sheet
  5. Done – A completion screen confirms what was imported

Setup Guide

1. Prepare Your Master CV Google Sheet

Create a Google Sheet named Master CV with four tabs:

  • Master CV – columns: role, company, dates, bullets, skills
  • Education – columns: degree, institution, dates, details
  • Skills – single column: skill
  • Summary – columns: full_name, email, linkedin_url, location, summary, languages, links

Leave all tabs empty below the headers – the workflow fills them.

2. Install & Connect the easybits Extractor

The easybits Extractor is a verified n8n community node. On n8n Cloud it's available out of the box. On self-hosted n8n, install it via Settings → Community Nodes → enter @easybits/n8n-nodes-extractor.

Sign up for a free account at easybits.tech to get an API key. Open the easybits: Extract CV node in this workflow and connect your credential.

3. Configure the Extraction Pipeline

The Extractor node uses 10 fields to pull structured data from the CV. Paste each description into the corresponding field's description box in the Extractor node:

full_name (string) Candidate's full name as it appears at the top of the CV. Null if not present.

email (string) Email address. Null if not present.

linkedin_url (string) Full LinkedIn profile URL. Null if not present.

location (string) Location as written (e.g., "Berlin, Germany"). Null if not present.

summary (string) Personal summary or "about me" paragraph. Return full text as written, do not paraphrase. Null if no summary section.

experiences (array) Each work experience as an object: role, company, dates (range as written), bullets (array, one per bullet point), skills (array of techs/tools used in this specific role). Preserve original wording of bullets – do not summarize. List in CV order.

education (array) Each entry as an object: degree, institution, dates, details (thesis, GPA, honors – null if none). Empty array if no education section.

skills (array) Flat list of all technical skills, tools, frameworks, methodologies, AND certifications listed anywhere in the CV. Each as a short noun phrase. Deduplicate case-insensitively. Exclude soft skills like "communication".

languages (array) Spoken/written languages as objects: language, proficiency (as written, e.g., "C1", "fluent"). Empty array if none.

links (array) Professional URLs other than LinkedIn (GitHub, portfolio, personal site) as objects: label, url. Empty array if none. Do not include LinkedIn here.

The 10-field cap matches the easybits free plan, so anyone can run this workflow as-is.

4. Connect Google Sheets

Open each of the four append nodes (Master CV, Education, Skills, Summary) and connect your Google Sheets credential. Replace the placeholder document ID with your Master CV sheet's ID.

5. Activate & Upload

Set the workflow to active, copy the form URL, and upload your CV. Review the four tabs after – minor cleanup is normal, especially for two-column or designer CV layouts.


🔧 Note on the Fan-out Code Node

The easybits Extractor wraps its response in a data object, so the Fan-out node reads from $input.first().json.data. The toArray() helper inside the node also handles cases where array fields come back as JSON-encoded strings – making the workflow robust across different Extractor response shapes.

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - On form submission

Type / Role
n8n-nodes-base.formTrigger - formTrigger
Config choices
Version 2.5

Block 2 - Split: Experiences

Type / Role
n8n-nodes-base.splitOut - splitOut
Config choices
Version 1

Block 3 - Append: Experiences

Type / Role
n8n-nodes-base.googleSheets - googleSheets
Config choices
Version 4.7

Block 4 - Split: Education

Type / Role
n8n-nodes-base.splitOut - splitOut
Config choices
Version 1

Block 5 - Append: Education

Type / Role
n8n-nodes-base.googleSheets - googleSheets
Config choices
Version 4.7

Block 6 - Split: Skills

Type / Role
n8n-nodes-base.splitOut - splitOut
Config choices
Version 1

Block 7 - Append: Skills

Type / Role
n8n-nodes-base.googleSheets - googleSheets
Config choices
Version 4.7

Block 8 - Append: Summary

Type / Role
n8n-nodes-base.googleSheets - googleSheets
Config choices
Version 4.7

Block 9 - Fan-out

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 10 - easybits: Extract CV

Type / Role
@easybits/n8n-nodes-extractor.easybitsExtractor - easybitsExtractor
Config choices
Version 2

Block 11 - Wait for All Branches

Type / Role
n8n-nodes-base.merge - merge
Config choices
Version 3.2

Block 12 - Show Completion Screen

Type / Role
n8n-nodes-base.form - form
Config choices
Version 2.5

Block 13 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 14 - Sticky Note1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 15 - Sticky Note2

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 16 - Sticky Note3

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 17 - Sticky Note4

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 18 - Sticky Note5

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 19 - Sticky Note6

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

3. Summary Table

Workflow Create a master CV Google Sheet from uploaded CVs with easybits
Complexity advanced
Nodes 19
Categories Document Extraction, AI Summarization
Author Felix
Published 07 May 2026

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/15528/15528.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Create a master CV Google Sheet from uploaded CVs with easybits do?

What This Workflow Does Upload your CV as a PDF and instantly get a structured "Master CV" Google Sheet – every experience, education entry, skill, and contact detail extracted into the right tab. ...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Document Extraction, AI Summarization use case.