Slack API integration — send/read messages, react to messages, pin items, and fetch member info. Use when: user wants to send a Slack message, check Slack channels, react to a message, or manage pins. NOT for: Discord (use Discord channel), email (use email skill), or real-time Slack event streaming.
Interact with Slack workspaces via the Slack Web API.
✅ USE this skill when:
❌ DON'T use this skill when:
email skillchat:write, channels:read, channels:history, reactions:write, reactions:read, pins:write, pins:read, users:readxoxb-)pythonclaw.json:"skills": {
"slack": {
"token": "xoxb-your-bot-token"
}
}
python {skill_path}/slack_api.py send --channel "#general" --text "Hello from PythonClaw"
python {skill_path}/slack_api.py read --channel "#general" --limit 10
python {skill_path}/slack_api.py react --channel "C123" --timestamp "1712023032.1234" --emoji "white_check_mark"
python {skill_path}/slack_api.py pin --channel "C123" --timestamp "1712023032.1234"
python {skill_path}/slack_api.py user --user-id "U123"
python {skill_path}/slack_api.py channels
# prefix or as channel IDs (C...)| File | Description |
|------|-------------|
| slack_api.py | Slack Web API client |
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer