AI Automation Academy

Free download

I built a ChatGPT agent to 100x my customer replies

Both n8n workflows from the video, plus the customer service playbook they read from. Every new email shows up with a reply already written.

Just watched the customer email build? This is everything that was on screen. The upload workflow, the agent workflow, and the Andromedus Rockets playbook that both of them are built around, exactly as they were at the end of the video, with every credential stripped out so you connect your own.

Still from the video: an inbox where every email already has a draft reply

What it actually does

It watches one label in your Gmail. When a customer email lands there, it reads the subject and the body, goes and finds the parts of your customer service playbook that are closest to what the person asked, writes a reply in that voice, and saves it as a draft on the same thread. Then it marks the email as read so it never writes a second draft for the same message.

Nothing sends. You open your inbox, read the draft that is already sitting there, and press send if it is right. That is the whole point of the shape: a reply that takes six minutes to write takes six seconds to check.

Why it reads a playbook instead of being told what to say

You could paste your whole customer service document into the prompt every single time. It works, and it is expensive and slow, because the model has to read all of it to answer one question about shipping.

So the playbook goes into a vector store first. That is the first workflow in the kit: it chops the document into chunks and files each one by what it is about. Then when a customer asks something, the agent pulls only the handful of chunks that are actually related and answers from those. Cheaper, faster, and more accurate, because the model is looking at the four paragraphs that matter instead of skimming twelve pages.

Customer:
      Hi, I'm looking to buy a blue rocket.
      Is that an option?

Draft, waiting in the inbox:
      Thank you for reaching out about our rockets.

      However, all of our rockets come in one color,
      black. This isn't a limitation. This is a legacy.

      Best regards,
      Andromedus Customer Service
"This isn't a limitation. This is a legacy." is a line out of the playbook, not out of the model. That is the vector store doing its job.

What is in the kit

What you can do with it once it runs

What you need

An n8n account, which has a free trial and is where both workflows live. A Supabase account, which is free and is where the playbook gets stored. A Google account, for Drive and Gmail. And an OpenAI API key, which is the only part that costs anything: it is billed by usage, and $5 of credit goes a very long way at the model this uses.

Two of the steps are slower than the rest. Connecting Google means making a project in the Google Cloud console, and there is a five minute video that walks through it. Setting up the vector store means pasting a block of SQL that Supabase hands you into Supabase itself, which sounds worse than it is: you copy it from one page and paste it into another, with one small edit that the next page tells you about.

What it costs to run

Cents. The model is the cheap one on purpose, and the vector store is the reason it can be: the agent only ever reads four chunks of your playbook per email instead of the whole thing. Add $5 to your OpenAI balance and you will be testing this for months. Supabase's free tier covers a document like this with room to spare, and n8n's own plan starts free.