mcpbeat

Pause Subs

composio-community/pause-subs

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

222 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
1856
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/composio-community/awesome-claude-plugins --skill pause-subs

The instruction itself

5 sections, as written by the author

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."

How to use it

Copy the folder

Take composio-community/pause-subs from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.