返回顶部
s

slack-member-fetch

Fetch Slack member information from a workspace or a specific Slack channel using the Slack Web API. Use when the user asks to list Slack members, get member profiles, fetch users from a channel, or export Slack member info. Supports workspace-wide lookup and channel-specific lookup. Not for sending Slack messages or editing Slack users.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
59
下载量
0
收藏
概述
安装方式
版本历史

slack-member-fetch

# Slack Member Fetch This skill fetches member information from Slack. ## What it can do - List members from the whole Slack workspace - List members from a specific Slack channel by channel ID - List members from a specific Slack channel by channel name - Return structured JSON for downstream automation ## Required environment variable ```bash export SLACK_BOT_TOKEN="xoxb-..." ``` ## Recommended Slack scopes - `users:read` - `users:read.email` - `conversations:read` ## Usage Fetch all workspace members: ```bash python3 scripts/fetch_slack_members.py --workspace ``` Fetch members from a channel by ID: ```bash python3 scripts/fetch_slack_members.py --channel C0123456789 ``` Fetch members from a channel by name: ```bash python3 scripts/fetch_slack_members.py --channel-name general ``` Save output: ```bash python3 scripts/fetch_slack_members.py --channel-name sales --out members.json ``` ## Output shape ```json { "ok": true, "source": "channel", "channel_id": "C0123456789", "channel_name": "sales", "count": 2, "members": [ { "user_id": "U123", "username": "jane", "real_name": "Jane Doe", "display_name": "Jane", "email": "jane@example.com", "title": "Operations Manager", "timezone": "Asia/Manila", "is_admin": false, "is_owner": false, "is_bot": false, "deleted": false } ] } ``` ## Notes - If email is missing, confirm the app has `users:read.email` - If channel lookup fails, confirm the app has access to that channel and `conversations:read` - For large workspaces, the script follows Slack cursor pagination automatically

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 slack-member-fetch-1775975713 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 slack-member-fetch-1775975713 技能

通过命令行安装

skillhub install slack-member-fetch-1775975713

下载 Zip 包

⬇ 下载 slack-member-fetch v1.0.0

文件大小: 3.9 KB | 发布时间: 2026-4-13 12:04

v1.0.0 最新 2026-4-13 12:04
Initial release of slack-member-fetch

- Fetches member information from an entire Slack workspace or a specific channel (by ID or name)
- Outputs structured JSON including user details such as ID, username, real name, email, and roles
- Supports downstream automation with machine-readable output
- Requires a Slack bot token and recommended scopes: users:read, users:read.email, conversations:read
- Handles large workspaces via automatic pagination

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部