rtk-ai/rtk

feat(rewrite): support bare turbo commands

Open

#531 aperta il 12 mar 2026

Vedi su GitHub
 (1 commento) (4 reazioni) (0 assegnatari)Rust (2914 fork)batch import
area:clieffort-smallenhancementgood first issueplatform:macospriority:low

Metriche repository

Star
 (48.085 star)
Metriche merge PR
 (Merge medio 11g 1h) (45 PR mergiate in 30 g)

Descrizione

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

Guida contributor