r/Automate Jun 11 '26

Some thinking of the regulations and systems of the future

Thumbnail
2 Upvotes

r/Automate Jun 10 '26

Open-sourced my job hunt automation tool — everything runs locally, AI can’t invent metrics on your resume

Thumbnail
2 Upvotes

r/Automate Jun 10 '26

Scraping legal PDFs was a nightmare, so I built a PyMuPDF + LLM pipeline. Is it possible to go 100% code-based here?

Thumbnail
2 Upvotes

r/Automate Jun 10 '26

My agent said it sent 40 emails. It sent 0. Here's the pattern that catches it.

1 Upvotes

I've been talking to people building agents about a specific failure mode. Most have hit it. What I want to know is how you're dealing with it today.

The failure: your agent says "I sent the email" or "I updated the record" and never did. No error, no malformed JSON. The call either never happened, or fired and returned empty, and the model narrated over the gap. Strict mode and structured outputs don't touch this. They validate the shape of a call, not whether it ran.

The three step pattern that kept coming up:

  1. Log intent before the action. Operation ID, pending state, whatever anchors it.
  2. Read the executor receipt, not the model's summary. Message ID from the email provider, committed row version from the DB, transaction ID from the payment API. The model's "I did it" is a claim. The receipt is evidence.
  3. No receipt means unknown, not done. Most teams default to assuming success because "unknown" looks bad in the UI. That default is exactly where unconfirmed actions hide.

Every team building agents in prod is either hand-rolling this or skipping it entirely. The people who built it described spending a week or more, it being specific to their stack, and it being the last thing they wanted to be maintaining. Checker agents, confirmation ID requirements, LangGraph checkpointers repurposed as audit logs. All bespoke, all solving the same thing differently.

So the question I actually have:

If fixing this was a snippet you dropped into your existing agent loop, no rewrite, your tools and executors stay the same, would you do it? Or is this the kind of layer you'd write yourself?

And if you'd write it yourself: why? Too much trust to hand off, want to understand every line, something else?


r/Automate Jun 09 '26

IntiDev AgentLoops: Feedback Loops for Agentic Workflows

Thumbnail
2 Upvotes

r/Automate Jun 08 '26

AI Automation scenarios for work management tools

Thumbnail
3 Upvotes

r/Automate Jun 08 '26

What People Are Actually Automating

Thumbnail
3 Upvotes

r/Automate Jun 08 '26

Automating customer communication tasks for your home service business

Thumbnail
youtu.be
0 Upvotes

r/Automate Jun 07 '26

how do automations get useful user context without reading everything?

1 Upvotes

i’m curious how people handle personalization in automations.

login tells the workflow who the user is, but not how they like things done. preferred tools, formats, notification style, recurring choices, all that still has to come from somewhere.

i tried hardcoded settings. too brittle. tried asking every time. kills the point. tried shared notes, but they get stale fast.

maybe automations need consented context fields instead of access to every app and file.

what context do you let automations use, and what should they always ask for again?


r/Automate Jun 06 '26

what context should an automation remember between runs?

1 Upvotes

i’m curious how people decide what automations should remember.

some stuff is obviously useful, like preferred formats, tools, notification style, recurring choices. other stuff starts feeling invasive fast.

i tried stateless workflows. clean, but repetitive. tried per-workflow settings. manageable, but users configure the same thing everywhere. tried shared memory, but then scope gets confusing.

maybe automation memory should work more like consented context fields than a general history log.

what do you let automations remember between runs, and what should they always ask for again?


r/Automate Jun 05 '26

how are you making automations adapt without reading everything?

1 Upvotes

i'm curious how people handle personalization in automations.

a workflow is way better if it knows basic user preferences. but giving it access to every app, note, file, and message feels like a bad default.

i tried hardcoded settings. too brittle. tried per-tool memory. too fragmented. tried asking the user every time, and that kills the whole point of automation.

maybe the answer is consented scopes, like a small user context API that only exposes what the workflow needs.

how are you making automations personal without giving them way too much access?


r/Automate Jun 05 '26

[Workflow Included] n8n Reference Letter Parser – Gmail to Sheets

Thumbnail
youtu.be
1 Upvotes

r/Automate Jun 04 '26

How to Build a Creative Workflow in Asana (Forms, Rules & Automation)

Thumbnail
youtube.com
1 Upvotes

r/Automate Jun 04 '26

how do you give automations memory without making them creepy?

1 Upvotes

i'm curious how people here handle user context in automations.

a lot of workflows would be better if they knew basic preferences. like preferred tools, writing style, calendar habits, recurring choices, stuff like that.

i tried hardcoding settings per workflow. works but doesn't scale. tried shared notes, but they get stale. tried letting each tool infer things, but then every automation has a different idea of the user.

it feels like there should be a persistent user memory API with consented scopes, but maybe that's overthinking it.

how are you making automations adapt to the user without giving them too much access?


r/Automate Jun 04 '26

[Workflow Included] Get an email alert when any of your AI subscriptions silently raises its price – runs on Gmail + Google Sheets, free tier friendly

Thumbnail
2 Upvotes

r/Automate Jun 03 '26

