rtk-ai/rtk

Feature Request: Add uv run support to RTK

クローズ

#1,379 opened on 2026/04/18

 (4 件のコメント) (10 件のリアクション) (0 人の担当者)Rust (2,914 件のフォーク)batch import
area:clieffort-mediumenhancementgood first issuehelp wantedpriority:medium

Repository metrics

Stars
 (48,085 個のスター)
PR merge metrics
 (平均マージ 11d 1h) (30d で 45 merged PRs)

説明

Feature Request: Add uv run support

Problem

uv run is heavily used in Python projects (667 times/30 days in my workflow) but RTK doesn't filter it.

Current Behavior

uv run --project backend --extra dev python script.py
# Full Python stdout/stderr output

Proposed Behavior

# Should filter similar to 'npm run':
rtk uv run --project backend --extra dev python script.py
# - Show only errors (stderr)
# - Suppress verbose logs
# - Truncate stack traces

Examples to Filter

uv run python script.py
uv run pytest
uv run ruff check
uv run --project backend alembic upgrade head

Impact

Estimated savings: 133K-333K tokens/30 days

Reference

Similar to existing rtk npm run implementation

Environment

  • RTK version: (installed via npm)
  • Python version: 3.11+
  • Use case: FastAPI + Next.js project with uv package manager

コントリビューターガイド