Welcome to the Empire
·
announcementempire
Welcome
This is the beginning of something. The Derivative Genius blog is where I'll document the build — the wins, the losses, and the lessons learned along the way.

Building things since before the internet.
What to Expect
- Empire Status Reports — Monthly updates on what's working and what isn't
- Technical Deep Dives — How we build things, why we chose what we chose
- Product Updates — New features, launches, and pivots
- Lessons Learned — The expensive kind, so you don't have to pay tuition
Current Projects
- VoiceGeni.us — AI voice agents for the trades
- Trades OS — The operating system for craft builders
- Centurion — Our infrastructure and operations platform
"I build for the people who build things." — Joe Terry
Code Example
Here's how we handle voice agent routing:
// Route calls based on urgency and availability
function routeCall(call: IncomingCall): Agent {
if (call.urgency === 'emergency') {
return findAvailableAgent('senior');
}
return findAvailableAgent('any');
}
Stay tuned for more.