Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

slack-channel-contextSlack channel context 搜索

Agent Skill

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

总安装

2,747

周安装

118

GitHub Stars

1

下载量

963
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install slack-channel-context

简介

slack-channel-context 用于加载 Slack 通道上下文文件到会话中。

  • 适合在 OpenClaw 中增强多轮对话理解与项目知识复用。
  • 通过 clawhub 安装,需确保上下文文件已存在于指定目录。
  • 安装前应检查文件权限与格式兼容性,避免解析错误。
  • 仅支持特定命名格式的 md 文件,需提前准备标准化内容。

SKILL.md

name
slack-channel-context
description
Automatically loads Slack channel context files (e.g., bebops.md, C0AK8SDFS4W.md) into session context for Slack channels and threads. Use this skill whenever you're in a Slack channel or thread and need channel-specific context, project information, or channel-specific rules to be loaded into your session.
version
1.0.0

Slack Channel Context - Technical Documentation

For quick start: See README.md

Overview

This skill automatically loads channel context files from slack-channel-contexts/ into your session context whenever you're interacting in a Slack channel or thread. This ensures you have the right context for each channel without manual intervention.

In my Openclaw workflow, I use Slack with diffrent channels for different purposes. As a developer, I have dedicated Slack channels for each project. I needed a way to ensure that the Openclaw Agent knew which project I meant when I said something like; run all unit tests. Or if I wanted to discuss a new feature, I wanted to simply be able to start discussing in the appropriate channel and have the Agent know which project I meant. This Skill is the artifact that solved for my case.

Key Design Decision: Context files are named simply as <CHANNEL_ID>.md or <CHANNEL_NAME>.md (e.g., bebops.md, C0AK8SDFS4W.md). There is NO default fallback file - channels without context files return None.

How It Works

Context Loading Process

  1. Detection: Skill detects when you're in a Slack channel or thread
  2. Thread Check: If the message is in a thread (has thread_id or thread_ts), checks SLACK_CONTEXT_LOAD_ON_THREADS setting

- If SLACK_CONTEXT_LOAD_ON_THREADS=false, skips context loading in threads - If SLACK_CONTEXT_LOAD_ON_THREADS=true (default), loads context in threads

  1. File Discovery: Looks for context files in slack-channel-contexts/ folder in priority order:

- slack-channel-contexts/<CHANNEL_ID>.md (e.g., C0AK8SDFS4W.md) - highest priority - slack-channel-contexts/<CHANNEL_NAME>.md (e.g., bebops.md) - medium priority - No default fallback - returns None if no file exists

  1. Context Injection: Loads the found file into session context
  2. Caching: Caches the loaded context for 1 hour (3600 seconds) to avoid repeated file reads

Tools

load_channel_context()

Load Slack channel context into the current session.

This tool automatically loads the appropriate channel context file based on the current Slack channel. Call this at session startup to ensure you have full channel awareness.

Signature:

load_channel_context(
    channel_id: str,
    channel_name: str,
    workspace_dir: str = None,
    force_reload: bool = False,
    is_thread: bool = False
) -> dict

Parameters:

  • channel_id (str, required): Slack channel ID (e.g., "C0AK8SDFS4W")
  • channel_name (str, required): Slack channel name (e.g., "bebops")
  • workspace_dir (str, optional): Custom workspace directory (defaults to ~/.openclaw/workspace)
  • force_reload (bool, optional): If True, bypass cache and read file fresh (use after editing context files)
  • is_thread (bool, optional): If True, checks SLACK_CONTEXT_LOAD_ON_THREADS setting (default: False)

Returns:

{
  "success": true,
  "context": "# Channel Context: #bebops\
\
## Purpose...",
  "channel_id": "C0AK8SDFS4W",
  "channel_name": "bebops",
  "message": "Loaded channel context for bebops channel"
}

Or if no context file exists:

{
  "success": false,
  "context": "",
  "channel_id": "C0AK8SDFS4W",
  "channel_name": "bebops",
  "message": "No context file found for this channel. Context files must be created in slack-channel-contexts/ directory."
}

Example:

result = load_channel_context(channel_id="C0AK8SDFS4W", channel_name="bebops")
if result["success"]:
    print(f"Loaded context: {result['context'][:200]}...")
else:
    print(f"No context available: {result['message']}")

Behavior:

  • Looks for context files in priority order:

1. slack-channel-contexts/<CHANNEL_ID>.md 2. slack-channel-contexts/<CHANNEL_NAME>.md 3. No default - returns None if no file exists

  • Caches results for 1 hour (3600 seconds) by default
  • Use force_reload=True after editing context files to bypass cache

Implementation Files

scripts/skill.py

Location: scripts/skill.py

Main implementation file containing the SlackContextLoader class and load_channel_context() function.

scripts/load_context.py

Location: scripts/load_context.py

Legacy module for backward compatibility. Contains the core SlackContextLoader class.

scripts/reload_all_contexts.py

Location: scripts/reload_all_contexts.py

Utility script to reload all channel context files, bypassing cache.

Usage:

python3 ~/.openclaw/workspace/skills/slack-channel-context/scripts/reload_all_contexts.py

scripts/example.py

Location: scripts/example.py

Demo script showing how the context loader works with different channels.

Usage:

python3 ~/.openclaw/workspace/skills/slack-channel-context/scripts/example.py

Environment Variables

Set these in ~/.openclaw/workspace/.env (preferred method):

VariableDefaultDescription
SLACK_CONTEXT_ENABLEDtrueEnable/disable the skill
SLACK_CONTEXT_LOAD_ON_THREADStrueLoad context in threaded messages
SLACK_CONTEXT_LOAD_ON_THREAD_STARTtrueLoad context on thread/session start
SLACK_CONTEXT_CACHE_TTL7200Cache duration in seconds (120 min)
SLACK_CONTEXT_CONTEXTS_DIR~/.openclaw/workspace/slack-channel-contexts/Custom contexts directory

Note: Do not use export - just set the variables directly in ~/.openclaw/workspace/.env.

Context File Structure

Context files follow this structure:

# Channel Context: #channel-name

## Purpose
[What is this channel for?]

## Associated Projects
- [project-name]: [description]

## Rules & Guidelines
- [Rule 1]
- [Rule 2]

## Recent Activity
- [YYYY-MM-DD]: [Update]

## People to Know
- [@username]: [role]

---

See examples/EXAMPLE_CHANNEL_CONTEXT.md for a complete working example.

Important Notes

Force Reload After Editing

After editing a context file, you MUST use force_reload=True to bypass the cache:

load_channel_context(
    channel_id="C0AK8SDFS4W",
    channel_name="bebops",
    force_reload=True
)

No Default Fallback

There is NO default SLACK_CHANNEL_CONTEXT.md file. If a channel doesn't have a context file, the skill returns success: false with an empty context. This is intentional - channels without context simply have no context.

Simple File Names

Context files are named simply as <CHANNEL_ID>.md or <CHANNEL_NAME>.md. The SLACK_CHANNEL_CONTEXT_ prefix has been removed to make file names shorter and more readable.

Troubleshooting

See TROUBLESHOOTING.md for detailed troubleshooting steps.

Files

FilePurpose
scripts/skill.pyMain implementation
scripts/load_context.pyLegacy module
scripts/example.pyDemo script
scripts/reload_all_contexts.pyUtility script
examples/EXAMPLE_CHANNEL_CONTEXT.mdComplete working example
_meta.jsonClawHub publishing metadata

*For quick start: README.md* *For troubleshooting: TROUBLESHOOTING.md*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

88.19%
按下载量换算849

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills