search-to-slack
Takes web search results and formats them as polished Slack messages, digests, or thread summaries ready to post to channels. Use when the user wants to research a topic and share findings on Slack. Trigger with phrases like "research and post to Slack", "create a Slack digest", "summarize and share in #channel", or "format search results for Slack".
Best use case
search-to-slack is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Takes web search results and formats them as polished Slack messages, digests, or thread summaries ready to post to channels. Use when the user wants to research a topic and share findings on Slack. Trigger with phrases like "research and post to Slack", "create a Slack digest", "summarize and share in #channel", or "format search results for Slack".
Teams using search-to-slack should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/search-to-slack/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How search-to-slack Compares
| Feature / Agent | search-to-slack | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Takes web search results and formats them as polished Slack messages, digests, or thread summaries ready to post to channels. Use when the user wants to research a topic and share findings on Slack. Trigger with phrases like "research and post to Slack", "create a Slack digest", "summarize and share in #channel", or "format search results for Slack".
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
Best AI Skills for Claude
Explore the best AI skills for Claude and Claude Code across coding, research, workflow automation, documentation, and agent operations.
ChatGPT vs Claude for Agent Skills
Compare ChatGPT and Claude for AI agent skills across coding, writing, research, and reusable workflow execution.
AI Agent for YouTube Script Writing
Find AI agent skills for YouTube script writing, video research, content outlining, and repeatable channel production workflows.
SKILL.md Source
# Search to Slack Research topics and format findings as Slack-ready messages, digests, and threaded summaries. ## Overview This skill automates the workflow of researching a topic via web search and formatting the results into a well-structured Slack message. Instead of manually searching, reading articles, summarizing key points, and formatting them with Slack's Block Kit syntax, this skill handles the entire pipeline. It produces messages that use Slack-native formatting -- bold headers, bulleted lists, linked sources, dividers, and emoji markers -- so the output can be pasted directly into a Slack channel or sent via the Slack API. The skill is designed for recurring team communication patterns: weekly technology digests, security vulnerability alerts, competitive intelligence updates, and ad-hoc research sharing. It supports single-message summaries, multi-part thread formats for longer research, and scheduled digest templates that can be reused each week. ## Instructions 1. **Specify the research topic and target channel:** - "Research React Server Components news this week and format for #frontend" - "Find CVEs related to OpenSSL from the last 30 days, post to #security" - "Create a weekly AI digest for #engineering" 2. **Choose the output format** (optional -- defaults to single message): - "Single message" -- one well-formatted Slack message with all findings - "Thread" -- a parent message with key takeaways, followed by individual replies for each source - "Digest" -- a structured weekly/daily digest format with sections and categories 3. **Customize the output** (optional): - Tone: "keep it casual" or "formal for leadership" - Length: "brief, 3-5 bullet points" or "comprehensive with full summaries" - Sections: "include a TL;DR at the top" or "add an action items section" 4. **Review and post** the output: - Copy and paste the formatted message directly into Slack - Or use the generated `curl` command to post via Slack webhook - Or save the Block Kit JSON for use with the Slack API ## Output The skill generates Slack-formatted content in one or more of these forms: - **Formatted Message** (Markdown with Slack syntax): A message using Slack's mrkdwn format with `*bold*`, `_italic_`, `>` blockquotes, bullet lists, and `<url|link text>` hyperlinks. Ready to paste directly into Slack. - **Block Kit JSON**: For programmatic posting, a JSON payload using Slack's Block Kit with sections, dividers, context blocks, and action buttons. Compatible with Slack's `chat.postMessage` API. - **Webhook Command**: A ready-to-run `curl` command that posts the message to a Slack incoming webhook URL (the user provides the webhook URL). - **Thread Structure**: When thread format is selected, generates a parent message and numbered reply messages that form a cohesive research thread. ## Examples ### Example 1: Weekly AI Research Digest **User:** "Research AI coding assistant news from this week and create a digest for #engineering." The skill will: 1. Search for recent news about AI coding tools, LLM updates, and developer productivity research. 2. Categorize findings into sections: "New Releases", "Research Papers", "Industry Analysis". 3. Format each finding with a bold title, 1-2 sentence summary, source link, and relevance indicator. 4. Produce a complete Slack message with a header, TL;DR section, categorized findings, and a footer with the date range and source count. Output format: ``` *Weekly AI Coding Digest* -- March 10-17, 2026 *TL;DR:* Claude 4.5 launched with 1M context, GitHub Copilot added workspace agents, and new research shows 40% productivity gains with AI pair programming. --- *New Releases* - *Claude 4.5 Opus* -- Anthropic's latest model with extended thinking and 1M context window. <https://anthropic.com/news|Read more> - *Copilot Workspace Agents* -- GitHub introduced autonomous coding agents. <https://github.blog|Read more> *Research* - *AI Pair Programming Study* -- Stanford study shows 40% completion time reduction. <https://arxiv.org/...|Paper> _5 sources | Compiled March 17, 2026_ ``` ### Example 2: Security Vulnerability Alert **User:** "Search for critical CVEs in Node.js from the last week, format as a Slack alert for #security." The skill will: 1. Search for recent Node.js CVEs and security advisories. 2. Extract severity ratings, affected versions, and remediation steps. 3. Format as an urgent Slack message with warning emoji, severity badges, and action items. 4. Include a checklist of remediation steps the team should follow. ### Example 3: Competitive Intelligence Thread **User:** "Research what our competitors shipped this month and create a Slack thread for #product." The skill will: 1. Search for product launches, blog posts, and changelog entries from specified competitors. 2. Create a parent message summarizing the competitive landscape. 3. Generate individual thread replies for each competitor, covering new features, pricing changes, and strategic implications. 4. End the thread with a "What This Means For Us" summary with recommended actions. ## Error Handling - **No search results:** Reports that no recent results were found for the query and suggests broadening the search terms or time range. - **Slack formatting issues:** Validates the output against Slack's mrkdwn spec, escaping special characters (`&`, `<`, `>`) that could break rendering. - **No webhook URL provided:** Outputs the formatted message as text for manual pasting and explains how to set up a Slack incoming webhook for automated posting. - **Rate limiting:** If web search returns limited results, clearly notes the coverage gap and suggests running the search again later. ## Prerequisites - WebSearch and WebFetch tools enabled for research queries - Slack incoming webhook URL (for automated posting) or manual copy-paste workflow - Familiarity with target Slack channel naming conventions ## Resources - [Slack Block Kit Builder](https://app.slack.com/block-kit-builder) — visual message designer - [Slack mrkdwn reference](https://api.slack.com/reference/surfaces/formatting) — formatting syntax - [Slack Incoming Webhooks](https://api.slack.com/messaging/webhooks) — setup guide for automated posting
Related Skills
creating-github-issues-from-web-research
Execute this skill enhances AI assistant's ability to conduct web research and translate findings into actionable github issues. it automates the process of extracting key information from web search results and formatting it into a well-structured issue, ready... Use when managing version control. Trigger with phrases like 'commit', 'branch', or 'git'.
research-to-deploy
Researches infrastructure best practices and generates deployment-ready configurations, Terraform modules, Dockerfiles, and CI/CD pipelines. Use when the user needs to deploy services, set up infrastructure, or create cloud configurations based on current best practices. Trigger with phrases like "research and deploy", "set up Cloud Run", "create Terraform for", "deploy this to AWS", or "generate infrastructure configs".
notion-search-retrieve
Search Notion workspaces and retrieve pages, databases, and block content using the Notion API. Use when querying databases with filters, searching across a workspace, paginating large result sets, or extracting page content. Trigger with phrases like "notion search", "query notion database", "notion retrieve page", "notion pagination", "notion filter", "notion blocks", "notion get content".
clade-embeddings-search
Implement tool use (function calling) with Claude to let it execute actions, Use when working with embeddings-search patterns. query databases, call APIs, and interact with external systems. Trigger with "anthropic tool use", "claude function calling", "claude tools", "anthropic structured output with tools".
yt-research
Research competitor YouTube channels, niches, and trending topics for your content strategy. Use this skill whenever the user says "research channels", "analyze competitors", "find trending topics", "niche analysis", "competitive research", "what are other creators doing", "scrape YouTube channels", or wants to understand the competitive landscape for a specific tool or topic area. Use when working with yt research. Trigger with 'yt', 'research'.
slack-bot-creator
Slack Bot Creator - Auto-activating skill for Business Automation. Triggers on: slack bot creator, slack bot creator Part of the Business Automation skill category.
elasticsearch-index-manager
Elasticsearch Index Manager - Auto-activating skill for DevOps Advanced. Triggers on: elasticsearch index manager, elasticsearch index manager Part of the DevOps Advanced skill category.
schema-optimization-orchestrator
Multi-phase schema optimization workflow orchestrator. Creates session directories, spawns phase agents sequentially, validates outputs, aggregates results. Trigger: "run schema optimization", "optimize schema workflow", "execute schema phases"
test-skill
Test skill for E2E validation. Trigger with "run test skill" or "execute test". Use this skill when testing skill activation and tool permissions.
example-skill
Brief description of what this skill does and when the model should activate it. Use when [describe the user's intent or situation]. Trigger with "example phrase", "another trigger", "/example-skill".
testing-visual-regression
Detect visual changes in UI components using screenshot comparison. Use when detecting unintended UI changes or pixel differences. Trigger with phrases like "test visual changes", "compare screenshots", or "detect UI regressions".
generating-unit-tests
Test automatically generate comprehensive unit tests from source code covering happy paths, edge cases, and error conditions. Use when creating test coverage for functions, classes, or modules. Trigger with phrases like "generate unit tests", "create tests for", or "add test coverage".