Use Claude Code's New Auto Mode to Build a Candidate-Screening Workflow in n8n
Every time a job application comes in, someone has to read it, decide if it's worth a call, and either respond or let it sit. That manual triage takes time you don't have when you're hiring fast. This build gives you an automated pipeline: applications arrive, an AI scores each one against your criteria, strong matches ping your Slack channel instantly, and every applicant lands in a Google Sheet — all without you reading a single raw submission first.
Get Claude Code running on your machine
Claude Code is Anthropic's AI agent that runs inside your computer's file system — it reads, writes, and organises files for you in response to plain-English instructions. It is not a chat window in a browser; it works in a folder on your computer. You need a paid Claude plan (Pro at $20/month already includes it). Download the desktop app from claude.com/download, install it like any normal app, then open it and sign in with your Claude account. Once inside, click the Code tab to open a coding session.
Create a CLAUDE.md file that tells Claude about your job
CLAUDE.md is a plain text file you put in your project folder. Claude Code reads it automatically every time you start a session — think of it as a permanent sticky note that tells the AI what you are building and what the rules are. Create a new file called `CLAUDE.md` in your folder, then paste in the details of the role you are hiring for: job title, must-have skills, nice-to-haves, and any deal-breakers. This context shapes every scoring decision the AI node will make later.
Ask Claude Code to scaffold the n8n workflow JSON
Now comes the part that the new auto mode makes painless. In the old default mode, Claude Code would stop and ask your permission before writing each file — click approve, click approve, click approve. Auto mode replaces those interruptions with a built-in safety classifier that checks each action itself, so Claude can write your whole workflow file in one go. Just type your request in plain English. Claude will create a valid n8n workflow JSON file — a structured file that n8n can import directly, containing all the nodes and connections pre-wired.
Import the workflow into n8n
n8n is a visual automation tool — think of it as a flowchart builder where each box (called a node) does one job, and arrows connect them. You do not need to code anything; you just configure each box. Sign up for a free trial at n8n.io/cloud (takes under two minutes, no install needed). Once inside, you will see a blank canvas. Use the Import option to load the file Claude just wrote.
Connect your credentials (Webhook URL, Slack, Google Sheets)
Each node that talks to an outside service needs a credential — basically a password or API key that proves n8n is allowed to use that service on your behalf. You only set these up once; n8n saves them for future workflows. Click each node on the canvas to open its settings panel, then follow the in-app prompts to connect your accounts. The Webhook node gives you a unique URL you will paste into your application form.
Configure the AI Agent node's scoring prompt
The AI Agent node is the brain of the workflow. It receives the raw form submission and returns a structured score. Click the AI Agent node on the canvas to open it. Inside, you will see a System Prompt field — this is where you tell the AI what role it is playing and what to return. The node also has a Chat Model sub-slot where you connect an AI provider such as OpenAI or Anthropic's own API; click the small plus icon under Chat Model to add one.
or Anthropic · connects in one click
Test with a dummy application, then publish
n8n has a built-in test mode so you can try the whole workflow before real applicants see it. Click Test workflow at the top of the canvas — n8n listens for one incoming request on the Test URL. Submit a fake application to that URL (you can use a free tool like Hoppscotch or just fill in a test Typeform/Google Form you pointed at the webhook). Watch the data flow through each node in real time. When everything looks right, hit Publish in the top bar to switch to the Production URL and make it live.
What you get
You end up with a live recruiting pipeline: every job application is scored against your criteria automatically, strong matches (score 7+) ping your Slack channel within seconds, and every applicant — strong or weak — is logged to a Google Sheet you can review at any time. You wrote zero code; Claude Code wrote the workflow file and n8n ran it. Rough effort: ~2–3 hours; Claude Pro ($20/mo, includes Claude Code) + n8n Cloud free trial. Google Sheets and Slack are free. OpenAI API costs pennies per scored application..
Sources
-
claude.comAuto mode is now the default in Claude Code — Anthropic
-
docs.n8n.ioBuild an AI workflow in n8n — n8n Docs
-
docs.n8n.ioWebhook node — n8n Docs
-
docs.n8n.ioGoogle Sheets node — n8n Docs
-
docs.n8n.ioForm Trigger node — n8n Docs
-
neurohive.ioClaude Code: Complete Guide to Installation and Getting Started (2026)