I Automated Work-Life Calendar Sync With Two AI Agents That Talk to Each Other
The author, a developer with a demanding work and personal life, solved the challenge of managing two separate calendars by creating an automated system using two AI agents that communicate with each other. These agents sync personal events from Google Calendar to Outlook as 'Out of Office' blocks, preventing scheduling conflicts without manual intervention. The system uses a custom 'agent mesh' built with Copilot CLI and SQLite to enable cross-session communication between independent AI assistants.
- ▪The author uses two separate AI assistants: one for home (Google Calendar) and one for work (Outlook).
- ▪The agents communicate via a custom 'agent mesh' using a shared SQLite database with no external dependencies.
- ▪The sync happens five times daily, automatically blocking time on the work calendar for personal events.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 2155191) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Hector Flores Posted on May 1 • Originally published at htek.dev I Automated Work-Life Calendar Sync With Two AI Agents That Talk to Each Other #productivity #ai #github #automation The Two-Calendar Problem Every developer with a day job and a personal life has two calendars. My work Outlook has team syncs, 1:1s, and planning meetings.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).