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 plugins-index.json file serves as the registry for all available plugins, but there's no automated check that every plugin listed in the index actually has a corresponding directory in plugins/.
As plugins are added, renamed, or removed, the index can drift out of sync with the filesystem. This leads to:
Broken links in the marketplace
Users trying to install plugins that don't exist
The plugin finder referencing missing skills
A simple CI check or pre-commit hook that verifies every entry in plugins-index.json has a matching plugins/<name>/ directory would prevent this. Conversely, it should also check that every plugin directory is listed in the index.
The
plugins-index.jsonfile serves as the registry for all available plugins, but there's no automated check that every plugin listed in the index actually has a corresponding directory inplugins/.As plugins are added, renamed, or removed, the index can drift out of sync with the filesystem. This leads to:
A simple CI check or pre-commit hook that verifies every entry in
plugins-index.jsonhas a matchingplugins/<name>/directory would prevent this. Conversely, it should also check that every plugin directory is listed in the index.