From slack
Generates a daily standup report from your recent Slack messages, categorizing activity into Done, Doing, and Blockers for review and optional posting.
How this command is triggered — by the user, by Claude, or both
Slash command
/slack:standupThe summary Claude sees in its command listing — used to decide when to auto-load this command
1. Use `slack_read_user_profile` (with no user_id) to get the current user's profile information, including their user ID and display name. 2. Search for the user's recent messages using `slack_search_public` with the filter `from:<@USER_ID>` and `after:` set to yesterday's date. This captures messages from the last working day. 3. Review the messages found and categorize them into standup themes: - **What I worked on** — Topics, projects, or tasks the user discussed or contributed to - **What I'm working on next** — Any mentions of upcoming work, plans, or follow-ups - **Blocker...
Use slack_read_user_profile (with no user_id) to get the current user's profile information, including their user ID and display name.
Search for the user's recent messages using slack_search_public with the filter from:<@USER_ID> and after: set to yesterday's date. This captures messages from the last working day.
Review the messages found and categorize them into standup themes:
For messages in threads, use slack_read_thread to get the full context so you can accurately describe what the user contributed.
Format the standup as:
*Standup for <display name> — <today's date>*
*Done:*
- Item 1
- Item 2
*Doing:*
- Item 1
*Blockers:*
- None / Item 1
Present the standup to the user for review. They can edit, adjust, or ask you to post it to a specific channel.
npx claudepluginhub d74117157-create/slack-mcp-plugin37plugins reuse this command
First indexed Feb 27, 2026
Showing the 6 earliest of 37 plugins
/standupGenerates a daily standup report from your recent Slack messages, categorizing activity into Done, Doing, and Blockers for review and optional posting.
/standupGenerates a standup update by scanning the user's recent Slack messages, categorizing them into done/doing/blockers, and presenting the result for review.
/standup-notesGenerates daily standup notes by analyzing Git commits, Jira tickets, Obsidian vault notes, and calendar events. Produces a formatted markdown report with completed tasks, next actions, and blockers.
/SKILLGenerates and posts a daily standup report by gathering project state, pending tasks, unread messages, and team availability. Posts structured summary to a specified channel.
/todayGenerates a daily PM briefing by pulling due and in-progress tasks from Linear, summarizing Slack discussions, and checking calendar events, then saves a markdown file.
/standup-notesGenerates a concise standup update from recent git activity within 24 hours or from free-form notes provided as arguments. Outputs three sections: completed work, planned work, and blockers.