pause-subs
仓库创建 2025年10月22日最近提交 2 个月前SkillHot 收录 21 天前
▸ 精选理由
适合临时停止触发订阅以便排查或维护,操作轻量快捷
▸ 风险提示
会修改本地配置文件,需谨慎
这个 Skill 做什么
临时禁用 skill-bus,快速停用所有订阅而不删除它们
把 skill-bus 临时关掉,快速停止所有订阅触发但不删除配置,适合排查问题或短期停用功能时使用。可以选择只在当前项目停用或在全局停用,操作本质是把配置里的开关设为 false。优点是可快速切换,不会丢失订阅信息,方便排错后恢复。
▸ 展开 SKILL.md 英文原文
Temporarily disable the skill bus. Quick toggle to stop all subscriptions from firing without removing them.
1.8k
Stars
487
Forks
23
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/ComposioHQ/awesome-claude-plugins/master/skill-bus/skills/pause-subs/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/ComposioHQ/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 公开信息 · 原文版权归作者所有