Inbox to action
A manager wakes up to 40 customer emails. Kazibee groups themes, drafts replies, and prepares a clean handoff document for the team.
You
Get my top inbox priorities and draft today's memo with calendar context.
Kazibee
Absolutely. I'll look into that now and share what I find before updating both memos.
Working in the background
const weekTask = await tools["task-docs"].getWeekTaskDocument("this-week");
const rankedInbox = await tools["mail-ranker"].getRankedMessages("label:inbox newer_than:1d", 60, weekTask.documentId);
const appointments = await tools["google-calendar"].listEvents("today");
const todayMemo = await tools["today-summarizer"].buildTodayMemo(rankedInbox.items, appointments);
await tools["memo-writer"].appendToTodayMemo(todayMemo.todaySection);
await tools["memo-writer"].appendToWeeklyMemo(todayMemo.weeklySection);
Kazibee
Done. I ranked fresh inbox items, combined them with today's appointments, and prepared updates for today and weekly memos.