You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 21, 2026. It is now read-only.
The bundles.json file references plugin bundles that group related skills together. However, there's no test or validation that all plugins listed in a bundle actually exist in the plugins/ directory or that their dependencies are satisfied.
If a plugin in a bundle is removed or renamed, the bundle becomes broken but this isn't detected until a user tries to install it.
A CI check that validates bundle integrity would catch:
Missing plugins referenced in bundles
Version mismatches between bundle requirements and actual plugin versions
Circular dependencies between bundles
Bundles referencing plugins that have been removed or renamed
The
bundles.jsonfile references plugin bundles that group related skills together. However, there's no test or validation that all plugins listed in a bundle actually exist in theplugins/directory or that their dependencies are satisfied.If a plugin in a bundle is removed or renamed, the bundle becomes broken but this isn't detected until a user tries to install it.
A CI check that validates bundle integrity would catch: