DEV Community

Alessandro Binda
Alessandro Binda

Posted on • Originally published at get-scala.com

We Built 41 AI Agents That Run an Entire Business — Here's What We Learned

The Problem Nobody Talks About

Every business runs on 7+ disconnected tools. Zendesk for support. PagerDuty for monitoring. Monday.com for projects. BambooHR for people. QuickBooks for invoices. A WhatsApp group for everything else.

Total cost: $1,200-1,800/month. Total integration: zero.

We asked: what if one AI platform handled all of it?

What We Built

41 autonomous AI agents organized in 9 packs, all accessible via WhatsApp:

HR & People — An employee sends "How many vacation days do I have left?" on WhatsApp. SARA (our AI) checks the balance, finds 12 days, and submits the leave request to their manager. No app. No portal. No training.

Finance — "What's the status of invoice 1234?" SARA finds it, sees it's 15 days overdue, and asks if you want to send a payment reminder. One message: done.

IT Support — "I need to reset my password for the CRM." SARA creates the IT ticket, sets priority, and confirms: "New credentials will arrive within 15 minutes."

Infrastructure — At 2 AM, the database container crashes. Our guardian agent detects it in 60 seconds, recreates the container on the correct network, fixes the nginx proxy, and verifies health. You wake up to a "Recovered" notification. Total downtime: under 2 minutes.

The 9 Agent Packs

Pack Agents What It Does
Support 3 Ticketing, status, escalation via WhatsApp
HR & People 4 Leave, payslips, onboarding checklists
Finance & Admin 4 Invoicing, expenses, payment reminders
Compliance & Legal 3 GDPR requests, deadlines, contract renewals
Sales & Marketing 5 Lead scoring, pipeline, campaigns, follow-ups
Project Management 4 Tasks, assignments, progress, timelines
IT Support 4 Password resets, access provisioning, system status
Inventory 2 Stock levels, reorder alerts
Proactive Customer 3 Appointment reminders, feedback, churn detection

Plus 7 infrastructure ops agents that run 24/7: auto-healing, DB performance monitoring, security audits, backup verification, and log anomaly detection.

The Architecture

Every agent follows the same pattern:

  1. SARA receives a message (WhatsApp, Telegram, or web)
  2. Intent detection determines which agent to invoke
  3. Tool dispatcher calls the right handler with context (tenant, phone, sector)
  4. Handler queries the database, performs the action, returns structured data
  5. SARA formats the response in natural language

The handlers degrade gracefully — if a table doesn't exist yet (customer hasn't set up that module), they return a helpful message instead of crashing.

registerHandler('check_leave_balance', async (args, ctx) => {
    try {
        const res = await pool.query(
            `SELECT leave_type, (total_days - used_days) AS remaining
             FROM hr_leave_balances WHERE user_id = $1 AND employee_phone = $2`,
            [ctx.tenantId, args.phone || ctx.phone]
        );
        if (res.rows.length === 0)
            return { success: true, data: { message: 'No leave data found.' } };
        return { success: true, data: { balances: res.rows } };
    } catch (err) {
        if (err.message?.includes('does not exist'))
            return { success: true, data: { message: 'HR module not configured yet.' } };
        throw err;
    }
});
Enter fullscreen mode Exit fullscreen mode

Why WhatsApp?

Everyone has it. No app to install. No login to remember. No training needed.

A CEO can manage their entire business from the same app they use to text their family. That's not a feature — that's a paradigm shift.

The Numbers

  • 41 AI agent tools across 9 business functions
  • 20 industry verticals (restaurant, hotel, legal, healthcare, retail...)
  • < 60 seconds to auto-heal infrastructure failures
  • €2,000/month for the entire suite (vs $1,800+ for fragmented tools)
  • €0 to try — 14-day free trial, no credit card

Free Tool: AI Business Health Check

We also built a free tool that analyzes any business website and generates an AI-readiness score across 5 dimensions. Try it: get-scala.com/en/health-check

What's Next

We're adding Meeting Notes via WhatsApp — send a voice memo of your meeting, get a structured summary with action items in 30 seconds. Free. Because the best marketing is a product people can't stop talking about.


SCALA AI OS is an open platform. SARA, the core AI assistant, is open source on GitHub.

Try SARA on WhatsApp: +39 351 787 4003

Top comments (0)