Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

slack-history-querySlack history query 搜索

Agent Skill

用于处理 Slack 工作区里的频道、消息、线程、用户和通知信息。它适合让 Agent 查询团队沟通记录、整理上下文、回复线程或辅助协作提醒。使用时需要确认机器人或用户 token 是否具备目标频道访问权,私有频道和历史消息通常有额外权限限制;发送消息、@成员或批量读取对话时,应避免泄露内部讨论和敏感工作信息。

总安装

11,087

周安装

331

GitHub Stars

公开资料未说明

下载量

4,491
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:slack-history-query(Slack history query 搜索)
来源仓库:https://github.com/sixtysecondsapp/use60
仓库路径:skills/slack-history-query
安装命令:
npx skills add https://github.com/sixtysecondsapp/use60 --skill 'Slack History Query'
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/sixtysecondsapp/use60 --skill 'Slack History Query'

简介

支持按时间、关键词或用户维度检索 Slack 历史消息记录。

  • 适用于知识挖掘、问题溯源或合规审查等研究型任务。
  • 通过 GitHub 安装,集成到 Gemini CLI 等宿主工具中。
  • 受限于 Slack 免费账户的消息保留期限,长期历史可能不可查。
  • 批量查询时建议分页获取并缓存结果以提升效率。slack-history-query 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Available Context & Tools

@_platform-references/org-variables.md @_platform-references/capabilities.md

Slack History Query

Goal

Answer "when did I last…" and "show my meetings…" questions from Slack with a clean timeline view. Context matters — people ask these questions when preparing for calls or catch-ups.

Intent Patterns

Last Interaction with a Contact

Triggered when contact_name is extracted from the message.

  1. Search contacts by name (partial match, case-insensitive)
  2. Search recent meetings where title or summary mentions the contact name
  3. Show contact profile header + last meeting details

Response format:

  • Section: *Full Name* — Title at Company (if contact found in CRM)
  • Section: *Last Meeting:* Meeting Title — Day, Mon DD
  • Section (italic): truncated meeting summary (max 300 chars)
  • Context: "N more meetings in the past week" (if applicable)
  • Divider + link to full contact profile

No interaction found: "I couldn't find any recent interactions with [name]. Check the name or try their full name."

Meeting Schedule Query

Triggered when message contains: "meetings this week", "meetings today", "meetings tomorrow", "upcoming meetings", "next week"

  1. Fetch meetings for the relevant time window
  2. Filter for upcoming (future) vs. this week (all)
  3. Show list of up to 8 meetings with time and attendee count

Response format:

  • Header: "Upcoming Meetings (N)" or "This Week's Meetings (N)"
  • Bullet list: • *Meeting Title* — Tue, Jan 15 2:30 PM (N attendees)
  • Context: "N more. View calendar" link if >8 meetings

No meetings: "No upcoming meetings scheduled." or "No meetings found this week."

General Recent Activity

Triggered when no specific contact is named and not a schedule query.

  1. Fetch last 5 meetings + last 5 activities from the past 7 days
  2. Merge and sort by date descending
  3. Show unified timeline

Response format:

  • Section: "Recent Activity (Past 7 Days):"
  • Bullet list (up to 8 items):

- Meetings: :calendar: *Meeting Title* — Tue, Jan 15 - Activities: :clipboard: Activity Type — Subject — Jan 15

No activity: "No recent activity found this week."

Data Sources

  • Meetings: execute_action("list_meetings", {owner: slack_user_id, days_back: 7})
  • Contacts: execute_action("search_contacts", {query: contact_name})
  • Activities: execute_action("list_activities", {owner: slack_user_id, days_back: 7})

Date Formatting

  • Meeting dates: new Date(start_time).toLocaleDateString('en-US', {weekday: 'long', month: 'short', day: 'numeric'})
  • Schedule view: include time — {weekday: 'short', month: 'short', day: 'numeric', hour: 'numeric', minute: '2-digit'}
  • Activity dates: short format — Mon Jan 15

Response Constraints

  • Maximum 8 items in any timeline/list view
  • Meeting summaries: truncate to 300 characters
  • Attendee count: show as "(N attendees)" not raw number
  • Sort all timeline items by date descending (most recent first)
  • For upcoming meetings filter: use start_time > now comparison
  • Always include link to /calendar for schedule queries

Error Cases

  • No meetings in period: Context-appropriate plain text ("No meetings found this week." vs "No upcoming meetings scheduled.")
  • Contact not in CRM: Show meeting history anyway if meetings mention the name, without the contact profile block
  • No activities or meetings: "No recent activity found this week."

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.53%
按下载量换算1,551

Claude

28.68%
按下载量换算1,288

Cursor

19.19%
按下载量换算862

Gemini CLI

9.96%
按下载量换算447

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills