How I Built a 3-Agent AI Automation System for a Dental Tourism Agency

June 4, 2026 (1w ago)

A few months ago, I built one of the most complete automation systems I have worked on so far.

The client was Ibrahim, who runs a dental tourism marketing agency in Albania. He needed a system that could do more than generate text. The workflow had to create ad scripts, produce voiceovers, render avatar videos, deliver assets to Google Drive, notify the video editor, and keep learning from Meta Ads performance data over time.

The result was a three-agent AI automation system built on OpenClaw and running on a Mac Mini.

The Core Problem

The agency was dealing with the same bottlenecks most growth-focused marketing teams run into:

The goal was to build a single system that could automate both creative production and performance analysis, while still staying usable through a simple Telegram interface.

The System Architecture

The build runs three agents, each with a dedicated role:

Nova acts as the orchestrator. Every incoming request from Telegram goes to Nova first. It decides which agent should handle the task, tracks progress, and sends updates back to Ibrahim.

Atlas handles the creative side. It writes ad scripts, runs a self-critique pass, generates voiceovers through ElevenLabs, creates avatar videos through HeyGen, saves files to the right Google Drive folders, and emails the video editor once everything is ready.

Pulse handles analytics. It reads Meta Ads data, generates recurring reports, flags underperforming creatives, and passes those learnings back to Atlas so the next scripts get better.

OpenClaw chat interface showing the Nova, Atlas, and Pulse workflow

Inside OpenClaw, Nova routes work across the controller, content, and ads-analysis agents.

The Creative Pipeline

The automation for creative generation was designed to be strict, not just fast.

When Ibrahim sends a request, the system:

  1. Parses the brief and identifies the client, funnel stage, and output count
  2. Sends the scriptwriting task to Atlas
  3. Forces a self-critique step before approval
  4. Rewrites the script if it does not meet the quality threshold
  5. Generates the voiceover through ElevenLabs
  6. Renders the avatar video through HeyGen
  7. Saves the final assets into the correct Google Drive folder
  8. Emails the video editor with the delivery link

That means one Telegram command can trigger the full production chain from brief to handoff.

The Reporting System

The reporting side was just as important as the creative side.

Pulse automatically runs:

All reports are saved automatically to Google Drive, with organised folder structures and recurring schedules. Instead of producing generic summaries, the system generates row-level analysis tied to actual metrics like cost per lead, CTR, frequency, and spend.

This was important because the client did not just need more data. He needed performance data that could actually influence decisions.

The Self-Improvement Loop

This is the part that made the system more than a standard automation setup.

Pulse does not stop after generating reports. It continuously feeds performance learnings back into Atlas.

When underperforming creatives show clear fatigue or weak conversion signals, Pulse sends a digest into an agent-to-agent session. Atlas then:

Over time, the system builds a client-specific memory of what works, what fails, and which angles are worth repeating.

That means each iteration is not just automated. It is informed by previous performance.

Folder Structure and Delivery

Everything is organised into a predictable Google Drive hierarchy so the client and editor are not digging through random files.

Google Drive
├── Ad Accounts Report/
│   ├── [Client Name]/
│   │   └── [Month Year]/
│   │       ├── 5-day reports
│   │       ├── 14-day reports
│   │       └── suggestions and verdicts
│   └── ...
├── Meta Ads Tracking/
│   └── [Month Year]/
│       ├── daily reports
│       ├── 7-day reports
│       └── 14-day reports
└── Creative folders/
    ├── scripts
    ├── voiceovers
    ├── avatar videos
    └── performance-notes

New monthly folders are created automatically, and client data stays isolated in the correct locations.

Telegram As the Control Layer

One of the best parts of this build is that Ibrahim does not need to manage it from a dashboard.

He controls the system from Telegram.

That means he can send instructions like:

This keeps the interface simple while the underlying system stays complex.

Telegram interface used to trigger the automation workflows

Telegram is the control layer. One message can kick off scripting, voice generation, video rendering, Drive delivery, and editor notification.

The Stack

Outcome

The finished system now does three important things well:

In practical terms, the agency got a system that can keep producing, analysing, and learning without needing constant manual coordination.

This is the kind of automation work I enjoy most: not just replacing a single step, but designing a full operating system around a real business workflow.