I Got Bored and Ended Up Automating the Whole Process

Reddit r/AI_Agents Tools

Summary

A developer built a voice AI agent using open-source tools Dograh and n8n to automate mentor screening calls, reducing daily workload from 4 hours to 30 minutes.

In my edtech bootcamp, I manually called mentors for a full-stack role. Same 4-6 questions every time, then manual back-and-forth for scheduling. It was eating 3-4 hours a day. So I decided to automate it. Here's what I ended up building - a voice AI agent I'm calling the Mentor Screening Agent. What it does: 1. Calls the candidate 2. Asks 4-6 screening questions (years of teaching experience, JS/React/Node knowledge, expected hourly rate, etc.) 3. If they're over budget, transparently share the cap and ask if they accept 4. If the candidate qualifies the screening round - book the interview slot, and send a Google Calendar invite with a Meet link 5. Logs every call to a Google Sheet for review The pipeline: Voice call → Webhook → Google Sheet → IF (qualified - candidate pass all criteria?) → Gmail → Google Calendar The voice part uses Dograh (open-source voice AI); everything downstream is n8n. Both free open source and self-hostable. What happened after I built it? I went from 4 hours of screening calls a day to about 30 minutes of reviewing the output sheet. Qualified candidates have their interview booked before I even know they exist. A few things that broke along the way and might save someone a debugging headache: \- $json.body.X\` becomes \`$json. X after data passes through a Sheets node (it flattens the body wrapper) \- Workspace Google accounts often won't let you create Calendar events via OAuth without admin approval. Personal Gmail credentials just work. \- Conference Data toggle in n8n's Calendar node throws a useless "Bad Request if partially configured. Either fully set the type or remove the section entirely. Let me know if you have any feedback on this approach.
Original Article

Similar Articles

I got an AI agent to do my boring admin work and it actually kinda works

Reddit r/AI_Agents

A small business owner shares their experience using an AI agent called 'autoclaw' to automate admin tasks like emails, client reports, and moving support tickets to GitHub. After initial setup frustration and over-connection, they settled on a limited integration that saves time despite occasional garbage outputs.

I made a v2 AI that handles my DMs so I don’t have to talk to people anymore

Reddit r/artificial

A developer built a V2 AI chat assistant that autonomously manages their direct messages, featuring web search, image reading, voice note transcription, GIF sending, memory of past conversations, and automatic follow-ups. The tool has processed ~500k tokens across ~500 messages, raising questions about authentic social interaction.