Agent Skills
› openclaw/openclaw
› slacrawl
slacrawl
GitHub管理Slack归档数据,支持状态检查、数据同步、搜索查询及SQL统计。用于快速获取Slack聊天记录信息,辅助回答近期问题或进行数据分析。
Trigger Scenarios
需要查询Slack历史消息
检查Slack归档数据新鲜度
执行Slack数据同步
通过SQL统计Slack消息数量
Install
npx skills add openclaw/openclaw --skill slacrawl -g -y
SKILL.md
Frontmatter
{
"name": "slacrawl",
"metadata": {
"openclaw": {
"install": [
{
"bins": [
"slacrawl"
],
"kind": "go",
"module": "github.com\/vincentkoc\/slacrawl\/cmd\/slacrawl@latest"
}
],
"homepage": "https:\/\/github.com\/openclaw\/slacrawl",
"requires": {
"bins": [
"slacrawl"
]
}
}
},
"description": "Slack archive: search, sync freshness, threads\/DMs, SQL counts, and Slacrawl repo work."
}
Slacrawl
Use local Slack archive data first. Check freshness for recent/current questions:
slacrawl doctor
slacrawl status --json
Refresh only when stale or asked:
slacrawl sync --source desktop
slacrawl sync --source api --latest-only
Query with bounded slices:
slacrawl search --limit 20 "query"
slacrawl messages --since 7d --limit 50
slacrawl sql "select count(*) from messages;"
Report workspace/channel names, absolute date spans, counts, and token/source limits. Use read-only SQL for exact counts/rankings. API sync and full thread/DM hydration require Slack tokens; do not assume they exist.
Version History
- 3374458 Current 2026-08-20 13:30


