AI assisted process automation demonstration. Four business processes, five job roles, all data synthetic. Independent demo, not affiliated with MTN.
# AI Assisted Process Automation, demonstration
Four business processes, automated end to end, where the decision step in each
one is taken by a large language model. Five job roles sign in and see four
different applications of the same engine.
This is a demonstration built to show an idea. It is not a production system,
it is not affiliated with or endorsed by MTN, and it connects to no real
system of record. Every account, transaction, invoice, ticket and customer
record in it is synthetic and generated on your own machine.
## What you can do with it
Sign in as any of five roles and watch what the platform lets you do.
| Role | Mobile money | KYC | Complaints | AP | Run history | Can execute |
|---|---|---|---|---|---|---|
| Admin | yes | yes | yes | yes | all runs | yes |
| Finance | yes | no | no | yes | own runs | yes |
| Compliance | no | yes | no | no | own runs | yes |
| Care | no | no | yes | no | own runs | yes |
| Auditor | read only | read only | read only | read only | all runs | no |
The four automations:
1. **Mobile money reconciliation.** Matches 1,200 mobile money transactions
against a partner bank settlement file, isolates around 35 exceptions, then
classifies each one and drafts a resolution.
2. **SIM registration and KYC validation.** Checks pending registrations
against Ghana Card structure, name and date of birth, then approves,
rejects or refers.
3. **Customer complaint triage.** Reads inbound tickets, assigns intent and
severity, routes to a queue and drafts the first reply.
4. **Invoice and AP matching.** Three way match against purchase order and
goods received note, then explains every break.
## Run it on your own machine
You need Node.js 20 or newer. Nothing else.
No Docker, no database, no cloud account, no API key.
Check what you have:
```bash
node --version # should print v20.x or higher
```
### macOS and Linux
```bash
git clone
github.com
cd mtn-ghana-rpa
npm install
npm run dev:st …