skill-bus
v0.7.0The skill for connecting skills. Connect context, conditions, and other skills to any skill — no modification required.
by Joey NguyenMIT1.9kupdated 2 weeks ago
Source
git clone https://github.com/composio-community/awesome-claude-pluginsClone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is skill-bus/ inside the repository.
Layout
├── .claude-plugin/plugin.json├── skills/add-sub/SKILL.md├── skills/help/SKILL.md├── skills/list-subs/SKILL.md├── skills/pause-subs/SKILL.md├── skills/reflecting-on-sessions/SKILL.md├── skills/remove-sub/SKILL.md└── skills/unpause-subs/SKILL.md
Skills7
Subscribe to a skill event. Adds a subscription that injects context before or after a skill runs. Supports optional conditions at both insert-level (inherited by all subscriptions) and subscription-level (AND-stacked). Conditions include fileExists, gitBranch, envSet, envEquals, fileContains (with optional regex).
Show skill-bus overview, status, and available commands. Quick reference for all skill-bus features.
List all active skill-bus subscriptions across global and project scopes, showing merge status, insert-level and subscription-level conditions, effective condition stacking, and what would fire for each skill.
Temporarily disable the skill bus. Quick toggle to stop all subscriptions from firing without removing them.
Use when completing a plan, finishing a development branch, wrapping up a session, or at any natural transition between work phases — reviews skill-bus telemetry to identify subscription gaps and suggest improvements
Unsubscribe from a skill event. Removes or disables subscriptions with scope-aware options.
Re-enable the skill bus after pausing. Restores subscription processing.
Manifests1
{
"name": "skill-bus",
"description": "The skill for connecting skills. Connect context, conditions, and other skills to any skill — no modification required.",
"version": "0.7.0",
"author": {
"name": "Joey Nguyen",
"url": "https://github.com/joeymnguyen"
},
"repository": "https://github.com/joeymnguyen/skill-bus",
"homepage": "https://github.com/joeymnguyen/skill-bus",
"license": "MIT",
"keywords": [
"skills",
"hooks",
"subscriptions",
"context",
"middleware",
"conditions"
]
}