skills/slack-standup-digest/SKILL.md
Create an automation that generates an async standup digest from Slack. Searches selected channels for messages since the previous workday, groups updates by project, highlights blockers and decisions, and posts a summary to a target channel.
npx skillsauth add openhands/extensions slack-standup-digestInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Set up a recurring automation that summarizes Slack activity into an async standup digest.
Ask the user for:
#engineering, #frontend, #backend)#standup, #team-updates)America/New_York, Europe/London)Confirm the Slack MCP integration is working:
Use the Slack MCP to search for recent messages in one of the source channels.
If it fails, tell the user to install the Slack MCP integration first.
Build a cron schedule from the user's preferences:
0 9 * * 1-5 with timezone America/New_York0 8 * * *Construct a prompt that includes:
Read the Automation backend URL and auth from <RUNTIME_SERVICES>:
url_from_agent as OPENHANDS_HOSTX-Session-API-Key: $OPENHANDS_AUTOMATION_API_KEYUse the prompt preset endpoint:
curl -s -X POST "${OPENHANDS_HOST}/api/automation/v1/preset/prompt" \
-H "X-Session-API-Key: $OPENHANDS_AUTOMATION_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Slack Standup Digest",
"prompt": "<constructed digest prompt>",
"trigger": {"type": "cron", "schedule": "<schedule>", "timezone": "<tz>"}
}'
Tell the user:
✅ Slack Standup Digest is running!
- Automation ID:
{id}- Source channels:
{channel list}- Target channel:
{target}- Schedule:
{cron description}- Mode:
{auto-post or draft}
tools
Create an automation that writes a recurring research brief. Uses Tavily MCP for web research and Notion MCP to publish the final brief with executive summary, implications, and source citations.
tools
Create an automation that triages new Linear issues. Inspects the issue title, description, team, customer, priority, and recent related issues via Linear MCP. Suggests labels, priority, likely owner, duplicates, and posts a clarifying comment.
tools
Create an automation that drafts incident retrospectives. Gathers incident-channel messages from Slack, collects linked tickets and follow-ups from Linear, and publishes a retrospective draft to Notion with a timeline, impact summary, root-cause hypotheses, and action items.
tools
Create an automation that reviews GitHub pull requests when they are opened or updated. Inspects the diff, changed files, tests, and existing discussion via GitHub MCP, then posts a concise review highlighting risks, security issues, missing tests, and next steps.