| name | slack-search |
| description | Slackチャンネルやメッセージをセマンティック検索するスキル。 「Slackで検索して」「チャンネルを探して」「発言を探して」等のリクエストで発動。 |
| triggers | ["Slackで検索して","チャンネルを探して","発言を探して","関連するチャンネル","イベントを検索","slack-search","Slack search"] |
Slack Search Skill
BookRAGに基づく階層的インデックスを活用したSlackセマンティック検索。
クイックスタート
import sys
from pathlib import Path
sys.path.insert(0, str(Path(__file__).resolve().parents[4] / "tools"))
from slack_search import SlackSearch
search = SlackSearch()
overview = search.get_workspace_overview()
results = search.find_channels("DX展示会")
detail = search.get_channel_detail("my-workspace/example-channel")
related = search.find_related_channels("my-workspace/example-channel")
persons = search.find_person("清水")
events = search.find_events("DX")
timeline = search.get_timeline("2025-12-01", "2025-12-31")
利用可能な検索機能
1. ワークスペース概要 (get_workspace_overview)
全体の統計情報とカテゴリ構造を取得。
overview = search.get_workspace_overview()
overview = search.get_workspace_overview("my-workspace")
対応ワークスペース: 設定されたワークスペース(build_book_index.py の WORKSPACES を参照)
2. チャンネル検索 (find_channels)
チャンネル名、トピック、概要からセマンティック検索。
results = search.find_channels("展示会")
results = search.find_channels(
query="プロジェクト",
workspace="my-workspace",
category="project",
limit=20
)
チャンネルカテゴリ:
cafe: 個人チャンネル(cafe_*)
project: プロジェクト(pj_*)
product: プロダクト開発(product_*)
sales: 営業(sales_*)
notify: 通知(notify_*)
partner: 外部パートナー(*_partner)
event: イベント(日付パターン)
external: 外部連携(ex-, ext-)
3. チャンネル詳細 (get_channel_detail)
特定チャンネルの詳細情報を取得。
detail = search.get_channel_detail("my-workspace/example-channel")
detail = search.get_channel_detail("example-channel")
返却情報:
- 概要(overview)
- トピック(topics)
- 参加者(participants)
- 活動期間(first_activity, last_activity)
- ファイルパス(data, summary, archive)
- 関連チャンネル(related_channels)
4. 関連チャンネル探索 (find_related_channels)
グラフ構造に基づいて関連チャンネルを探索。
related = search.find_related_channels("example-channel")
related = search.find_related_channels("example-channel", depth=2)
5. 人物検索 (find_person)
発言者やメンションから人物を検索。
results = search.find_person("清水")
6. イベント検索 (find_events)
展示会、会議などのイベントを検索。
events = search.find_events()
events = search.find_events("DX")
7. カテゴリ別一覧 (list_channels_by_category)
特定カテゴリのチャンネルを一覧。
cafes = search.list_channels_by_category("cafe")
projects = search.list_channels_by_category("project", workspace="my-workspace")
8. タイムライン検索 (get_timeline)
期間指定でアクティビティを検索。
timeline = search.get_timeline(
start_date="2025-12-01",
end_date="2025-12-31",
workspace="my-workspace"
)
9. 出力ソース情報 (get_output_sources)
calendar, gmail, drive, voicememoの統計情報。
sources = search.get_output_sources()
データ構造
インデックスパス
- メインインデックス:
slack-sync/index/book_index.json
- スキーマ定義:
slack-sync/index/schema.md
データソース
- 現在データ:
slack-sync/data/{workspace}/
- サマリー:
slack-sync/data/summary/{workspace}/
- アーカイブ:
slack-sync/data/archive/{workspace}/
- 出力:
output/ (calendar, gmail, drive, voicememo)
CLIコマンド
uv run python tools/slack_search.py overview [workspace]
uv run python tools/slack_search.py find "クエリ"
uv run python tools/slack_search.py detail "channel_id"
uv run python tools/slack_search.py related "channel_id"
uv run python tools/slack_search.py person "名前"
uv run python tools/slack_search.py events [クエリ]
uv run python tools/slack_search.py category "カテゴリ名"
uv run python tools/slack_search.py timeline "開始日" "終了日"
インデックス更新
インデックスはGitHub Actionsで毎日自動更新されます。
手動更新:
python3 data/slack-sync/scripts/build_book_index.py
ユースケース例
「清水さんが参加しているプロジェクトを教えて」
person = search.find_person("清水")[0]
project_channels = [
ch for ch in person["channels"]
if search.get_channel_detail(ch).get("category") == "project"
]
「最近のDX展示会イベントの成果を確認」
events = search.find_events("DX")
for event in events:
detail = search.get_channel_detail(event["channel"])
print(f"{event['name']}: {detail['overview']}")
「example-channelに関連する活動を調べる」
detail = search.get_channel_detail("example-channel")
related = search.find_related_channels("example-channel", depth=2)
print(f"関連チャンネル数: {related['total_related']}")
Overview
BookRAGに基づく階層的インデックスを活用し、Slackチャンネル・メッセージをセマンティック検索するスキルです。チャンネル検索、人物検索、イベント検索、タイムライン検索に対応。
Troubleshooting
| エラー | 解決方法 |
|---|
| Index file not found | python3 data/slack-sync/scripts/build_book_index.py でインデックスを再構築 |
| No results found | クエリのキーワードを変えるか、get_workspace_overview() で利用可能なカテゴリを確認 |
Success Criteria
Usage
上記「クイックスタート」および「CLIコマンド」セクションを参照。基本例:
uv run python tools/slack_search.py find "DX展示会"
uv run python tools/slack_search.py person "清水"