Use rtk first for shell commands in this repo when it keeps the command clear.
- For runtime-sensitive commands, prefer
rtk mise exec -- <command>. - For direct wrappers, prefer repo-safe forms like:
rtk rg ...rtk git ...rtk rspec ...rtk pnpm ...
- Frontend build:
rtk mise exec -- timeout 30 bin/vite build
- Focused RSpec:
rtk proxy mise exec -- bundle exec rspec spec/path/to/file_spec.rb
- Runtime version checks:
rtk mise exec -- ruby -vrtk mise exec -- node -v
- If
rtkobscures useful debugging output or blocks the task, fall back to the direct command and say so plainly.