Best for
- Use when the user wants to send Slack messages, post rich Block Kit layouts, share files, react, or manage channels and members.
hyperfx-ai/marketing-skills/skills/slack/SKILL.md
Slack messaging, file sharing, Block Kit formatting, and channel management. Use when the user wants to send Slack messages, post rich Block Kit layouts, share files, react, or manage channels and members.
Decision brief
This skill provides comprehensive guidance for Slack messaging, file sharing, and formatting.
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/hyperfx-ai/marketing-skills --skill "skills/slack"Inspect the Agent Skill "slack" from https://github.com/hyperfx-ai/marketing-skills/blob/bb080b81e2b633c4d46cd8d38d31f14ad95b478a/skills/slack/SKILL.md at commit bb080b81e2b633c4d46cd8d38d31f14ad95b478a. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
Hyper MCP installed and connected. https://app.hyperfx.ai/mcp
Return ONLY the text [NORESPONSE] (nothing else) in these situations:
CRITICAL: Files can ONLY be shared in Slack via upload. URLs and file paths do NOT render as viewable content in Slack.
When you generate an image (e.g., via imagesgenerate), the result includes a fileid. This image is NOT automatically displayed in Slack. You MUST explicitly upload it:
For any file you want to share (documents, CSVs, etc.), use slackfilesupload with either: - fileid: For files already in the system - filepath: For local files - content: For text content to upload as a file
Permission review
The documentation includes network, browsing, or remote request actions.
{"type": "link", "text": "here", "url": "https://example.com"},Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 97/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 77 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
This skill provides comprehensive guidance for Slack messaging, file sharing, and formatting.
Return ONLY the text [NO_RESPONSE] (nothing else) in these situations:
@John or @SomeOtherBot) and the message is directed at that person, not you.IMPORTANT:
[NO_RESPONSE] with nothing before or after it.CRITICAL: Files can ONLY be shared in Slack via upload. URLs and file paths do NOT render as viewable content in Slack.
slack_files_upload to share any file in Slackslack_files_upload tool accepts a file_id parameter for files already stored in the systemWhen you generate an image (e.g., via images_generate), the result includes a file_id. This image is NOT automatically displayed in Slack. You MUST explicitly upload it:
file_id from the resultslack_files_upload with that file_id, the current channel_id, and thread_tsExample workflow:
file_id: "abc123"slack_files_upload(channel_id="C...", file_id="abc123", thread_ts="...")Do NOT just say "Here's your image" without uploading it. The user will see nothing.
For any file you want to share (documents, CSVs, etc.), use slack_files_upload with either:
file_id: For files already in the systemfile_path: For local filescontent: For text content to upload as a fileslack_messages_send or slack_threads_replies_sendrich_text blocks via slack_messages_send_block_kitslack_messages_send_largeSlack uses a simplified markdown:
*bold* (single asterisks, not double)_italic_~strikethrough~`code` for inline code```code block``` for code blocks<url|display text> for links (NOT [text](url))Block Kit's rich_text block provides flexible formatting:
Available Elements:
rich_text_section: Single line of text with inline formattingrich_text_list: Bulleted or ordered lists (style: "bullet" or style: "ordered")rich_text_quote: Quote blocks with vertical bar stylingElement Types Within Sections:
text: Plain or styled text (supports bold, italic, strike, code)link: Hyperlinks with optional display textemoji: Emoji by nameuser: User mentionschannel: Channel mentionsBulleted List Example:
{
"type": "rich_text",
"elements": [
{
"type": "rich_text_list",
"style": "bullet",
"elements": [
{
"type": "rich_text_section",
"elements": [{"type": "text", "text": "First item"}]
},
{
"type": "rich_text_section",
"elements": [{"type": "text", "text": "Second item"}]
}
]
}
]
}
Ordered List: Use "style": "ordered" instead of "bullet".
Nested Lists: Use the indent property:
{
"type": "rich_text_list",
"style": "ordered",
"indent": 1,
"elements": [...]
}
Inline Styling:
{
"type": "text",
"text": "Bold text",
"style": {"bold": true}
}
Available styles: bold, italic, strike, code
Links in Text:
{
"type": "rich_text_section",
"elements": [
{"type": "text", "text": "Click "},
{"type": "link", "text": "here", "url": "https://example.com"},
{"type": "text", "text": " to continue"}
]
}
| Action | Tool |
|---|---|
| Send a message | slack_messages_send |
| Reply in a thread | slack_threads_replies_send |
| Upload/share a file | slack_files_upload |
| Send Block Kit message | slack_messages_send_block_kit |
| Send long message (>3000 chars) | slack_messages_send_large |
| Update a message | slack_messages_update |
| Delete a message | slack_messages_delete |
| Add a reaction | slack_reactions_add |
| Pin a message | slack_messages_pin |
| Search messages | slack_messages_search |
| Action | Tool |
|---|---|
| List channels | slack_channels_list |
| Get channel info | slack_channels_get |
| Create a channel | slack_channels_create |
| Set channel topic | slack_channels_topic_update |
| Set channel purpose | slack_channels_purpose_update |
| Invite users | slack_channels_users_invite |
| Get channel members | slack_channels_members_list |
| Action | Tool |
|---|---|
| List workspace users | slack_users_list |
| Get user profile | slack_users_profile_get |
| Find user by email | slack_users_search_by_email |
| Get user presence | slack_users_presence_get |
| Set your status | slack_users_status_update |
| Create a reminder | slack_reminders_create |
Frequently asked questions
This skill provides comprehensive guidance for Slack messaging, file sharing, and formatting.
The source record exposes this install command: npx skills add https://github.com/hyperfx-ai/marketing-skills --skill "skills/slack". Inspect the command and pinned source before running it.
Static rules flagged network in the source; the page lists the matching lines and excerpts.
Alternatives
UiPath/skills
UiPath Coded Apps — scaffold, build, run, and deploy Coded Web Apps and Coded Action Apps: React/TypeScript apps that call UiPath Cloud APIs via the `@uipath/uipath-typescript` SDK and ship to Automation Cloud (push/pull to Studio Web, pack, publish, deploy, OAuth-PKCE). Also generates live analytics & governance dashboards from a plain-language request, wired to tenant data via the Insights real-time API, with edit and deploy flows. For RPA→uipath-rpa, Python agents→uipath-agents, Maestro flows
fcakyon/claude-codex-settings
Guide for implementing smooth, native-feeling animations using React's View Transition API (`<ViewTransition>` component, `addTransitionType`, and CSS view transition pseudo-elements). Use this skill whenever the user wants to add page transitions, animate route changes, create shared element animations, animate enter/exit of components, animate list reorder, implement directional (forward/back) navigation animations, or integrate view transitions in Next.js. Also use when the user mentions view
theBGuy/GitDesktop
Guide for implementing smooth, native-feeling animations using React's View Transition API (`<ViewTransition>` component, `addTransitionType`, and CSS view transition pseudo-elements). Use this skill whenever the user wants to add page transitions, animate route changes, create shared element animations, animate enter/exit of components, animate list reorder, implement directional (forward/back) navigation animations, or integrate view transitions in Next.js. Also use when the user mentions view
awslabs/agent-plugins
Build and deploy full-stack web and mobile apps with AWS Amplify Gen2 (TypeScript code-first). Covers auth (Cognito), data (AppSync/DynamoDB including schema modeling, enum types, relationships, authorization rules), storage (S3), functions, APIs, and AI (Amplify AI Kit with Bedrock). Supports React, Next.js, Vue, Angular, React Native, Flutter, Swift, and Android. Always use this skill for Amplify Gen2 topics — even for questions you think you know — it contains validated, version-specific patt