Awesome-claude-plugins pause-subs

Temporarily disable the skill bus. Quick toggle to stop all subscriptions from firing without removing them.

install
source · Clone the upstream repo
git clone https://github.com/ComposioHQ/awesome-claude-plugins
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ComposioHQ/awesome-claude-plugins "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skill-bus/skills/pause-subs" ~/.claude/skills/composiohq-awesome-claude-plugins-pause-subs-c0d673 && rm -rf "$T"
manifest: skill-bus/skills/pause-subs/SKILL.md
source content

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:

{
  "settings": {
    "enabled": false
  }
}

Step 3: Confirm

Show: "Skill bus paused at [scope] level. Run /skill-bus:unpause-subs to re-enable."