Lister les participants d'un fil

VérifiéSûr

Récupère la liste des participants d'un fil de discussion Slack. Utilise un script Python pour extraire les utilisateurs qui ont participé au fil via des commandes comme « participants du fil » ou « qui a répondu ».

Spar Skills Guide Bot
ProductiviteDébutant
2002/06/2026
Claude Code
#slack#thread#participants#users#lister

Recommandé pour

Notre avis

Récupère la liste des participants d'un thread Slack en utilisant un script Python.

Points forts

  • Simple et rapide
  • Intégration directe avec Slack
  • Format de sortie tabulaire clair

Limites

  • Nécessite les identifiants de canal et de timestamp
  • Dépend de l'outil externe Slack
Quand l'utiliser

Quand vous avez besoin de savoir qui participe à un thread Slack spécifique.

Quand l'éviter

Pour des analyses avancées ou des historiques de messages complets.

Analyse de sécurité

Sûr
Score qualité85/100

The skill executes a local Python script with channel and timestamp parameters to fetch Slack thread participants. This is a read-only operation with no destructive actions, external payloads, or data exfiltration.

Aucun point d'attention détecté

Exemples

List thread participants
Show me who is in this thread.
Get thread members
List the participants of the thread with timestamp 1234567890.123456 in channel C01234567.
Who replied in thread
Who replied in this thread?

name: thread-user-lister description: スレッドの参加者一覧を取得する。「スレッド参加者」「誰がいる?」「このスレッドの参加者」「スレッドメンバー」「スレッドのユーザー」「誰が返信してる」「参加者を見せて」などで起動。Pythonスクリプト slack_message.py thread-users を使用。 allowed-tools: [Bash]

Thread User Lister

スレッドの参加者一覧を取得します。

ワークフロー

1. スレッド情報の確認

以下を確認:

  • チャンネルID
  • スレッドのタイムスタンプ

2. 参加者一覧取得

Pythonスクリプトを実行:

python plugins/shiiman-slack/skills/mention-checker/scripts/slack_message.py thread-users \
  --channel C01234567 \
  --ts 1234567890.123456 \
  --format table

3. 結果の表示

スレッド参加者を表示:

スレッド参加者数: 3

user_id      user_name
U01234567    山田太郎
U01234568    佐藤花子
U01234569    田中一郎

コマンド連携

実際の処理は /shiiman-slack:thread-users に委譲します(SSOT として扱う)。

Skills similaires