effort-smallenhancementgood first issue
Description
Description
rtk rewrite matches npx turbo <cmd> but not bare turbo <cmd>. In monorepos using Turborepo, turbo is typically installed globally or via npx -g, so bare invocations are common.
Reproduction
# Matches:
rtk rewrite "npx turbo tsc" # -> rtk npx turbo tsc ✓
# Doesn't match:
rtk rewrite "turbo tsc" # exit 1 ✗
rtk rewrite "turbo lint" # exit 1 ✗
rtk rewrite "turbo run tsc" # exit 1 ✗
rtk rewrite "turbo dev" # exit 1 ✗
Impact
In my monorepo, ~69 turbo commands in the last 30 days went unmatched.
Suggested fix
Add turbo as a rewrite target alongside npx turbo, mapping to rtk npx turbo or a dedicated rtk turbo.
Environment
- rtk 0.28.2
- macOS Darwin 25.3.0