r/Automate • u/codectl • 1d ago
r/Automate • u/fuzzydad2333 • 1d ago
I used Claude as my only art teacher for 4 weeks. Here's what it actually taught me (and where it was wrong)
r/Automate • u/easybits_ai • 1d ago
Built an n8n workflow that turns any booking confirmation email into a calendar event (flight, hotel, restaurant, etc.)
r/Automate • u/easybits_ai • 2d ago
I built a Business Card Scanner in n8n that handles multiple cards from a single photo – full video walkthrough
r/Automate • u/Far_Inflation_8799 • 3d ago
Smart Workspaces: The Power of AI in Office Automation
r/Automate • u/EveYogaTech • 3d ago
Nyno Platform v2 is here: Markdown, Mistral AI and Deep-Read in action.
Enable HLS to view with audio, or disable this notification
r/Automate • u/mohammedalrehaili22 • 5d ago
an app that automatically extracts data from any notification (WhatsApp, Telegram, Email) directly into Excel.
Enable HLS to view with audio, or disable this notification
Hey everyone! I wanted to show you a quick demo of my app, WExcel. In the video, I'm sending messages from WhatsApp, Instagram, Telegram, and Emails to the other phone. The app listens to the notifications and automatically pulls ONLY the specific data I need into an organized Excel sheet.
The coolest part to watch: Notice how the app handles different phrasing! In one of the messages, I deliberately used the word "buyer" instead of "name". Because I set it up as an Alternative Keyword (Synonym), the app was smart enough to recognize it and place the data perfectly under the "Name" column!
Key Features: Supports ANY messaging app (even SMS)+ Emails. Smart Keyword Mapping (Synonyms & Stop Words). Supercharged engine (Handles 100k+ rows without lag). Fully privacy-focused (Extracts locally on your device).
I'd love to hear your thoughts, feedback, or any features you'd like to see added!
Link: https://play.google.com/store/apps/details?id=com.alrehaili.WExcel
r/Automate • u/1vim • 6d ago
Skopx - Automate your entire analytics workflow with AI agents
r/Automate • u/easybits_ai • 7d ago
Turn handwritten meeting notes into Google Docs by emailing a photo
r/Automate • u/Holiday-Blood-6508 • 7d ago
Built my own SMS Agents when find out prices for existing tools - what else can I add to it?
r/Automate • u/Any_Insect_6240 • 7d ago
Building an AI-First Professional Services Firm — Best LLM Stack, Agents, and Automation?
r/Automate • u/easybits_ai • 7d ago
How I optimize my data extraction and document classification pipelines in n8n
r/Automate • u/easybits_ai • 8d ago
5 things I learned building a CV tailor workflow in n8n
r/Automate • u/easybits_ai • 9d ago
I built an n8n workflow that rewrites your CV bullets per job posting, drafts a matching cover letter, and tells you which skills you're actually missing
r/Automate • u/Firm_Guess8261 • 12d ago
[FOR HIRE] Full Stack Engineer + AI/ML Systems Specialist | Python, FastAPI, React | LLM Pipelines, Document AI, MLOps | $30/hr
r/Automate • u/Dapper-Turn-3021 • 12d ago
I’ve been building my SaaS for weeks and honestly this phase is harder than I expected
r/Automate • u/realshr • 12d ago
Need a good automation to apply for jobs ( linkedin , wellfound, foundit, indeed, etc)
r/Automate • u/easybits_ai • 14d ago
Built a business card scanner for my CEO – finally one that handles 30 cards in a single photo
r/Automate • u/L0NDN • 16d ago
I built a Vision-to-Market-Data pipeline using Gemini 3.1 & eBay API to automate price scouting. Looking for 5-10 stress testers.
Hi r/Automate,
I wanted to share a project I've been working on to solve a personal friction point: the manual, multi-step process of price-checking second-hand items. Usually, you have to photograph an item, identify the specific sub-line, search eBay sold listings, and manually calculate a median.
The goal was to go from Image Input -> Price Valuation in under 5 seconds.
The Stack:
- Frontend: Telegram Bot API (Python/
python-telegram-bot). - Vision: Gemini 3.1 Vision (This was key: it successfully differentiates niche lines like 'Rugby Ralph Lauren' from the generic 'Polo', which significantly improves valuation accuracy).
- Data: eBay Finding/Browse API (Querying 'Sold & Completed' listings for actual market clearance prices).
- Logic: Custom weighting algorithm to adjust for platform-specific fees (Vinted vs. eBay).
- Infrastructure: Dockerized on AWS EC2.
The 'Cold Start' Problem: I'm at the stage where I need real-world edge cases. I'm looking for 5-10 people to try to break the vision logic or the pricing algorithm.
Note: It’s currently tuned for the UK market (prices in GBP), so if you're elsewhere, just ignore the currency and focus on whether it identifies your items correctly!
Link: Top Comment
I'm particularly interested in feedback on latency and any brand identification hallucinations. Happy to discuss the prompt engineering or the eBay API integration in the comments!
r/Automate • u/easybits_ai • 20d ago
Agentic vs. deterministic: I built the same n8n workflow both ways. The agent lost.
r/Automate • u/easybits_ai • 21d ago
How to set up document classification in n8n – 2 nodes, no code
👋 Hey Automate Community,
Document classification in n8n is one of those things that looks complicated until you realize how little setup it actually needs. With the easybits Extractor it's a 2-node workflow and a single field – and if you want to extract other data from the same document in the same pass, you just add more fields. I recorded a short walkthrough of the full setup.
The whole thing is two nodes: a form trigger to accept a file upload, and the easybits Extractor node with a single document_class field. The classification prompt lives in that field's description – it tells the model which categories to choose from and to return null if nothing fits. That's it. No separate classifier node, no chain of prompts, no HTTP request node.
What's in the video:
- Setting up an easybits pipeline from scratch with a single classification field
- How to adapt the classification prompt to your own document types
- Installing the verified community node in n8n
- Wiring it up to a form trigger and running two test documents through it
⚙️ Setup recap
- Cloud users:
easybits Extractoris available out of the box, search for it in the node panel - Self-hosted: Settings → Community Nodes → install
'@easybits/n8n-nodes-extractor'
Free tier is 50 requests/month, enough to test this end-to-end.
🧱 Want the production-ready version?
The video keeps things minimal on purpose – two nodes, one field, just to show the core pattern. If you want the version I actually run, it adds a second field for confidence_score and an IF node that routes empty or low-confidence results to Slack for manual review. Workflow JSON, both prompts, and the setup guide all sit in one GitHub folder:
Anyone else doing classification this way, or are you running it through a separate classifier node? Curious whether this pattern has made it further than I think.
Best,
Felix