Channel Catchup
Creating a concise catch-up or summary of channel content.
Examples:
- "Summarize the last 50 messages from
#announcements and #engineering."
- "Give me the important posts from our HybridAI Discord server today."
- "Catch me up on this email thread."
- "Summarize what happened in the current TUI session."
Default To Action
Do not reflexively ask for scope if you can already do a useful catch-up from available context and tools.
Default to the broadest safe scope you can actually resolve:
- If channels are explicit, use them.
- If the platform/thread is explicit and no count is given, use sensible defaults.
- If the request is broad but concrete targets are already visible in context or tool output, read them and summarize.
- Only ask a clarification when no concrete readable target can be resolved without guessing.
When a reasonable assumption is needed, make it, do the catch-up, and state the assumption after the summary instead of blocking first.
Default limits when the user did not specify them:
- Discord: last 50 messages per resolved channel
- Email: last 20 messages from the current or explicit ingested thread
- If no timeframe is provided, summarize the most recent activity visible in those reads
Scope Resolution
Resolve scope aggressively instead of asking for it.
Use these defaults:
- if the platform is clear, proceed on that platform
- if the target set is broad, use all concrete readable targets you can already resolve
- if no timeframe is given, prefer the latest visible activity
- if no count is given, use the default limits above
Only ask a clarification when you cannot identify any concrete readable target without guessing.
If you had to infer scope, note the assumption after the answer in one short line and keep moving.
Channel-Specific Workflow
Discord
- Use
message with action="read" for each target channel before summarizing.
- Prefer explicit channel IDs. If the user gives
#channel-name, include guildId.
- Read each channel separately, then merge findings into one summary.
- Do not say you need pasted messages if you can read the requested Discord channels directly.
- If the user names a Discord server but not channels, default to all concrete readable channels you can already resolve from context, tool descriptions, prior tool output, or the current server context.
- If the ask is broad and you can resolve multiple channels, prefer covering more channels over asking for narrower scope.
- If channels are explicit but timeframe is missing, read the recent bounded sample and summarize it as the latest activity instead of blocking on timeframe selection.
- Ask only if you still cannot identify any concrete readable channels without guessing.
Recommended pattern:
{"action":"read","channelId":"#announcements","guildId":"1412305846125203539","limit":50}
Example user ask:
Use message read to fetch the last 50 messages from #announcements, #general, and #engineering in guild 1412305846125203539, then summarize the last 24 hours.
Email
- Use
message with action="read" for the current ingested email thread or an explicit email address.
- If already in email context, omit
channelId to read the current thread.
- Email read only covers threads already ingested by the gateway.
- Do not claim mailbox-wide unread inbox access. That capability does not exist here.
Recommended patterns:
{"action":"read","limit":20}
{"action":"read","channelId":"user@example.com","limit":20}
WhatsApp
- There is no first-class WhatsApp history read action yet.
- If the current session context already contains the relevant conversation, summarize that directly.
- Otherwise ask for a pasted transcript/export or clearly state that full historical WhatsApp catch-up is not available through tools yet.
- Only use
session_search if the user wants topic-based recall and accepts approximate recall rather than a strict "last N messages" summary.
TUI / Local
- There is no first-class TUI history read action yet.
- If the needed content is already in the current session context, summarize it directly.
- Otherwise ask for a transcript/export or narrower current-session scope.
- Do not pretend you can fetch arbitrary historical TUI messages when no direct read path exists.
Synthesis Rules
After reading the scoped content:
- lead with the few most important updates
- separate facts from inferred significance
- include decisions, blockers, and follow-ups if present
- compress repetition
- do not quote large message dumps unless the user asks
Default summary shape:
- top 3-7 important updates
- decisions made
- open questions / blockers
- action items
If the user asks for "short", keep it to a tight executive summary.
Constraints
- Never summarize unseen content as if you read it.
- Do not use
session_search as a substitute for chronological channel reads when the user explicitly asked for the last N messages from Discord or email.
- For multi-channel Discord catchups, read first, summarize second.
- Prefer doing a broad useful catch-up over asking for scope. If in doubt, cover all readable channels or threads with visible activity that you can actually resolve, then mention your assumption afterward. Do not invent channels, guilds, or mailbox access that the tools did not reveal.
- For email catchups, preserve thread context and reply in normal email style if responding by email.
- If replying by email, append a polished corporate signature block derived from
IDENTITY.md details already loaded in context. Prefer full name, role, organization, and any real contact details that are present. Do not invent contact details, and do not use emoji or mascot-style sign-offs.
1---2name: channel-catchup3description: Summarize recent activity across Discord, ingested email threads, WhatsApp, and TUI channels.4---5# Channel Catchup67Creating a concise catch-up or summary of channel content.89Examples:1011- "Summarize the last 50 messages from `#announcements` and `#engineering`."12- "Give me the important posts from our HybridAI Discord server today."13- "Catch me up on this email thread."14- "Summarize what happened in the current TUI session."1516## Default To Action1718Do not reflexively ask for scope if you can already do a useful catch-up from available context and tools.1920Default to the broadest safe scope you can actually resolve:2122- If channels are explicit, use them.23- If the platform/thread is explicit and no count is given, use sensible defaults.24- If the request is broad but concrete targets are already visible in context or tool output, read them and summarize.25- Only ask a clarification when no concrete readable target can be resolved without guessing.2627When a reasonable assumption is needed, make it, do the catch-up, and state the assumption after the summary instead of blocking first.2829Default limits when the user did not specify them:3031- Discord: last 50 messages per resolved channel32- Email: last 20 messages from the current or explicit ingested thread33- If no timeframe is provided, summarize the most recent activity visible in those reads3435## Scope Resolution3637Resolve scope aggressively instead of asking for it.3839Use these defaults:40411. if the platform is clear, proceed on that platform422. if the target set is broad, use all concrete readable targets you can already resolve433. if no timeframe is given, prefer the latest visible activity444. if no count is given, use the default limits above4546Only ask a clarification when you cannot identify any concrete readable target without guessing.47If you had to infer scope, note the assumption after the answer in one short line and keep moving.4849## Channel-Specific Workflow5051### Discord5253- Use `message` with `action="read"` for each target channel before summarizing.54- Prefer explicit channel IDs. If the user gives `#channel-name`, include `guildId`.55- Read each channel separately, then merge findings into one summary.56- Do not say you need pasted messages if you can read the requested Discord channels directly.57- If the user names a Discord server but not channels, default to all concrete readable channels you can already resolve from context, tool descriptions, prior tool output, or the current server context.58- If the ask is broad and you can resolve multiple channels, prefer covering more channels over asking for narrower scope.59- If channels are explicit but timeframe is missing, read the recent bounded sample and summarize it as the latest activity instead of blocking on timeframe selection.60- Ask only if you still cannot identify any concrete readable channels without guessing.6162Recommended pattern:6364```json65{"action":"read","channelId":"#announcements","guildId":"1412305846125203539","limit":50}66```6768Example user ask:6970`Use message read to fetch the last 50 messages from #announcements, #general, and #engineering in guild 1412305846125203539, then summarize the last 24 hours.`7172### Email7374- Use `message` with `action="read"` for the current ingested email thread or an explicit email address.75- If already in email context, omit `channelId` to read the current thread.76- Email read only covers threads already ingested by the gateway.77- Do not claim mailbox-wide unread inbox access. That capability does not exist here.7879Recommended patterns:8081```json82{"action":"read","limit":20}83```8485```json86{"action":"read","channelId":"user@example.com","limit":20}87```8889### WhatsApp9091- There is no first-class WhatsApp history read action yet.92- If the current session context already contains the relevant conversation, summarize that directly.93- Otherwise ask for a pasted transcript/export or clearly state that full historical WhatsApp catch-up is not available through tools yet.94- Only use `session_search` if the user wants topic-based recall and accepts approximate recall rather than a strict "last N messages" summary.9596### TUI / Local9798- There is no first-class TUI history read action yet.99- If the needed content is already in the current session context, summarize it directly.100- Otherwise ask for a transcript/export or narrower current-session scope.101- Do not pretend you can fetch arbitrary historical TUI messages when no direct read path exists.102103## Synthesis Rules104105After reading the scoped content:106107- lead with the few most important updates108- separate facts from inferred significance109- include decisions, blockers, and follow-ups if present110- compress repetition111- do not quote large message dumps unless the user asks112113Default summary shape:1141151. top 3-7 important updates1162. decisions made1173. open questions / blockers1184. action items119120If the user asks for "short", keep it to a tight executive summary.121122## Constraints123124- Never summarize unseen content as if you read it.125- Do not use `session_search` as a substitute for chronological channel reads when the user explicitly asked for the last N messages from Discord or email.126- For multi-channel Discord catchups, read first, summarize second.127- Prefer doing a broad useful catch-up over asking for scope. If in doubt, cover all readable channels or threads with visible activity that you can actually resolve, then mention your assumption afterward. Do not invent channels, guilds, or mailbox access that the tools did not reveal.128- For email catchups, preserve thread context and reply in normal email style if responding by email.129- If replying by email, append a polished corporate signature block derived from `IDENTITY.md` details already loaded in context. Prefer full name, role, organization, and any real contact details that are present. Do not invent contact details, and do not use emoji or mascot-style sign-offs.