slack
Slack tool actions: send/read/edit/delete messages, react, pin/unpin, list pins/reactions/emoji, member info.
Works with
---
name: slack
description: Slack tool actions: send/read/edit/delete messages, react, pin/unpin, list pins/reactions/emoji, member info.
license: MIT
---
# Slack
Use the `slack` tool. Reuse `channelId` and Slack timestamp message IDs from context when present.
## Inputs
- `channelId`: Slack channel ID.
- `messageId`: Slack timestamp, e.g. `1712023032.1234`.
- `to`: `channel:<id>` or `user:<id>` for sends.
- `emoji`: Unicode or `:name:` for reactions.
## Actions
```json
{ "action": "sendMessage", "to": "channel:C123", "content": "Hello" }
```
```json
{ "action": "readMessages", "channelId": "C123", "limit": 20 }
```
```json
{
"action": "react",
"channelId": "C123",
"messageId": "1712023032.1234",
"emoji": ":white_check_mark:"
}
```
```json
{ "action": "reactions", "channelId": "C123", "messageId": "1712023032.1234" }
```
```json
{
"action": "editMessage",
"channelId": "C123",
"messageId": "1712023032.1234",
"content": "Updated text"
}
```
```json
{ "action": "deleteMessage", "channelId": "C123", "messageId": "1712023032.1234" }
```
```json
{ "action": "pinMessage", "channelId": "C123", "messageId": "1712023032.1234" }
```
```json
{ "action": "unpinMessage", "channelId": "C123", "messageId": "1712023032.1234" }
```
```json
{ "action": "listPins", "channelId": "C123" }
```
```json
{ "action": "memberInfo", "userId": "U123" }
```
```json
{ "action": "emojiList" }
```
## Safety
- Confirm destructive deletes when context is unclear.
- Keep outbound messages short; avoid Markdown tables.
- Prefer thread/message IDs over fuzzy channel names.More Frontend Frameworks skills
frontend-design
anthropics/skills
Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.
design-taste-frontend
leonxlnx/taste-skill
Anti-slop frontend skill for landing pages, portfolios, and redesigns. The agent reads the brief, infers the right design direction, and ships interfaces that do not look templated. Real design systems when applicable, audit-first on redesigns, strict pre-flight check.
hyperframes-creative
heygen-com/hyperframes
Non-animation creative direction for HyperFrames videos. Use for design spec (frame.md / design.md) handling, palettes, typography, narration, beat planning, audio-reactive visuals, composition patterns, and brand / style decisions. For atomic motion patterns and scene blueprints, use `hyperframes-animation`.

