Todoist Due-Today Email Drafts
Config — read before starting
Read ../config/user.json (resolves to ~/executive-assistant-skills/config/user.json).
Extract and use throughout:
primary_email, work_email — Gmail accounts
whatsapp — for notification delivery
workspace — absolute path to OpenClaw workspace
signature — email signature
Debug Logging (MANDATORY)
Read ../config/DEBUG_LOGGING.md for the full convention. Use python3 {user.workspace}/scripts/skill_log.py todoist-due-drafts <level> "<message>" ['<details>'] at every key step. Log BEFORE and AFTER every external call (todoist-cli, gog, mcporter). On any error, log the full command and stderr before continuing.
Steps
1. Get today's due tasks from Todoist
source {user.workspace}/.env
todoist-cli today --json
Also check overdue tasks:
todoist-cli list --filter "overdue" --json
2. Identify email/ping tasks
Filter for tasks whose content matches outreach intent:
- Keywords:
ping, email, follow up, follow-up, send, reach out, text, message, intro, connect, check in, nudge, reply, respond, draft
- Pattern: any task that implies sending a communication to a specific person
Skip tasks that are clearly NOT outreach (e.g. "review doc", "read report", "build proposal").
3. For each outreach task, draft the email
Read and follow ~/executive-assistant-skills/email-drafting/SKILL.md for all drafting rules.
For each task:
Identify the recipient: Extract person/company name from task content + description
Pull meeting context (if available): If the task description references a meeting name, date, or was created by the action-items cron (check for Granola citation links or meeting metadata in description), retrieve the transcript via Granola/Grain. If no meeting reference exists in the task, skip directly to step 3 — draft from email history and task content alone.
# Find the meeting in Granola
mcporter call granola list_meetings --args '{"time_range": "custom", "custom_start": "<meeting-date>", "custom_end": "<meeting-date+1>"}'
# Query for what was discussed with this person
mcporter call granola query_granola_meetings --args '{"query": "What did {user.name} discuss with <recipient> and what did he promise or commit to do?", "document_ids": ["<meeting_id>"]}'
Then cross-check with Grain for the full transcript:
mcporter call grain.list_attended_meetings --args '{}'
# Note: Grain's schema does not support `start_date`/`end_date` filters. Call with empty args and filter the results manually by `start_datetime` to match the meeting date range.
mcporter call grain.fetch_meeting_transcript --args '{"meeting_id": "<grain_meeting_id>"}'
When meeting context is available, the email draft must reflect what was actually said — not just the task title. Look for: specific commitments, timelines discussed, names/projects mentioned, tone of the conversation, and any docs/links promised.
Search email history: Find the latest thread with this person across both Gmail accounts to get context, their email address, and the right account to reply from. If no prior thread exists with this recipient, default to {user.work_email} for professional/business contacts or {user.primary_email} for personal contacts. When ambiguous, use {user.work_email}.
Determine email type: follow-up, ping/check-in, intro, send-doc, etc.
Draft the email: Create a Gmail draft on the correct account (the one with the existing thread). If it's a reply, use --thread-id to keep it in the same thread.
Use all context together: Combine the meeting transcript (what was actually discussed), task description, and email history to write a specific, contextual draft. Never write generic follow-ups — reference concrete topics from the conversation.
Draft rules
- Mirror the language of the existing thread (English or Spanish)
- Keep it short — these are follow-ups and pings, not essays
- Sign with
{user.signature}
- If the task says "ping" or "check in" — write a brief, friendly nudge
- If the task says "send [thing]" — draft the email with the attachment reference (or attach if path is known)
- If the task says "intro" — follow intro format from email-drafting skill
- If recipient email can't be found — report it, don't skip silently
4. Notify via WhatsApp
Send a single WhatsApp message to {user.whatsapp} with:
📬 *Due-today drafts*
<N> email drafts created from today's Todoist tasks:
1. **<recipient>** — <one-line intent> (draft in <account>)
2. ...
Review and send when ready.
If tasks exist but none are outreach-type, report:
📋 *Due-today tasks (no drafts needed)*
<list of today's tasks — quick reference>
If no tasks due today → NO_REPLY (skip notification entirely).
5. Infrastructure
python3 {user.workspace}/scripts/cron_canary.py ping todoist-due-drafts
Error handling
- If
todoist-cli fails: notify via WhatsApp "⚠️ Todoist due-drafts failed: ", ping canary, exit.
- If Granola/Grain lookup fails for a task: continue without meeting context — draft from email history + task content only.
- If Gmail draft creation fails for one task: continue with remaining tasks, report failures in the notification.
- If no
.env file or token expired: report "⚠️ Todoist token unavailable — check agent-secrets lease" and exit.
Rules
- Don't complete the tasks — just draft and notify. User decides when to send.
- Before drafting, check if user already replied:
gog --account <account> --no-input gmail search "to:<recipient> in:sent newer_than:14d" --json. If recent sent mail exists in the same thread, skip drafting and note "already replied" in the notification.
- Check for existing drafts before creating:
gog --account <account> --no-input gmail drafts --json. If a draft already exists for the same thread (matching thread ID or recipient + subject), skip and note "draft already exists."
- Overdue outreach tasks get a ⚠️ prefix in the notification.
Overview
Scans Todoist for due and overdue tasks that involve outreach (pinging, emailing, following up), auto-drafts contextual emails using meeting transcripts and email history, and notifies via WhatsApp.
Prerequisites
todoist-cli installed with valid API token in workspace .env
gog CLI configured with both Gmail accounts
mcporter with Granola and Grain MCP connections for meeting context lookup
- WhatsApp delivery endpoint configured in
user.json
- OpenClaw workspace with
skill_log.py and cron_canary.py scripts
Instructions
See the Steps section above (Steps 1 through 5) for the full execution workflow.
Output
- Gmail drafts created on the appropriate account for each outreach task
- A single WhatsApp notification summarizing all drafts created, or a task list if no drafts were needed
- NO_REPLY if no tasks are due today
Examples
# The skill runs todoist-cli to find due tasks, identifies outreach items,
# pulls meeting context from Granola/Grain, drafts emails via gog, and notifies.
# Example WhatsApp output:
# "2 email drafts created from today's Todoist tasks:
# 1. Sarah Chen — follow-up on advisory scope (draft in work account)
# 2. David Park — intro to Marcos (draft in personal account)"
Resources
Source: jeremylongshore/claude-code-plugins-plus-skills → skills/.curated/todoist-due-drafts/SKILL.md
Also appears in: jeremylongshore/claude-code-plugins-plus-skills/plugins/business-tools/executive-assistant-skills/skills/todoist-due-drafts/SKILL.md
1---2name: todoist-due-drafts3description: Check Todoist for tasks due today (and overdue) that involve pinging, emailing, or following up with someone. Auto-draft the emails using meeting context and notify via WhatsApp. Use when running the daily due-drafts cron, or when user asks to process email tasks from Todoist.4---5
6# Todoist Due-Today Email Drafts
7
8## Config — read before starting
9
10Read `../config/user.json` (resolves to `~/executive-assistant-skills/config/user.json`).
11Extract and use throughout:
12
13- `primary_email`, `work_email` — Gmail accounts
14- `whatsapp` — for notification delivery
15- `workspace` — absolute path to OpenClaw workspace
16- `signature` — email signature
17
18## Debug Logging (MANDATORY)
19
20Read `../config/DEBUG_LOGGING.md` for the full convention. Use `python3 {user.workspace}/scripts/skill_log.py todoist-due-drafts <level> "<message>" ['<details>']` at every key step. Log BEFORE and AFTER every external call (todoist-cli, gog, mcporter). On any error, log the full command and stderr before continuing.
21
22## Steps
23
24### 1. Get today's due tasks from Todoist
25
26```bash
27source {user.workspace}/.env
28todoist-cli today --json
29```
30
31Also check overdue tasks:
32
33```bash
34todoist-cli list --filter "overdue" --json
35```
36
37### 2. Identify email/ping tasks
38
39Filter for tasks whose content matches outreach intent:
40
41- Keywords: `ping`, `email`, `follow up`, `follow-up`, `send`, `reach out`, `text`, `message`, `intro`, `connect`, `check in`, `nudge`, `reply`, `respond`, `draft`
42- Pattern: any task that implies sending a communication to a specific person
43
44Skip tasks that are clearly NOT outreach (e.g. "review doc", "read report", "build proposal").
45
46### 3. For each outreach task, draft the email
47
48Read and follow `~/executive-assistant-skills/email-drafting/SKILL.md` for all drafting rules.
49
50For each task:
51
521. **Identify the recipient**: Extract person/company name from task content + description
532. **Pull meeting context (if available)**: If the task description references a meeting name, date, or was created by the action-items cron (check for Granola citation links or meeting metadata in description), retrieve the transcript via Granola/Grain. If no meeting reference exists in the task, skip directly to step 3 — draft from email history and task content alone.
54
55 ```bash
56 # Find the meeting in Granola
57 mcporter call granola list_meetings --args '{"time_range": "custom", "custom_start": "<meeting-date>", "custom_end": "<meeting-date+1>"}'
58 # Query for what was discussed with this person
59 mcporter call granola query_granola_meetings --args '{"query": "What did {user.name} discuss with <recipient> and what did he promise or commit to do?", "document_ids": ["<meeting_id>"]}'
60 ```
61
62 Then cross-check with Grain for the full transcript:
63
64 ```bash
65 mcporter call grain.list_attended_meetings --args '{}'
66 # Note: Grain's schema does not support `start_date`/`end_date` filters. Call with empty args and filter the results manually by `start_datetime` to match the meeting date range.
67 mcporter call grain.fetch_meeting_transcript --args '{"meeting_id": "<grain_meeting_id>"}'
68 ```
69
70 When meeting context is available, the email draft must reflect what was actually said — not just the task title. Look for: specific commitments, timelines discussed, names/projects mentioned, tone of the conversation, and any docs/links promised.
713. **Search email history**: Find the latest thread with this person across both Gmail accounts to get context, their email address, and the right account to reply from. If no prior thread exists with this recipient, default to `{user.work_email}` for professional/business contacts or `{user.primary_email}` for personal contacts. When ambiguous, use `{user.work_email}`.
724. **Determine email type**: follow-up, ping/check-in, intro, send-doc, etc.
735. **Draft the email**: Create a Gmail draft on the correct account (the one with the existing thread). If it's a reply, use `--thread-id` to keep it in the same thread.
746. **Use all context together**: Combine the meeting transcript (what was actually discussed), task description, and email history to write a specific, contextual draft. Never write generic follow-ups — reference concrete topics from the conversation.
75
76#### Draft rules
77
78- Mirror the language of the existing thread (English or Spanish)
79- Keep it short — these are follow-ups and pings, not essays
80- Sign with `{user.signature}`
81- If the task says "ping" or "check in" — write a brief, friendly nudge
82- If the task says "send [thing]" — draft the email with the attachment reference (or attach if path is known)
83- If the task says "intro" — follow intro format from email-drafting skill
84- If recipient email can't be found — report it, don't skip silently
85
86### 4. Notify via WhatsApp
87
88Send a single WhatsApp message to {user.whatsapp} with:
89
90```
91📬 *Due-today drafts*
92
93<N> email drafts created from today's Todoist tasks:
94
951. **<recipient>** — <one-line intent> (draft in <account>)
962. ...
97
98Review and send when ready.
99```
100
101If tasks exist but none are outreach-type, report:
102
103```
104📋 *Due-today tasks (no drafts needed)*
105
106<list of today's tasks — quick reference>
107```
108
109If no tasks due today → NO_REPLY (skip notification entirely).
110
111### 5. Infrastructure
112
113```bash
114python3 {user.workspace}/scripts/cron_canary.py ping todoist-due-drafts
115```
116
117## Error handling
118
119- If `todoist-cli` fails: notify via WhatsApp "⚠️ Todoist due-drafts failed: <error>", ping canary, exit.
120- If Granola/Grain lookup fails for a task: continue without meeting context — draft from email history + task content only.
121- If Gmail draft creation fails for one task: continue with remaining tasks, report failures in the notification.
122- If no `.env` file or token expired: report "⚠️ Todoist token unavailable — check agent-secrets lease" and exit.
123
124## Rules
125
126- Don't complete the tasks — just draft and notify. User decides when to send.
127- Before drafting, check if user already replied: `gog --account <account> --no-input gmail search "to:<recipient> in:sent newer_than:14d" --json`. If recent sent mail exists in the same thread, skip drafting and note "already replied" in the notification.
128- Check for existing drafts before creating: `gog --account <account> --no-input gmail drafts --json`. If a draft already exists for the same thread (matching thread ID or recipient + subject), skip and note "draft already exists."
129- Overdue outreach tasks get a ⚠️ prefix in the notification.
130
131## Overview
132
133Scans Todoist for due and overdue tasks that involve outreach (pinging, emailing, following up), auto-drafts contextual emails using meeting transcripts and email history, and notifies via WhatsApp.
134
135## Prerequisites
136
137- `todoist-cli` installed with valid API token in workspace `.env`
138- `gog` CLI configured with both Gmail accounts
139- `mcporter` with Granola and Grain MCP connections for meeting context lookup
140- WhatsApp delivery endpoint configured in `user.json`
141- OpenClaw workspace with `skill_log.py` and `cron_canary.py` scripts
142
143## Instructions
144
145See the Steps section above (Steps 1 through 5) for the full execution workflow.
146
147## Output
148
149- Gmail drafts created on the appropriate account for each outreach task
150- A single WhatsApp notification summarizing all drafts created, or a task list if no drafts were needed
151- NO_REPLY if no tasks are due today
152
153## Examples
154
155```bash
156# The skill runs todoist-cli to find due tasks, identifies outreach items,
157# pulls meeting context from Granola/Grain, drafts emails via gog, and notifies.
158# Example WhatsApp output:
159# "2 email drafts created from today's Todoist tasks:
160# 1. Sarah Chen — follow-up on advisory scope (draft in work account)
161# 2. David Park — intro to Marcos (draft in personal account)"
162```
163
164## Resources
165
166- [Todoist REST API](https://developer.todoist.com/rest/v2/)
167- [Gmail API](https://developers.google.com/gmail/api)
168- [Granola API](https://granola.ai/docs)
169- Grain API
170
171---
172
173**Source:** [`jeremylongshore/claude-code-plugins-plus-skills`](https://github.com/jeremylongshore/claude-code-plugins-plus-skills) → `skills/.curated/todoist-due-drafts/SKILL.md`
174
175**Also appears in:** `jeremylongshore/claude-code-plugins-plus-skills/plugins/business-tools/executive-assistant-skills/skills/todoist-due-drafts/SKILL.md`