Updating & Uninstalling
Update the plugin
To pull in the latest version of RailsCTO from the marketplace:
/plugin update rails-cto@rails-ctoThis refreshes the plugin and all 16 skills to the latest published version.
Update the companion gem
The companion gem updates like any other Ruby gem. Bump it in your Gemfile.lock:
bundle update rails-ctoThen re-run init to pick up any new or changed config templates:
bundle exec rails-cto initinit skips files that already exist. If you want to force-refresh the templates to match the latest version, pass --force:
bundle exec rails-cto init --forceRun the drift detector afterward to confirm everything is in sync:
bundle exec rails-cto doctorSee rails-cto doctor for what it reports.
Uninstall the plugin
To remove RailsCTO from Claude Code:
/plugin uninstall rails-cto@rails-ctoThis removes the skills but leaves your project's Gemfile, config templates, and CLAUDE.md untouched. If you also want to remove the marketplace reference:
/plugin marketplace remove mattsears/rails-ctoUninstall the companion gem
Remove gem "rails-cto" from your Gemfile and run:
bundle installYou may also want to remove the config templates the gem dropped into your project — .rubocop.yml, .reek.yml, .bundler-audit.yml, config/brakeman.yml, and the .herb/ directory — and revert the SimpleCov patch in test/test_helper.rb. None of these are removed automatically, since they might contain your own customizations.