// proof of capability

MailPilot

A production AI agent I built end-to-end. Reads email, retrieves from a knowledge base, replies in under sixty seconds. Evidence of the work, not a sandbox.

$ mail demo@lab5.ca

replies in <60s · no signup · real production agent

// how it works

01

send a product question

Email demo@lab5.ca with a question about the product specs in the knowledge base. Out-of-kb questions get a reply explaining how the demo works.

02

agent searches the knowledge base

The agent searches product documentation stored in Google Drive, running retrieval over indexed specs to find relevant passages.

03

you get a sourced reply

Within sixty seconds the agent replies with an answer grounded in the source documents. End-to-end automated: Gmail push → retrieval → llm → reply.

// knowledge base

Sample questions are based on real product specification sheets. Cross-check the agent’s answers against the source documents.

google drive

// try these questions

[ok] the agent will answer

questions matching products in the knowledge base — expect a sourced reply.

  • What is the permeate flow rate in GPD for the TW-12.0K-840 model, and what is the motor horsepower required at 60Hz?
  • What is the continuous flow rate in GPM and peak flow rate in GPM for the WS36-600-2 softener?
  • What is the maximum flow rate of the C403 UV-COM model, and what is its UV dose range?
  • What is the permeate flow rate and active area of the FilmTec ECO-440i RO membrane?
  • What percentage of free chlorine can KDF 55 medium remove, and what is the heavy metal removal efficiency of KDF 55, KDF 85, and KDF-C media?
  • What is the capacity in GPD of the RO-500 Series model TW-270K-8580 installed in Nicaragua, and how many 8" TFC spiral wound membranes does this system contain?

[skip] the agent will decline

products not in the knowledge base — expect a polite refusal, not a guess.

  • Which Pentair commercial reverse osmosis system would you recommend for a 300 GPM brewery feedwater application?
  • Can you spec a Grundfos CRN dosing pump for chlorine injection at 25 GPH?
  • Which Veolia OPUS II system handles produced water with 50,000 ppm TDS for oil and gas?

// under the hood

For technical reviewers — the stack and the reasoning.

01

frontend

Astro SSG, Tailwind CSS, Cloudflare Workers. Static generation, zero cold-start, globally distributed.

02

backend

Python, serverless functions, event-driven. Triggered by Gmail push notifications via Pub/Sub. Scale-to-zero costs.

03

ai layer

LLM with retrieval over Google Drive. Structured prompts guide answer format. Out-of-kb detection prevents hallucination.

github.com/kborovik/mailpilot