DORA Compliance Intelligence Platform — Built on DigitalOcean Gradient™ AI
22,000 EU financial institutions. €2.4 million average annual compliance cost. January 2025: DORA became law. Most SMB fintechs still manage this manually. GradientGuard changes that — built in 72 hours on DigitalOcean Gradient™ AI.
Live Demo: https://gradient-guard-74ijs.ondigitalocean.app Builder: Manoj Mallick · Amsterdam · 15 years FinTech (Major Dutch Banks)
GradientGuard is a production-ready, multi-agent AI compliance platform that:
- Monitors cloud infrastructure 24/7 for DORA Article 11 threshold breaches (RTO/RPO/availability)
- Detects ICT incidents in real time and auto-classifies by severity (P1/P2/P3)
- Generates PDF audit evidence packages with DORA article citations (stored in DO Spaces)
- Advises on root cause and remediation steps with estimated recovery times
- Answers natural language compliance questions via RAG over DORA/NIS2/GDPR/MAS regulations
┌─────────────────────────────────────────────────────────────────┐
│ DigitalOcean Gradient™ AI │
│ │
│ ┌─────────────┐ A2A ┌──────────────┐ │
│ │ A1: DORA │──────►│ A2: Evidence │ │
│ │ Sentinel │ │ Forge │──► DO Spaces (PDF) │
│ │ (Monitor) │──────►│ │ │
│ └──────┬──────┘ A2A └──────────────┘ │
│ │ ┌──────────────┐ │
│ └─────────────►│ A3: Remediat │──► Slack Webhook │
│ │ ion Advisor│ │
│ └──────────────┘ │
│ ┌──────────────────────────────────────┐ │
│ │ A4: Compliance Counsel (RAG Q&A) │◄── Knowledge Bases │
│ │ DORA + NIS2 + GDPR + MAS TRM │ (4 regulation KBs) │
│ └──────────────────────────────────────┘ │
└─────────────────────────────────────────────────────────────────┘
│ │
▼ ▼
┌────────────────┐ ┌──────────────────┐
│ Node.js API │ │ DO Managed PG │
│ (Express/SSE) │◄────►│ (Incidents DB) │
└────────────────┘ └──────────────────┘
│
▼
┌────────────────┐
│ Next.js 15 │
│ Dashboard │
│ (App Platform)│
└────────────────┘
| Product | How Used |
|---|---|
| Gradient™ AI Agents (ADK) | All 4 compliance agents deployed via gradient agent deploy |
| Gradient™ Serverless Inference | LLM calls: llama3.3-70b, claude-sonnet-4-5, claude-sonnet-4-6 |
| Gradient™ Knowledge Bases | RAG over DORA, NIS2, GDPR, MAS TRM regulatory PDFs |
| Gradient™ Agent Evaluate | Automated eval on ComplianceCounsel + DORASentinel |
| Gradient™ ADK Traces | Every LangGraph node instrumented with @trace |
| App Platform | Web + API + cron worker all deployed from monorepo |
| Managed PostgreSQL | Incident records, compliance scores, audit log |
| Spaces (Object Storage) | PDF evidence packages, CDN delivery |
- DigitalOcean account with Gradient ADK preview enabled
- Node.js 20+, Python 3.11+
- Docker Desktop (for local PostgreSQL)
# 1. Clone
git clone https://github.com/manojmallick/gradient-guard
cd gradient-guard
# 2. Configure environment
cp .env.example .env
# Fill in your DO API token and Gradient keys
# 3. Start local PostgreSQL
docker-compose up -d
# 4. Install dependencies
cd packages/api && npm install
cd ../web && npm install
cd ../agents/dora_sentinel && pip install -r requirements.txt
# Repeat for other agents...
# 5. Run DB migrations
cd packages/api && npx drizzle-kit push
# 6. Seed knowledge bases (requires PDFs in knowledge-bases/)
python knowledge-bases/seed.py
# 7. Seed demo incidents
cd packages/api && npx ts-node scripts/seed-db.ts
# 8. Deploy agents to Gradient ADK
./scripts/deploy-agents.sh
# 9. Start services
cd packages/api && npm run dev # http://localhost:3001
cd packages/web && npm run dev # http://localhost:3000If you already have another app on ports 3000/3001, run GradientGuard on
dedicated demo ports from the repo root:
# from gradient-guard/
npm run db:push
npm run devThis starts:
- Web:
http://localhost:3100 - API:
http://localhost:3101
Optional smoke check in a second terminal:
npm run demo:smokeNotes:
- Root
devnow runs both API and web together. - If Compliance Counsel agent keys/URL are not configured, chat falls back to a local demo response so the UI still streams output during presentations.
| DORA Article | Coverage |
|---|---|
| Article 3 — Definitions | KB indexed |
| Article 11 — ICT Business Continuity (RTO/RPO) | ✅ Real-time monitoring |
| Article 17 — ICT Incident Management | ✅ Evidence generation |
| Article 19 — Incident Reporting | ✅ Auto-classification |
| Article 25 — ICT Testing | ✅ Q&A coverage |
| Article 28 — Third-party ICT Risk | ✅ KB indexed |
| Manual Compliance | GradientGuard | |
|---|---|---|
| Annual cost (100 employees) | €120,000 | €2,160 |
| Evidence generation time | 4-8 hours/incident | < 2 minutes |
| Audit readiness | Quarterly scramble | Always-on |
| Savings | — | €117,840/yr (98%) |
Cost estimates based on Deloitte 2024 DORA Compliance Cost Study
| Document | Description |
|---|---|
| ARCHITECTURE.md | Full technical architecture — agent LangGraph graphs, A2A data flows, API reference, database schema, infrastructure breakdown |
| DEPLOY.md | Step-by-step deployment guide — Terraform, Gradient ADK, GitHub Actions CI/CD |
| CLAUDE.md | Complete technical specification and implementation reference |
Manoj Mallick — Solution Architect 15+ years FinTech experience at Major Dutch Banks Amsterdam, Netherlands
This project does not constitute legal advice.
Apache 2.0 — See LICENSE