Skip to content
Development
Skill

/slack

Read Slack messages, channels, DMs, and search. Read-only access to your Slack workspace.

From plugin
safeclaw
1813 skills
Install
$ npx -y skills add ykdojo/safeclaw --skill slack --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/slack

Context preview

The summary Claude sees to decide when to auto-load this skill.

Read Slack messages, channels, DMs, and search. Read-only access to your Slack workspace.

SKILL.md

slack.SKILL.md
name: slack
description: Read Slack messages, channels, DMs, and search. Read-only access to your Slack workspace.

Slack Read Tool

Use `~/tools/slack-read.js` to read Slack data:

# List channels
node ~/tools/slack-read.js channels

# List DMs
node ~/tools/slack-read.js dms

# Read channel history (last 20 messages)
node ~/tools/slack-read.js history <channel_id>
node ~/tools/slack-read.js history <channel_id> 50  # last 50

# Search messages
node ~/tools/slack-read.js search "keyword"
node ~/tools/slack-read.js search "from:@user in:#channel"

# List users
node ~/tools/slack-read.js users

# Get channel info
node ~/tools/slack-read.js info <channel_id>
  • This is read-only - you cannot send messages or modify anything
  • Requires SLACK_TOKEN env var (run `./scripts/setup-slack.sh` on host)
Ships withsafeclaw

The easiest way to run multiple Claude Code sessions, each in its own container, with a dashboard to manage them all. Quick setup with battle-tested sensible defaults and skills. See architecture.md for design details.

Get the whole plugin
Stats
181
Stars
21
Forks
Active
Maintenance
HTML
Language
MIT
License
16d ago
Last commit
6mo ago
Created

Repo: ykdojo/safeclaw