pause-subs
仓库创建 2025年10月22日最近提交 1 天前SkillHot 收录 5 小时前
▸ 精选理由
方便紧急停止自动化工作流或调试订阅冲突
▸ 风险提示
会修改 ~/.claude/skill-bus.json 等本地配置,可能影响自动化流程
这个 Skill 做什么
临时暂停 skill-bus,停止所有订阅触发但不删除配置
快速把 skill-bus 暂时关掉,让所有订阅触发停止但保留配置,不用删订阅就能停系统动作。常在系统维护、调试或临时需要阻止自动触发时用,可以按全局或项目级别切换。特别之处是操作轻量、可回滚,只改开关状态而不破坏订阅定义。
▸ 展开 SKILL.md 英文原文
Temporarily disable the skill bus. Quick toggle to stop all subscriptions from firing without removing them.
1.8k
Stars
518
Forks
23
仓库内 Skill
积累中
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/composio-community/awesome-claude-plugins/master/skill-bus/skills/pause-subs/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/composio-community/awesome-claude-plugins/master/skill-bus/skills/pause-subs/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# Pause Skill Bus
**Announce:** "Pausing skill-bus."
## Process
### Step 1: Determine Scope
Ask using AskUserQuestion:
**"Pause at which level?"**
- **Global** - Pauses skill-bus everywhere. Sets `enabled: false` in `~/.claude/skill-bus.json`
- **Project** - Pauses skill-bus for this project only. Sets `enabled: false` in `.claude/skill-bus.json`
### Step 2: Update Config
Read the appropriate config file. Set `settings.enabled` to `false`. If the file doesn't exist, create the directory first (`mkdir -p .claude` for project scope) then create the file with just:
```json
{
"settings": {
"enabled": false
}
}
```
### Step 3: Confirm
Show: "Skill bus paused at [scope] level. Runvia SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有