Agent skill
pause-subs
Temporarily disable the skill bus. Quick toggle to stop all subscriptions from firing without removing them.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/pause-subs
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: falsein~/.claude/skill-bus.json - Project - Pauses skill-bus for this project only. Sets
enabled: falsein.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."
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?