My own AI agent
I have an AI agent running on a private server that I use every day — for research, audits, analysis, writing, and directing other agents.
It has persistent memory, its own knowledge base, tools, scheduled tasks, and more than a hundred reusable skills and procedures.
The count isn't the point. The point is that it doesn't start from zero every time: a lesson learned once becomes part of the system and is there the next time.
A World Cup prediction system
For the 2026 World Cup I built a system that combined statistical modelling, current research, source verification and strategic decision-making.
It predicted 103 of 104 matches and finished 2nd out of 18 participants.
The result wasn't the interesting part. What emerged during the tournament was that the biggest gains didn't come from a smarter model — they came from fixing the process: which sources to trust, how to handle draws, when the system should ask again, and where a human has to confirm the call.
Which is really the whole lesson: process beats picking the cleverest model.
A customer support tool
I've also built a tool that searches a large documentation base and drafts customer support answers in the customer's own language.
The first question on that project wasn't "which AI model should I use?".
It was: how do I keep a customer's name, email address, company name and device identifiers from ever reaching the model?
So the privacy layer came first. Sensitive details are stripped locally and checked again before anything moves. If that check fails, the job stops. Not "continues with a warning". Stops.
Boundaries before features. Better to find the limit before you build the capability.
A production web platform
I've used AI agents to direct the development of a substantial production web platform — from research and specifications through implementation, testing, browser audits and release verification.
There's no single all-knowing AI in the middle of it. Planning, building and review are separate jobs, and whoever built the thing doesn't get to sign it off. Claims need evidence — and when something genuinely can't be verified, "can't verify" is a perfectly good answer. I'll take that over a confident green tick any day.