--- id: ykdojo/safeclaw/slack version: "45eb88f1" license: MIT install: manual updated: 2026-07-24 --- # slack — This skill provides read-only access to your Slack workspace, letting you retrieve messages from channels and direct messages, list users and channels, and search across conversations. All operations are non-destructive—you can browse and query but cannot send or modify anything. Publisher: ykdojo · Stars: 176 · Updated: 2026-07-24 Install (manual): `git clone https://github.com/ykdojo/safeclaw` ## SKILL.md # Slack Read Tool Use `~/tools/slack-read.js` to read Slack data: ```bash # 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 node ~/tools/slack-read.js history 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 ``` - This is read-only - you cannot send messages or modify anything - Requires SLACK_TOKEN env var (run `./scripts/setup-slack.sh` on host) [View on SkillFed](https://skillfed.io/ykdojo/safeclaw/slack) · [View on GitHub](https://github.com/ykdojo/safeclaw)