Claude-ops ops-inbox
Full inbox management across all channels — WhatsApp (wacli), Email (Gmail MCP), Slack (MCP), Telegram (user-auth MCP), Discord (webhook + REST read), Notion (MCP — comments, mentions, assigned tasks). Scans FULL inbox (not just unread), identifies messages needing replies, archives handled conversations.
git clone https://github.com/Lifecycle-Innovations-Limited/claude-ops
T=$(mktemp -d) && git clone --depth=1 https://github.com/Lifecycle-Innovations-Limited/claude-ops "$T" && mkdir -p ~/.claude/skills && cp -r "$T/claude-ops/skills/ops-inbox" ~/.claude/skills/lifecycle-innovations-limited-claude-ops-ops-inbox && rm -rf "$T"
claude-ops/skills/ops-inbox/SKILL.mdOPS ► INBOX ZERO
Runtime Context
Before executing, load available context:
-
Preferences: Read
${CLAUDE_PLUGIN_DATA_DIR:-$HOME/.claude/plugins/data/ops-ops-marketplace}/preferences.json
— which channels to scan by defaultdefault_channels
/secrets_manager
— how to resolve channel credentials if not in envdoppler
-
Daemon health: Read
${CLAUDE_PLUGIN_DATA_DIR}/daemon-health.json- Check
status — if not running or auth needed, skip WhatsApp and surface the issuewacli-sync - Also check
for live auth status before any wacli command~/.wacli/.health
- Check
-
Ops memories: Check
before drafting any reply:${CLAUDE_PLUGIN_DATA_DIR}/memories/
— load profile for the contact you're about to reply tocontact_*.md
— apply user's communication style and language preferencespreferences.md
— check for active threads or deadlines related to this contacttopics_active.md
— never violate these restrictions in draftsdonts.md
CLI/API Reference
wacli (WhatsApp)
Health file — check
~/.wacli/.health BEFORE any wacli command:
→ proceed normallystatus=connected
→ prompt user: "Runstatus=needs_auth
in terminal, scan QR"wacli auth
→ prompt user: "WhatsApp session expired. Runstatus=needs_reauth
to re-pair"wacli auth- File missing → fall back to
wacli doctor --json
| Command | Usage | Output |
|---|---|---|
| Check auth/connected/lock/FTS | |
| All chats | |
| Messages for chat | |
| FTS search | Same as above |
| Contact lookup | Contact objects |
| Send text | Success/error |
| Fetch older messages | Backfill result |
gog CLI (Gmail/Calendar)
| Command | Usage | Output |
|---|---|---|
| Full inbox scan | JSON array of threads |
| Get full thread with all messages | Full message JSON |
| Get single message | Message JSON |
| Archive messages (remove from inbox) | Archive result |
| Archive by query | Archive result |
| Send email | Send result |
| Reply all | Send result |
| Mark as read | Result |
| List all labels | Labels JSON |
Agent Teams support
If
CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1 is set, use Agent Teams when processing "all channels" mode. This enables:
- Channel agents run in parallel but can share context (e.g., WhatsApp agent finds a message referencing an email thread → email agent can prioritize it)
- You can steer agents: "skip WhatsApp for now, focus on email first"
- Agents report completion per-channel so you can process replies as they come in
Team setup (only when flag is enabled, "all channels" mode):
TeamCreate("inbox-channels") Agent(team_name="inbox-channels", name="whatsapp-scanner", ...) Agent(team_name="inbox-channels", name="email-scanner", ...) Agent(team_name="inbox-channels", name="slack-scanner", ...) Agent(team_name="inbox-channels", name="telegram-scanner", ...) Agent(team_name="inbox-channels", name="notion-scanner", ...)
Each agent scans its channel and reports back classified results. You then process NEEDS_REPLY items across all channels in priority order.
If the flag is NOT set, process channels sequentially or use fire-and-forget subagents.
Pre-gathered data
${CLAUDE_PLUGIN_ROOT}/../../bin/ops-unread 2>/dev/null || echo '{}'
Environment variables
All channel credentials come from env vars or CLI auth — no hardcoded secrets.
| Variable | Default | Purpose |
|---|---|---|
| auto-detect | Gmail account for CLI |
| | Set when Slack MCP server is configured |
| | Set when Telegram user-auth MCP is configured |
| | Set when Notion MCP integration is configured |
| | wacli store directory |
Core principle: FULL INBOX SCAN
Do NOT just check unread. Scan the FULL recent inbox for each channel and classify every conversation:
Core principle: FULL CONTEXT — NEVER ASSUME
CRITICAL SAFETY RULE — NEVER SEND WITHOUT UNDERSTANDING: Before drafting or sending ANY reply on ANY channel, you MUST have read the FULL conversation history (20+ messages) and PROVEN you understand it by summarizing:
- What the conversation is about
- What each party said (distinguish user messages from contact messages)
- What the contact is actually asking/saying in their last message
- What a sensible reply would address
Failure mode this prevents: An agent reads only the last message "je kan het toch uit Klaviyo halen?" and replies "Welke data heb je nodig?" — completely wrong because the contact was telling the user to pull data themselves (they have 2FA), not asking for data. Without the full thread, the reply was nonsensical and confused the contact.
Hard rule: if you cannot summarize the conversation arc in 2 sentences, you have not read enough messages. Go back and read more.
The user does NOT remember every thread. For EVERY message you present, you MUST build full context BEFORE showing it. Never show just a subject line and ask "what do you want to do?" — the user needs to understand what it's about first.
For every NEEDS REPLY item, gather this context automatically:
- Full thread body — read the ENTIRE thread (
/gog gmail thread get
), not just the last message. Summarize the full conversation arc.wacli messages list --limit 20 - Contact profile — search across channels to build a card:
— recent email historygog gmail search "from:<contact_email>" --max 10
— WhatsApp presencewacli contacts --search "<name>" --json
— recent WhatsApp mentionswacli messages search --query "<name>" --json --limit 5- If Linear configured: search for issues assigned to or mentioning this contact
- Present: who they are, role/company, last N interactions, relationship context
- Topic context — identify the subject matter and search for related threads:
— related email threadsgog gmail search "subject:<keywords>" --max 5
— related WA messageswacli messages search --query "<topic keywords>" --json --limit 5- Summarize: what this topic is about, any deadlines, any pending decisions
- ops-memories (if available) — check
for any stored context about this contact or topic~/.claude/plugins/data/ops-ops-marketplace/memories/
When presenting a NEEDS REPLY item:
━━━ [Contact Name] — [Subject] ━━━ Who: [role, company, relationship — from contact search] History: [last 3 interactions across channels] Thread: [2-3 sentence summary of full conversation arc] Last msg: [full body of their last message] Context: [related threads/decisions/deadlines found] Draft reply: "[contextually aware draft based on all above]" [Send] [Edit] [Read full thread] [Skip]
When drafting replies:
-
Use the full thread history to maintain conversation continuity
-
Reference specific points from their message
-
Match the contact's communication style (formal/casual, language)
-
If ops-memories has preferences for this contact, apply them
-
Never generate a generic reply — every draft must show you read the full thread
-
NEEDS REPLY — other party sent last message, awaiting your response
-
WAITING — you sent last message, waiting for them (no action needed)
-
HANDLED — conversation concluded, can be archived
-
FYI — newsletters, notifications, automated messages (bulk archive)
Channel availability + fallback
For each channel, detect availability at runtime:
- Email: Try
CLI first. Ifgog
unavailable, trygog
MCP tools. If neither, report unavailable.mcp__gog__gmail_* - WhatsApp: First check
for keepalive daemon status. If~/.wacli/.health
orstatus=needs_auth
, do NOT attempt wacli commands — instead prompt the user: "WhatsApp needs re-authentication. Runstatus=needs_reauth
in a separate terminal and scan the QR code, then type 'done'." Usewacli auth
:AskUserQuestion
,[Done — re-paired]
. On Done, restart the daemon:[Skip WhatsApp]
, wait 5s, re-check health. If no health file exists, fall back tolaunchctl kickstart -k gui/$(id -u)/com.claude-ops.wacli-keepalive
for auth/connection status. If outdated (405 error), advise rebuilding from source.wacli doctor - Slack: Only via MCP tools (
). Checkmcp__claude_ai_Slack__*
env var.SLACK_MCP_ENABLED - Telegram: Only via user-auth MCP (tdlib/MTProto). Check
env var. Never use BotFather bots.TELEGRAM_ENABLED - Discord: Via
. Requires${CLAUDE_PLUGIN_ROOT}/bin/ops-discord read <CHANNEL_ID> --limit 20 --json
(v1 is channel-scoped — no DM/gateway support yet). Pre-configured read list lives atDISCORD_BOT_TOKEN
under${CLAUDE_PLUGIN_DATA_DIR}/preferences.json
(array of channel IDs). If neither a bot token nor a read list is configured, skip Discord with a one-line note ("Discord not configured — rundiscord.inbox_channels
") rather than prompting — ops-inbox is not a setup flow. Rule 3 still applies to/ops:setup discord
./ops:setup - Notion: Only via MCP tools (
or self-hosted Notion MCP). Checkmcp__claude_ai_Notion__*
env var. Searches workspace for recent comments, mentions, and assigned tasks.NOTION_MCP_ENABLED
Your task
-
Parse pre-gathered data for initial counts (unread is just a starting signal).
-
For each channel, run a FULL scan (not just unread):
- Email: Search
(notin:inbox
) viais:unread
. For each thread, read the last message to determine who sent it last. Check for DRAFT or SENT labels. Before suggesting to send a draft, verify no reply was already sent in the thread.gog gmail search -a $GMAIL_ACCOUNT -j --results-only --no-input --max 30 "in:inbox" - WhatsApp: Run
to get all chats. Filter to non-archived chats withwacli chats list --json
in the last 7 days. For each, fetch the FULL conversation viaLastMessageTS
(20 messages, not 5 — you need the full thread). Parsewacli messages list --chat <JID> --limit 20 --json
with fieldsdata.messages[]
,FromMe
,Text
,Timestamp
. Understand which messages are from the user (ChatName
) vs the contact (FromMe: true
). Classify by last messageFromMe: false
field.FromMe - Slack: Search via Slack MCP tools. Check who sent last message in each thread.
- Telegram: Use user-auth MCP (NOT bot API) to read recent conversations.
- Email: Search
-
Display the full inbox:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ OPS ► INBOX MANAGER ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 📱 WhatsApp [N need reply] | [N waiting] | [N archive] 📧 Email [N need reply] | [N waiting] | [N FYI] 💬 Slack [N need reply] | [N waiting] ✈️ Telegram [N need reply] | [N waiting] ──────────────────────────────────────────────────────
Use batched AskUserQuestion calls (max 4 options each). Only show channels that are configured and have messages. If <=4 total options, use a single call.
AskUserQuestion call 1:
[All channels (fastest — one pass)] [WhatsApp only] [Email only] [More...]
AskUserQuestion call 2 (only if "More..."):
[Slack only] [Telegram only] [Skip — already done]
If only 3 channels are configured, "All channels" + 3 channel options = 4, fits in one call. Then process the selected channel(s).
Processing each channel
WhatsApp (FULL SCAN + DEEP CONTEXT)
Phase 1 — Classify:
- Get all chats:
wacli chats list --json - Filter to chats with
in the last 7 daysLastMessageTS - For each, fetch the FULL recent conversation:
— get 20 messages, NOT 5. You need the full conversation thread to understand context.wacli messages list --chat "<JID>" --limit 20 --json - Parse
— fields:data.messages[]
,FromMe
,Text
,Timestamp
,ChatNameSenderName - For EVERY chat, understand the conversation:
- Read ALL messages in order. Know which are
(user sent) vsFromMe: true
(contact sent)FromMe: false - Understand what the conversation is about, what was discussed, what's pending
- Identify the user's tone and style in their sent messages
- Read ALL messages in order. Know which are
- Classify each chat:
- NEEDS REPLY: Last message has
(they sent last)FromMe: false - WAITING: Last message has
(you sent last)FromMe: true - ARCHIVE: Old conversation, no recent activity, or concluded
- NEEDS REPLY: Last message has
Phase 2 — Build context for NEEDS REPLY chats (run in parallel): For each NEEDS REPLY chat:
- Full conversation summary — read all 20 messages, summarize the arc: what was discussed, key decisions, open questions
- Contact profile — search for this person:
— mentions in other chatswacli messages search --query "<contact_name>" --json --limit 10
— email historygog gmail search -j --results-only --no-input --max 5 "from:<name> OR to:<name>"- Check
for stored profile~/.claude/plugins/data/ops-ops-marketplace/memories/contact_*.md - Build: who they are, relationship, communication history across channels
- Topic context — extract keywords from the conversation and search:
— related WA messageswacli messages search --query "<topic keywords>" --json --limit 5
— related emailsgog gmail search -j --results-only --no-input --max 3 "<topic keywords>"
- User's messaging style — from the
messages in this chat, note: language (NL/EN), formality, emoji usage, typical response lengthFromMe: true
Phase 3 — Present with full context:
📱 WHATSAPP — NEEDS REPLY (with context) ━━━ 1. [Contact Name] ━━━ Who: [role, company, relationship — from contact search] History: [last 3 interactions across channels] Conversation: [2-3 sentence summary of the full chat thread] Their message: [full text of their last message(s)] Your last msg: [what you said before they replied] Context: [related threads/topics found] Language: [NL/EN — match the user's previous messages in this chat] Draft reply: "[context-aware draft matching user's style + language]" [Send] [Edit] [Read full thread] [More...] If "More...": [Archive] [Skip] 📱 WHATSAPP — WAITING (no action needed) N. [Contact] — you said: "[your last message]" — [time ago] Thread: [1-line summary of what you're waiting for]
Use
AskUserQuestion for each NEEDS REPLY chat.
When drafting WhatsApp replies:
- Match the user's language (if they wrote Dutch to this contact, draft in Dutch)
- Match the user's style (casual/formal, emoji usage, message length)
- Reference specific points from the contact's message
- If ops-memories has preferences for this contact, apply them
- Never generate a generic reply — every draft must show you understood the full conversation
Reply via:
wacli send --to "<JID>" --message "<msg>"
wacli CLI reference (v0.5.0):
| Command | Usage | Notes |
|---|---|---|
| | Check auth/connected/lock/FTS status |
| | QR pairing (interactive — shows QR in terminal) |
| | Persistent sync (managed by launchd keepalive) |
| | One-shot sync, exits when idle |
| | All chats with JID, Name, Kind, LastMessageTS |
| | Messages: ChatJID, FromMe, Text, Timestamp, SenderName |
| | FTS5 search across all messages |
| | Contact lookup by name |
| | Send text message |
| | Fetch older messages from phone (needs store lock) |
Health file contract (
):~/.wacli/.health
Before ANY wacli command, read
~/.wacli/.health:
→ proceed normallystatus=connected
→ prompt user: "Runstatus=needs_auth
in terminal, scan QR"wacli auth
→ prompt user: "WhatsApp session expired. Runstatus=needs_reauth
to re-pair"wacli auth- File missing → fall back to
wacli doctor --json
Requesting backfill for @lid chats with empty messages:
The keepalive daemon holds the store lock, so you can't run backfill directly. Instead:
- Write JIDs to
(one per line)~/.wacli/.backfill_jids - Restart the daemon:
launchctl kickstart -k gui/$(id -u)/com.claude-ops.wacli-keepalive - The daemon runs backfill before starting persistent sync
wacli troubleshooting:
JIDs (linked device format) may return empty messages → request backfill via the daemon (see above)@lid- "Client outdated (405)" → rebuild from source:
cd /tmp && git clone https://github.com/Lifecycle-Innovations-Limited/wacli.git && cd wacli && go build -o /usr/local/bin/wacli ./cmd/wacli/ - "store is locked" → the keepalive daemon holds the lock; to release:
launchctl bootout gui/$(id -u)/com.claude-ops.wacli-keepalive - Auth expired → daemon writes
to health file; prompt user for QR scanneeds_auth - Key desync (0 messages synced) → daemon writes
; user needsneeds_reauth
re-pairwacli auth
Email (FULL SCAN + DEEP CONTEXT)
Phase 1 — Classify:
- Search
(NOTin:inbox
) viais:unreadgog gmail search -a $GMAIL_ACCOUNT -j --results-only --no-input --max 30 "in:inbox" - For each thread, read the FULL thread via
— read ALL messages, not just the last onegog gmail thread get -a $GMAIL_ACCOUNT <threadId> -j - Check the last message's
header andFrom
(SENT, DRAFT)labelIds - Classify:
- NEEDS REPLY: Last sender is NOT you AND no unsent draft exists → action needed
- WAITING: Last sender IS you (SENT label) → waiting for response
- DRAFT: Unsent draft exists → verify no reply already sent, then offer to send
- FYI: Newsletters, automated notifications, receipts → bulk archive
Phase 2 — Build context for NEEDS REPLY items (run in parallel): For each NEEDS REPLY thread, gather:
- Full thread summary — read every message in the thread, summarize the conversation arc (who said what, key decisions, open questions)
- Contact profile — for the sender:
— their recent emails to yougog gmail search -j --results-only --no-input --max 10 "from:<sender_email>"
— WhatsApp contactwacli contacts --search "<sender_name>" --json
— recent WhatsApp mentionswacli messages search --query "<sender_name>" --json --limit 5- Build: name, role/company, relationship history, last N interactions
- Topic search — extract key terms from subject + body, then:
— related threadsgog gmail search -j --results-only --no-input --max 5 "subject:<keywords>"- Identify: pending decisions, deadlines, action items from related threads
Phase 3 — Present with full context:
📧 EMAIL — NEEDS REPLY (with context) ━━━ 1. [Sender] — [Subject] ━━━ Who: [sender's role, company — from contact search] History: [last 3 email exchanges with this person] Thread summary: [2-3 sentences covering the full conversation arc] Their message: [full body of their last message — NOT truncated] Related: [any related threads or pending decisions found] Draft reply: "[context-aware draft using full thread + contact history]" [Send draft] [Edit draft] [Read full thread] [More...] If "More...": [Archive] [Skip] 📧 EMAIL — DRAFTS (unsent) N. [Recipient] — [Subject] (draft ready to send) 📧 EMAIL — FYI / ARCHIVE N. [Sender] — [Subject] (newsletter/notification) For each NEEDS REPLY: a) Read full thread + draft reply b) Archive (no reply needed) c) Skip For FYI section: x) Archive all FYI at once
Use
AskUserQuestion for each NEEDS REPLY email with options [Read + Reply] / [Archive] / [Skip].
When replying, draft the reply and use
AskUserQuestion to confirm:
Reply to [Sender] — [Subject]: "[drafted reply]" [Send] [Edit] [Skip]
For FYI bulk archive, use
AskUserQuestion:
Archive N FYI/newsletter emails? [list of subjects] [Archive all N] [Review each] [Skip]
Draft replies via
gog gmail send. Archive via gog gmail archive <messageId> ... --no-input --force.
Slack
Use Slack MCP tools with
query: "in:*" (NOT is:unread — scan full recent activity, not just unread) for mentions.
For each result, show channel, sender, preview. Read thread for context.
a) Read thread b) Reply c) Mark read / skip
Telegram (FULL SCAN — User Account, NOT Bot)
Telegram integration must authenticate as the user's personal account (user-auth via tdlib/MTProto), NOT a BotFather bot. The goal is to manage real conversations just like WhatsApp via wacli.
Use the Telegram user-auth MCP server if available.
- List recent dialogs/conversations (last 7 days)
- For each, check who sent the last message
- Classify: NEEDS REPLY / WAITING / HANDLED
✈️ TELEGRAM — NEEDS REPLY 1. [Contact] — [preview] — [time ago] a) Read thread + reply b) Archive c) Skip
If no Telegram user-auth tool is available, report: "Telegram not configured — needs user-auth MCP server (tdlib/MTProto)".
Notion (MCP — comments, mentions, assigned tasks)
Notion serves as a knowledge base and task management channel. Unlike messaging channels, Notion "inbox" items are:
- Comments on pages you own or are mentioned in
- Tasks assigned to you in tracked databases
- Recently updated pages in databases you monitor
Phase 1 — Discover and scan:
- Search for recent activity using
:mcp__claude_ai_Notion__notion-search- Use broad queries like
(empty string returns recent pages) or topic-specific termsquery: "" - Use
to limit to pages (not databases)filter: {"property": "object", "value": "page"} - Sort by
descending to surface recent activitylast_edited_time - Note: Notion search is full-text over titles/content — it does NOT support mention-based queries or date range filters
- Use broad queries like
- For each result, fetch full content:
with the page URL/IDmcp__claude_ai_Notion__notion-fetch - Get comments on active pages:
with the page ID — scan comment authors and timestamps to determine which need repliesmcp__claude_ai_Notion__notion-get-comments
Phase 2 — Classify:
For each page with comments or mentions:
- NEEDS REPLY: Someone commented/mentioned you and you haven't responded
- WAITING: You commented last, waiting for others
- FYI: Page updated but no direct mention or action needed
- TASK: Item assigned to you in a database (check status property)
Phase 3 — Present with context:
📓 NOTION — NEEDS REPLY ━━━ 1. [Page Title] — [Database Name] ━━━ Page: [page URL] Comment by: [commenter name] — [time ago] Comment: "[full comment text]" Page context: [2-3 sentence summary of the page content] Draft reply: "[context-aware reply to the comment]" [Reply] [View page] [Skip] [More...] If "More...": [Mark resolved] [Archive] 📓 NOTION — ASSIGNED TASKS N. [Task title] — [database] — Status: [status] — Due: [date] Context: [1-line summary] 📓 NOTION — RECENTLY UPDATED (FYI) N. [Page title] — updated by [person] — [time ago]
Use
AskUserQuestion for each NEEDS REPLY item.
When replying to Notion comments:
- Use
with the page ID and reply textmcp__claude_ai_Notion__notion-create-comment - Match the formality of the original comment
- Reference specific page content when relevant
When updating tasks:
- Use
to change status, add notesmcp__claude_ai_Notion__notion-update-page - Only update properties the user explicitly approves
API fallback (when MCP is down): If Notion MCP tools fail or are unavailable but
NOTION_API_KEY is set, fall back to direct API:
curl -s -H "Authorization: Bearer $NOTION_API_KEY" -H "Notion-Version: 2022-06-28" \ -H "Content-Type: application/json" \ -X POST https://api.notion.com/v1/search \ -d '{"sort":{"direction":"descending","timestamp":"last_edited_time"},"page_size":10}'
If
NOTION_MCP_ENABLED is not set or Notion MCP tools are unavailable, report: "Notion not configured — set NOTION_MCP_ENABLED=true and add Notion integration via claude.ai or self-hosted MCP".
Discord (v1 — REST channel scan)
Discord v1 support is channel-scoped (webhook send + REST read). DM + gateway are deferred to a v2 issue.
- Resolve the read list: read
→${CLAUDE_PLUGIN_DATA_DIR}/preferences.json
. If empty anddiscord.inbox_channels[]
is set, fall back toDISCORD_GUILD_ID
(list the guild's text channels and let the user pick viabin/ops-discord channels --json
, ≤4 per Rule 1 — paginate withAskUserQuestion
).[More...] - For each channel ID:
${CLAUDE_PLUGIN_ROOT}/bin/ops-discord read "<CHANNEL_ID>" --limit 20 --json - Classify each channel's recent messages:
- NEEDS REPLY: Latest non-bot message mentions the operator (
) or is a direct question.<@user-id> - FYI: Bot-posted notifications (CI, alerts) — summarize counts and skip.
- NEEDS REPLY: Latest non-bot message mentions the operator (
- For replies, reuse the
path documented insend
→ Discord send.skills/ops-comms/SKILL.md
If
bin/ops-discord exits 1 with {"error":"no discord credential configured — run /ops:setup discord"}, print a single-line note and continue to the next channel — do not prompt inside the inbox flow.
💬 DISCORD — activity (last 7d) #channel-name [N messages] | [M need reply]
Completion
After all selected channels are processed, print:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ INBOX ZERO ✓ — [timestamp] Processed: [N] messages | Replied: [N] | Archived: [N] ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
If
$ARGUMENTS specifies a channel (e.g. whatsapp), skip the menu and go directly to that channel.
Native tool usage
Tasks — inbox progress
Use
TaskCreate for each channel being processed. Update with TaskUpdate as messages are replied/archived/skipped. Gives the user a live inbox-zero progress bar.
Cron — scheduled inbox checks
After processing, offer to schedule recurring inbox checks via
AskUserQuestion:
[Schedule inbox check every 2 hours] [Schedule morning + evening] [No schedule]
Use
CronCreate if selected. Show existing schedules with CronList.