A collection of Claude Code plugins by Theodo.
- Accessibility — Check your app for accessibility features.
Some plugins ship their own components (e.g. MCP servers) that need to be built before use — check the plugin's own README for its specific setup steps.
For example, the accessibility plugin ships an MCP server that needs to be built with npm install && npm run build before use.
Use the release script to build a plugin's assets (if any) and bump its version in one step:
./scripts/release.sh <plugin-name> [patch|minor|major]The bump type defaults to patch if omitted.
Example — release a minor version bump of the accessibility plugin:
./scripts/release.sh accessibility minor # 0.0.2 → 0.1.0The script will:
- Build the plugin's assets, if it has a build step (e.g. an MCP server)
- Bump the version in
plugins/<plugin-name>/.claude-plugin/plugin.json - Bump the version in
.claude-plugin/marketplace.json
Then commit and tag the release:
git add plugins/accessibility/.claude-plugin/plugin.json \
.claude-plugin/marketplace.json
git commit -m "release(accessibility): v0.1.0"
git tag "accessibility/v0.1.0"Add the marketplace from GitHub, then install a plugin:
/plugin marketplace add git@github.com:theodo-group/claude-plugins.git
/plugin install <plugin-name>@theodo-group-claude-plugins
/reload-pluginsFor example, to install the accessibility plugin:
/plugin marketplace add git@github.com:theodo-group/claude-plugins.git
/plugin install accessibility@theodo-group-claude-plugins
/reload-pluginsFirst clone the repo and follow the plugin's own development setup (if any), then choose one of:
Install a single plugin directly — quickest, no marketplace needed:
/plugin install ./plugins/<plugin-name>
# example: /plugin install ./plugins/accessibilityAdd the local repo as a marketplace — tests the full marketplace flow:
/plugin marketplace add ./path/to/claude-plugins
/plugin install <plugin-name>@theodo-group-claude-plugins
# example: /plugin install accessibility@theodo-group-claude-plugins
/reload-pluginsOr you can also add then manually
/plugin- Go to marketplace tab (tap twice on keyboard right arrow)
- Add marketplace with relative path
/plugin- Go to marketplace tab (tap twice on keyboard right arrow)
- Select theodo marketplace
- Add plugin