AI-Powered CV Scanner with Google Sheets & Gemini
Overview
This workflow automates the initial screening of job applicants by combining a web form, AI-powered CV analysis, and Google Sheets. When a candidate submits their application (name, email, and CV PDF), the workflow instantly extracts the text from the PDF using Mistral OCR, then sends it to Google Gemini for evaluation against a predefined job description. The AI returns a qualification score (0.0 to 1.0) and a detailed explanation, which are then logged alongside the candidate's details in a Google Sheet. This eliminates manual CV review, speeds up your hiring pipeline, and ensures every applicant is evaluated consistently.
Workflow Steps
-
Application Form (Form Trigger) — No auth required. This node presents a custom-branded web form to collect the candidate's Full Name, Email, and CV (PDF upload). The form is styled with a dark, glassmorphism theme and includes animated backgrounds. Once submitted, the workflow triggers automatically.
-
Log Candidate Submission (Google Sheets) — OAuth2. Immediately after form submission, this node appends the candidate's name and email to the 'CVs' Google Sheet. This ensures the application is recorded even if the subsequent analysis steps fail.
-
Extract CV Text (Mistral AI) — API Key auth. This node takes the uploaded PDF file from the form and uses Mistral's OCR API to extract all text content from the CV. It dynamically selects the binary file uploaded in the previous step.
-
AI Qualification (LLM Chain) — This is the core analysis node. It uses a detailed prompt that includes:
- A system message defining the AI as a professional, objective hiring assistant.
- The full job description for a "Senior Frontend Developer" with core requirements and preferred qualifications.
- Clear evaluation logic: candidates missing core requirements cannot score above 0.6; meeting all core requirements yields at least 0.75; preferred qualifications add bonuses up to 1.0.
- The extracted CV text as context.
- An instruction to output raw JSON only.
-
Gemini 2.5 Flash Lite (Language Model) — API Key auth (Google AI Studio). This node provides the actual AI model (Google Gemini 2.5 Flash Lite) with a temperature of 0.4 for balanced, deterministic outputs. It powers the LLM Chain above.
-
JSON Output Parser (Output Parser) — This node ensures the AI's response is valid JSON with the exact schema:
qualificationRate(number) andexplanation(string). It prevents malformed responses from breaking downstream nodes. -
Add CV Analysis (Google Sheets) — OAuth2. After analysis, this node updates the candidate's row in the 'CVs' sheet by matching on the Email column. It writes the
qualificationRateandexplanationfrom the AI's output into the corresponding columns. -
Create 'CVs' Spreadsheet (Google Sheets) — OAuth2. This node runs once when the workflow is first triggered manually. It creates a new Google Sheet named 'CVs' with columns: FullName, Email, QualificationRate, QualificationDescription.
Setup Instructions
Prerequisites
- A Google account (for Google Sheets)
- A Mistral AI account (free tier available) — Get your API key here
- A Google AI Studio account — Create an API key here
Step-by-Step
- Google Sheets Credentials: In the three Google Sheets nodes, create or select an OAuth2 credential for Google Sheets. Grant access to create and edit spreadsheets.
- Mistral AI Credential: In the "Extract CV Text" node, create a new credential and paste your Mistral API key.
- Gemini Credential: In the "Gemini 2.5 Flash Lite" node, create a new credential and paste your Google AI Studio API key.
- Customize Job Description: Open the "AI Qualification" node and edit the
<job_requirements>section in the prompt to match your actual job posting. - Activate the Workflow: Toggle the workflow to "Active" status. The "Application Form" node will generate a public URL you can share with candidates.
- Test: Use the "Start Here" manual trigger to initialize the Google Sheet, then submit a test application via the form URL.
Use Cases & Variations
- Custom Job Roles: Replace the Senior Frontend Developer description with any role (e.g., Marketing Manager, Data Scientist, Sales Rep) by editing the prompt in the AI Qualification node.
- Different Storage: Replace Google Sheets with Airtable, Notion, or a database like PostgreSQL for storing applications and results.
- Multi-Round Screening: Add a Slack or email notification node to alert the hiring team when a candidate scores above a certain threshold (e.g., >0.8).
- Interview Scheduling: Connect the output to a Calendly or Google Calendar node to automatically invite high-scoring candidates for an interview.
- Batch Processing: Modify the trigger to accept a CSV upload of multiple CVs for bulk analysis.
- Enhanced Analysis: Add more output fields like "years of experience", "top skills", or "red flags" by updating the JSON schema in the Output Parser and the prompt.
Workflow JSON
{
"meta": {
"instanceId": "f230a542ff7e8110500e02e584e98cd66f8a922485dc0d875a2e022900b4e5da"
},
"nodes": [
{
"id": "821d52da-591f-44db-b218-ee3974855a05",
"cid": "Ikx1Y2FzIFBleXJpbiI",
"name": "Sticky Note - Create Spreadsheet1",
"type": "n8n-nodes-base.stickyNote",
"notes": "© 2025 Lucas Peyrin",
"creator": "Lucas Peyrin",
"position": [
832,
560
],
"parameters": {
"color": 7,
"width": 272,
"height": 272,
"content": "Initializes a new Google Sheet with columns for applicant data. Can be replaced with Airtable, Notion, etc."
},
"typeVersion": 1
},
{
"id": "72c7af0e-d8f8-4498-a849-b95c323a6cd6",
"cid": "Ikx1Y2FzIFBleXJpbiI",
"name": "Sticky Note - Append Row1",
"type": "n8n-nodes-base.stickyNote",
"notes": "© 2025 Lucas Peyrin",
"creator": "Lucas Peyrin",
"position": [
1520,
208
],
"parameters": {
"color": 7,
"width": 320,
"height": 288,
"content": "Adds the applicant's name and email to the Google Sheet right after they submit the form to have it logged even if the workflow fails."
},
"typeVersion": 1
},
{
"id": "b8076a35-fb6e-481d-9d92-3a95e9c3c732",
"cid": "Ikx1Y2FzIFBleXJpbiI",
"name": "Sticky Note - Extract Text1",
"type": "n8n-nodes-base.stickyNote",
"notes": "© 2025 Lucas Peyrin",
"creator": "Lucas Peyrin",
// ... truncated (copy to see full JSON)How to Import This Workflow
- 1Copy the workflow JSON above using the Copy Workflow JSON button.
- 2Open your n8n instance and go to Workflows.
- 3Click Import from JSON and paste the copied workflow.
Don't have an n8n instance? Start your free trial at n8nautomation.cloud
Related Templates
Daily Web Scraper and Extract Data to Google Sheets
High-level Summary This workflow automatically scrapes a public web page every morning at 8:00 AM and appends the extracted data (e.g., product title, price) to a Google Sheet. It creates a time-series dataset that you can chart or analyze, making it ideal for tracking competitor prices, job listings, product availability, or any recurring data from a static HTML page. Node-by-Node Walkthrough Every Morning (Schedule Trigger) — No auth - Runs the workflow daily at 8:00 AM using a cron expression . Fetch Page (HTTP Request) — No auth - Requests the target URL (currently set to ). It fetches the full HTML of the page. Retries up to 3 times with a 5-second wait between attempts. Extract Values (HTML) — No auth - Uses CSS selectors to extract structured data from the HTML. Configured to extract: - from the first element. - from elements matching the selector . Add Date Stamp (Code) — No auth - A JavaScript code node that maps each input item to an output object containing: - : today's date in YYYY-MM-DD format. - and : copied from the HTML extraction step. Append Row (Google Sheets) — OAuth2 (Google account) - Appends a new row to a Google Sheet (specified by and ). The columns are automatically mapped from the input data, so each row will contain Date, Title, and Price. Setup Instructions Google Sheets Credentials: You need a Google account and an OAuth2 credential in n8n. If you haven't already, create a Google Sheets credential in n8n by authorizing your Google account. Replace Placeholders: - In the Fetch Page node, change the URL to the actual web page you want to scrape. - In the Append Row node, set the to the ID of your Google Sheet (found in the sheet's URL). Customize CSS Selectors: Open the target page in your browser, right-click on the data you want to extract, and select “Inspect”. Copy the CSS selector for each element and update the Extract Values node accordingly. Test: Run the workflow manually once to verify that the data is extracted and written correctly. Activate: Turn on the workflow to run automatically every morning. Use Cases and Adaptations Price Monitoring: Track prices of a product on e-commerce sites over time. Job Listings: Scrape a job board for new postings (combined with a filter to avoid duplicates). News Headlines: Collect daily headlines from a news site into a spreadsheet. Product Availability: Check if an item is in stock and log the status. Variations: Add an Error Trigger workflow to notify you via Slack or email if a scrape fails. Use IF nodes to only append rows when the price has changed. Replace the HTTP Request with an API node if the source offers a JSON API. Add additional extraction fields (e.g., rating, description, URL). Note: Only scrape public pages, respect the site's , and keep the schedule to once per day to avoid overloading the server.
Amazon Review Monitoring with Sentiment & Telegram Alerts
High-Level Summary This workflow automatically monitors Amazon product reviews on a scheduled basis. It reads product URLs from a Google Sheet, scrapes the latest reviews using Decodo, performs sentiment analysis and summarization using Google Gemini AI, logs results back to a sheet for historical tracking, and sends a Telegram alert when negative sentiment is detected. It's ideal for e-commerce sellers, product managers, and reputation teams who want hands-off, daily review monitoring with instant notifications. Node-by-Node Walkthrough Schedule Trigger (No auth) — Runs the workflow daily (interval rule, no specific time set; can be adjusted to e.g. 9 AM). Fetches the list of product URLs from a Google Sheet. Get row(s) in sheet (OAuth2 — Google Sheets) — Reads all rows from the sheet named "list urls" in the document "decodo". Each row should contain a product URL in one column. Loop Over Items (No auth) — Splits the incoming list of URLs into batches of 5 (configurable via ). For each batch, the inner nodes (Decodo, Code, Sentiment Analyzer, Summarize, Store to Sheet) process one URL at a time. Decodo (API Key auth — Decodo service) — Scrapes Amazon product reviews for the given (passed from the sheet row). Returns structured JSON with reviewer name, rating, and review content. Code in JavaScript (No auth) — Transforms the raw Decodo output into a clean text block. Loops over the reviews array and formats each as , joined by double newlines. Also retrieves the original URL from the sheet node. Sentiment Analyzer (Uses Google Gemini Chat Model — API Key auth) — Analyzes the sentiment of the combined review text. The node is configured to read input from . Output includes a object with a (e.g. "positive", "negative", "neutral"). Google Gemini Chat Model (API Key auth — Google AI) — Provides the underlying language model for both the Sentiment Analyzer and Summarize Reviews nodes. Requires a valid Google AI API key. Summarize Reviews (Uses Google Gemini Chat Model — API Key auth) — Generates a concise summary of all reviews for the product using the Gemini model. The summary text is passed to the Telegram alert. Alert Group (API Key auth — Telegram Bot) — Sends a Telegram message to the chat ID (you must replace with your own chat ID). The message includes the date, sentiment category, product URL, and the generated summary. This acts as an alert (especially for negative sentiment, though all sentiments are sent). Store to Sheet (OAuth2 — Google Sheets) — Appends a new row to the sheet "user review aggregations" in the document "decodo". Columns stored: Url, Sentiment, and List Review (the cleaned review text). This builds a historical review database. Setup Instructions Google Sheets — Create two sheets in a Google Spreadsheet: one named "list urls" (with product URLs in column A) and another named "user review aggregations" (will be auto-populated). Grant n8n access via OAuth2 (Google account). Decodo — Sign up for a Decodo account and obtain an API key. Add the credentials in n8n under "Decodo API". Google Gemini — Enable the Generative Language API in Google Cloud, create an API key, and store it as a credential in n8n (type "Google AI"). Telegram — Create a bot via BotFather, get the bot token, and store it as a Telegram credential. Find your chat ID (e.g. by sending a message to @userinfobot) and update the field in the Alert Group node. Schedule — Adjust the Schedule Trigger to your preferred time (e.g. daily at 9 AM) by modifying the rule interval. Use Cases and Variations Multi-marketplace support — Replace Decodo with other review-scraping nodes (e.g. for eBay, Etsy) or use HTTP Request nodes with APIs. Slack instead of Telegram — Swap the Telegram node for a Slack node to send alerts to a channel. Advanced classification — Add a node to classify reviews by category (e.g., packaging, quality) using a custom prompt. Language translation — Insert a translation node before summarization to handle non-English reviews. Dashboard integration — Connect the output sheet to a BI tool like Google Data Studio for visual analytics.
Talk to Your Google Sheets Data Using OpenAI Chat Agent
This workflow transforms a Google Sheet into a live, conversational database. Using an AI agent powered by OpenAI's GPT-4.1-nano model, you can ask natural language questions about your spreadsheet data and receive accurate, context-aware answers — without writing any SQL or formulas. The agent can handle queries like total campaign spend, per-channel breakdowns, month-over-month trends, and cost-per-lead calculations. Workflow Steps Node-by-Node Breakdown Chat with Your Data (Chat Trigger) — This is the entry point of the workflow. It provides a chat interface (webhook) where users type their questions. No authentication is required to trigger the webhook; access can be secured at the workflow level. Memory (Buffer Window Memory) — Stores recent conversation history so the AI can reference previous exchanges. The buffer window keeps the last few messages to maintain context without excessive token use. No authentication required. OpenAI Chat Model (OpenAI GPT-4.1-nano) — The language model that processes user questions and generates answers. Uses API Key auth (you must provide an OpenAI API key). Parameters: model = , no additional options configured. Talk to Your Data (AI Agent) — The core agent that orchestrates the conversation. It receives user input, decides which tool to call (only the Google Sheets tool is available), and returns answers. Uses API Key auth (uses the same OpenAI credential as the model). Parameters include a system message: "Google Sheets Ask-… You are Ask-… Answer questions using Google Sheets ONLY via the tool below. Be precise and conservative. There is only one dataset. Don't ask what dataset it is. Use the data tool to answer the question." Analyze Data (Google Sheets Tool) — The tool the agent calls to read spreadsheet data. Uses OAuth2 authentication (Google Sheets). Parameters: document ID = ("Sample Marketing Data - n8n"), sheet name = "Data" (gid: 365710158). No additional options set. Sticky Notes (Information Only) — Provide setup instructions and tips. Not executable nodes. Setup Instructions Before using this workflow, you need: OpenAI Account — Visit OpenAI API Keys to generate an API key. Make sure you have billing set up at OpenAI Billing and have credits available. Google Account — You need access to a Google Sheet. The sample uses a specific sheet, but you can point it to any sheet with a similar structure: first row = column headers, rows 2–100 = data. To configure: In the OpenAI Chat Model node, create an OpenAI credential with your API key. In the Analyze Data node, create a Google Sheets OAuth2 credential (select your Google account and authorize access). Update the Document ID and Sheet Name to match your own Google Sheet. Optionally update the system message in the Talk to Your Data agent if you want to change the assistant's personality or instructions. Use Cases and Variations This workflow is perfect for: Marketing teams wanting instant answers about campaign performance, spend, and ROI. Sales operations analyzing pipeline data, deal stages, or conversion metrics. Small business owners asking questions about inventory, sales, or customer data without learning SQL. Adaptations: Replace Google Sheets with another data source tool (e.g., Airtable, Notion, PostgreSQL, MySQL) by swapping the "Analyze Data" node. Add more tools to the agent (e.g., a web search tool, a calculator) to expand its capabilities. Change the model to GPT-4o or GPT-3.5-turbo for faster/cheaper responses. Add a Slack or Webhook trigger instead of the chat trigger for a different user interface.