Add Slack integration recipe#14
Open
jeffsheltren wants to merge 2 commits into
Open
Conversation
Adds a recipe for reliable Slack scanning during the morning routine, addressing two common failure modes with Slack MCP connectors: 1. Stale data in channel scans — solved by timestamp-gating slack_read_channel calls to the previous session's Dashboard date (with a 4-hour overlap buffer, defaulting to 96h for long weekends). 2. Missed DMs — solved by a two-pronged approach: to:me search as a broad net plus direct DM channel reads for frequent contacts. Also includes guidance on subagent delegation, dedup against Dashboard, thread context handling, and known connector quirks. Files changed: - New: docs/src/recipes/slack.md (recipe with embedded vault file) - Modified: docs/src/SUMMARY.md (added to table of contents) - Modified: docs/src/recipes/index.md (added to recipes table) - Modified: template/Start-of-Day-Routine.md (short Slack pointer in Scan messaging step)
slack_read_channel with oldest only returns top-level messages, missing thread replies on older parent messages even when they contain new @mentions. Document the gap and the fix (to:me mention search pass) in the vault file template, How It Works, Known Quirks, and Tips and Gotchas sections.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
to:mesearchslack_read_channelcalls anchored to the Dashboard's last-updated date (with a 4-hour overlap buffer)to:mesearch as a broad net plus direct DM channel reads for frequent contactsChanges
docs/src/recipes/slack.md— full recipe with embedded vault filedocs/src/SUMMARY.md— added to table of contentsdocs/src/recipes/index.md— added to recipes tabletemplate/Knowledge/Jesse-Guidelines/Start-of-Day-Routine.md— added Slack scanning pointer in the "Scan messaging" stepTest plan
mdbook buildsucceeds with the new recipe