rtk-ai/rtk

feat(rewrite): support bare turbo commands

Open

#531 创建于 2026年3月12日

在 GitHub 查看
 (1 评论) (4 反应) (0 负责人)Rust (48,085 star) (2,914 fork)batch import
effort-smallenhancementgood first issue

描述

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

贡献者指南