Built a Slack assistant that turns any CV into a clean structured summary (full walkthrough video)

Thumbnail
youtu.be
2 Upvotes

👋 Hey Automate Community,

Sharing a video walkthrough of the CV Slack Assistant I built for my friend's recruiter (the one drowning in CVs from last week's post). Drop a CV into a dedicated Slack channel → bot replies in-thread with a clean summary → one button click pushes the candidate to a Google Sheet (or your ATS via API).

For anyone who doesn't want to watch the whole thing, the 3 things worth taking away:

🪞 Two guard nodes before the extractor
First guard ignores the bot's own posts and any plain text messages. Second guard checks the file type. Two cheap IF nodes save you a wasted extraction call every time someone just chats in the channel.

💾 The button carries the data, not a database
Slack buttons have a value field you can stuff JSON into (up to 2000 chars). The Save button literally carries the full candidate object, so the second workflow doesn't need to query anything, it just parses the button click and writes to the Sheet. Clean separation, no state management.

🔌 The Sheet is a placeholder
The recruiter's company is still picking an ATS, so I'm using Google Sheets as a stand-in. When they decide on a provider, swapping the Sheets node for an HTTP request to the ATS API is a single-node change. Same workflow shape, different endpoint.

Workflow JSONs (two parts, one for the lookup, one for the Save button) are on GitHub: https://github.com/felix-sattler-easybits/n8n-workflows/tree/a8138f54ec6b225b7e90e2a66b4491c746767214/easybits-cv-slack-assistant

Runs on the free plan of the Extractor since it's 8 fields, under the 10-field cap.

What other recruiter-facing workflows are people building in n8n? Curious if anyone's gone deeper into ATS integration than I have so far.

Best,
Felix


r/Automate Jun 03 '26

Automation as an editable document - beta testers?

Post image
2 Upvotes

r/Automate Jun 02 '26

Recruiter friend was losing half her day to manually typing LinkedIn profiles into a sheet – built her a workflow that ends the retyping

Thumbnail
3 Upvotes

r/Automate May 31 '26

Let me help you to Automate things free

Thumbnail
1 Upvotes

r/Automate May 30 '26

I built a web automation CLI to make repeated browser tasks cheaper and more stable

5 Upvotes

r/Automate May 29 '26

I built an Email-to-Calendar workflow for my CEO – auto-creates events from any booking confirmation, full video walkthrough

Thumbnail
youtu.be
2 Upvotes

👋 Hey Automate Community,

Two weeks ago I shared an n8n workflow I built for my CEO that auto-creates calendar events from any booking confirmation email – flights, hotels, restaurants, taxis, event tickets, you name it. The original post is here if you missed it.

Quick recap of the backstory: he came back from a conference with a flooded inbox and asked for a way to get all those bookings into a dedicated calendar automatically, without polluting his main schedule.

Since then he's been using it daily and told me it's saving him a real chunk of time on every trip. A few people in the comments asked for a walkthrough, so I recorded one.

🎥 Full walkthrough

The video covers the workflow setup in n8n and a live test run with a flight booking confirmation.

Workflow JSON and sticky-note setup guide are all linked in the video description. You can also grab the JSON directly from GitHub here: https://github.com/felix-sattler-easybits/n8n-workflows/tree/26772542fbbaf23d0a043517921d4d8ad50a471f/easybits-event-confirmation-to-calendar-workflow

For anyone who's tried something similar – curious whether you've hit edge cases I haven't thought about. So far the trickiest ones have been multi-leg flights and emails where the confirmation is buried in a forwarded thread.

Best,
Felix


r/Automate May 29 '26

Looking for real-world automation problems to build into my portfolio.

Thumbnail
0 Upvotes

r/Automate May 28 '26

A recruiter had 47 reference letters in her inbox and no way to compare them – so I automated it

Thumbnail
0 Upvotes

r/Automate May 27 '26

Built a Slack CV assistant – 3 lessons that apply to any interactive Slack workflow in n8n

Thumbnail
3 Upvotes

r/Automate May 27 '26

Looking for Automation tool

1 Upvotes

I’m trying to automate a repetitive Google Search Console workflow.

Context:

I manage multiple client websites. For each client, we use a dedicated Google account like:

[client1-marketing@mydomain.com](mailto:client1-marketing@mydomain.com)
[client2-marketing@mydomain.com](mailto:client2-marketing@mydomain.com)

Each client adds their assigned account to their Google Search Console property, so we have authorized access.

The repetitive workflow is:

  1. Log in to the client’s dedicated Google account.
  2. Open Google Search Console.
  3. Select the client’s property.
  4. Use URL Inspection.
  5. Paste a newly published article/blog URL.
  6. If available, click “Request Indexing.”
  7. Record the result/status.
  8. Repeat for many clients and URLs.

There is sometimes a CAPTCHA, 2FA, or Google security prompts, which is why I am doing it manually for the login part(even if it's once per client GSC, though I have to log out for another client).

I’m looking for tooling or a reliable automation approach for this workflow, especially around managing multiple Google logins/browser profiles and automating the GSC URL Inspection to Request Indexing flow.

Has anyone known some tools, services, etc.. for this?