rtk-ai/rtk

feat: add vercel CLI filter — compress deploy logs, project listings

Open

#1.255 geöffnet am 13. Apr. 2026

Auf GitHub ansehen
 (2 Kommentare) (0 Reaktionen) (0 zugewiesene Personen)Rust (2.914 Forks)batch import
area:clieffort-mediumenhancementgood first issueplatform:macospriority:low

Repository-Metriken

Stars
 (48.085 Stars)
PR-Merge-Metriken
 (Durchschn. Merge 11T 1h) (45 gemergte PRs in 30 T)

Beschreibung

Problem

vercel CLI commands produce verbose output that wastes tokens in AI coding assistants.

  • vercel --yes --prod — deploy logs repeat build step output (bundling, routes, ready) that are mostly noise
  • vercel project ls — table format with padding that could be compressed

Evidence

rtk discover reports 30 vercel commands in the last 30 days (19 vercel --yes --prod, 11 vercel project ls), currently unhandled.

Suggested approach

Add a vercel filter similar to existing npm/npx filters:

  • deploy: strip ANSI, compress repeated build lines, keep final URL + status
  • project ls: compress table output
  • general: strip spinner/progress animations

Environment

  • rtk 0.30.0
  • macOS (Darwin 24.6.0)
  • Claude Code PreToolUse hook

Contributor Guide