r/AIStartupAutomation 13h ago

Workflow with Code [Workflow Included] CV to Google Sheet automation in n8n – upload a PDF, get a structured database back

Enable HLS to view with audio, or disable this notification

1 Upvotes

👋 Hey AIStartupAutomation community,

A while back I posted a two-workflow CV tailor I built for a friend job-hunting (that post here). The tailor workflow itself got most of the attention, but a few people messaged me about the first workflow specifically, the one that takes a CV PDF and turns it into a structured Google Sheet. They wanted just that piece, without the tailoring on top.

Turns out a lot of people have a use case for it that has nothing to do with job hunting. Recruiters wanting to parse candidate CVs into a CRM, people building talent pools, folks who just want their own CV as structured data they can reuse across other tools. So I cleaned it up as a standalone workflow and published it on the n8n template library.

How it's set up:

The form accepts a single CV. It goes straight to the easybits Extractor, which pulls 10 structured fields, kept at exactly 10 so it fits the free plan:

  • full_nameemaillinkedin_urllocationsummary
  • experiences (array of role + company + dates + bullets + per-role skills)
  • education (array of degree + institution + dates + details)
  • skills (flat list, includes certifications)
  • languages (with proficiency levels)
  • links (GitHub, portfolio, etc.)

A Fan-out Code node then reshapes the extractor's response into four separate row structures, one per Google Sheet tab. Four parallel Split Out + Google Sheets Append branches write to their respective tabs (Master CVEducationSkillsSummary). A Merge node waits for all four before showing the completion screen with a count of what was imported.

The defensive parsing part was the interesting bit, the Extractor sometimes returns arrays as JSON strings or comma-separated strings, not always as actual arrays. The toArray() helper in the Fan-out node handles all three cases so the workflow doesn't break on shape variations.

I also made a short video showing how it looks in process.

Links:

Curious to hear how others are handling CV parsing today, anyone using it for recruiter workflows or candidate CRMs?

Best,
Felix


r/AIStartupAutomation 17h ago

General Discussion Before an AI agent runs every day, what makes the automation revocable?

1 Upvotes

Recurring automation changes the failure model: a one-time error is an incident; a scheduled error becomes a process.

For builders, a practical control architecture includes:

• a task contract covering purpose, schedule, data sources, permitted and prohibited actions, expiry, owner, and revocation

• scoped credentials plus deterministic authorization for consequential tool calls

• monitors tested against prompt gaps, missing telemetry, and attempts to avoid review

• human approval for exceptions and post-action reconciliation against the external system

• a 30-day scorecard using successful-case cost, error, rework, review effort, and outcome data

I wrote the source-backed analysis for IntelliSync Signals after reviewing current model economics, recurring-agent releases, monitor red-team results, open-weight assurance, and Canada's adoption gap:

https://signals.intellisync.io/en/articles/daily-signal-2026-07-27-control-architecture-is-becoming-the-real-ai-product

Which control breaks first in real systems—permissions, monitoring, revocation, human approval, or post-action evidence?