AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Slack

skill-project-nomos-nomos-slack · by project-nomos

Interact with Slack workspaces — send messages, react, pin/unpin, read history, manage threads, search, upload files, and look up members. Use when the user asks to send a Slack message, react to something, read a channel, or manage Slack content.

No reviews yet
0 installs
41 views
0.0% view→install

Install

$ agentstack add skill-project-nomos-nomos-slack

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-project-nomos-nomos-slack)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Slack? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Slack

Interact with Slack using the built-in MCP tools provided by the nomos-slack server. These tools call the Slack Web API directly — no curl commands or shell environment variables needed.

Available Tools

Messaging

| Tool | Description | | ---------------------- | ------------------------------------- | | slack_send_message | Send a message to a channel or thread | | slack_edit_message | Edit an existing message | | slack_delete_message | Delete a message |

Reading

| Tool | Description | | -------------------- | ------------------------------------------------------------------------ | | slack_read_channel | Read recent messages from a channel | | slack_read_thread | Read replies in a thread | | slack_search | Search messages by keyword (supports in:#channel, from:@user syntax) |

Reactions & Pins

| Tool | Description | | --------------------- | --------------------------------- | | slack_react | Add a reaction emoji to a message | | slack_pin_message | Pin a message | | slack_unpin_message | Unpin a message | | slack_list_pins | List pinned items in a channel |

Info & Files

| Tool | Description | | --------------------- | -------------------------------------------------------- | | slack_list_channels | List channels the bot can see | | slack_user_info | Get details about a user (name, email, status, timezone) | | slack_upload_file | Upload a local file to a channel |

Usage Examples

Send a message

Use slack_send_message with the channel ID and text. For threaded replies, include thread_ts.

Read a channel

Use slack_read_channel with the channel ID. Returns messages in chronological order with timestamps, user IDs, and reaction counts.

Reply in a thread

Use slack_send_message with thread_ts set to the parent message timestamp.

Search for messages

Use slack_search with Slack search syntax:

  • release notes — search all channels
  • in:#engineering release notes — search a specific channel
  • from:@alice bug report — search messages from a user

Find a channel

Use slack_list_channels to get channel IDs and names. Use the ID in subsequent tool calls.

Look up a user

Use slack_user_info with a user ID (e.g. from a message) to get their name, email, status, and timezone.

Listening as the User

Nomos can listen to Slack as the user personally — not as a bot. It responds to DMs and @mentions using the user's own token, so messages appear as if the user typed them.

When a user asks you to "listen to my Slack", "respond as me", or "act as me on Slack", take action directly:

  1. Check if a workspace is connected: nomos slack workspaces
  2. If no workspaces, tell the user to connect one: nomos slack auth --token xoxp-...
  3. Start the listener: nomos slack listen

Always execute these commands yourself using Bash rather than telling the user to run them. If a command is blocked by permission hooks, show the user the exact command so they can run it. Confirm what you did after.

Autonomous Slack Monitoring

Nomos can also autonomously monitor Slack channels in the background using the daemon and autonomous loops. When a user asks you to "watch my channels" or "monitor messages in the background", take action directly:

  1. Check if the daemon is running: nomos daemon status
  2. If not running, start it: nomos daemon start
  3. Check current cron jobs: nomos cron list
  4. Enable the built-in slack-digest loop (runs every 30 min, scans channels for messages needing attention): nomos cron enable slack-digest
  5. If the user wants more specific monitoring, create a custom loop: nomos cron create "" --prompt ""

Always execute these commands yourself using Bash rather than telling the user to run them. If a command is blocked by permission hooks, show the user the exact command so they can run it. Confirm what you did after.

The daemon connects to Slack via Socket Mode and listens in real-time. Autonomous loops add proactive periodic checks on top of that. Together, they ensure no important message goes unnoticed.

Tips

  • Channel IDs: C prefix = public, G = private/group, D = DM
  • User IDs: U or W prefix
  • Timestamps (ts): uniquely identify messages — used for threading, reactions, pins, editing, and deleting
  • Formatting: Slack uses mrkdwn — *bold*, _italic_, ~strikethrough~, ` code , ``code block` , ``
  • Mentions: ` for users, ` for channels
  • Rate limits: Slack applies per-method rate limits (~1 req/sec for most). The tools handle errors automatically.
  • Required bot scopes: chat:write, channels:read, channels:history, groups:read, groups:history, users:read, reactions:write, pins:write, files:write, search:read

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.