Install
Inside Claude Code, in any project:
/plugin marketplace add elwizard33/qa-my-app/plugin install qa-catalog@qa-my-app/reload-pluginsThat’s it — the plugin is installed at user scope (available in every repo) and active in your current session.
What the three commands do
Section titled “What the three commands do”-
/plugin marketplace add elwizard33/qa-my-appregisters this repo’smarketplace.jsonwith your Claude Code install. No plugins are installed yet — Claude Code just learns the catalog exists. (docs) -
/plugin install qa-catalog@qa-my-appinstalls theqa-catalogplugin from theqa-my-appmarketplace at user scope by default. To install at project scope so teammates pick it up automatically, run/plugininstead and press Enter on qa-catalog in the Discover tab — you’ll get scope options. (docs) -
/reload-pluginsactivates the new plugin without restarting Claude Code.
Verify it loaded by opening the plugin manager with /plugin and looking at the Installed tab — you should see QA My App with skills init, scan, sync, status, run, run-all. Errors (if any) show up under the Errors tab.
Local development / contributing
Section titled “Local development / contributing”If you’ve cloned the repo and want to test changes without publishing, launch Claude Code with the --plugin-dir flag instead:
claude --plugin-dir /path/to/qa-my-appThe local copy takes precedence over any installed marketplace version for that session. (docs)