rtk-ai/rtk

Claude fails to use `rtk proxy` because of quotes

Open

#388 aberto em 6 de mar. de 2026

Ver no GitHub
 (2 comments) (1 reaction) (0 assignees)Rust (2.914 forks)batch import
P2-importantarea:clibugeffort-smallenhancementgood first issuepriority:medium

Métricas do repositório

Stars
 (48.085 stars)
Métricas de merge de PR
 (Mesclagem média 11d 1h) (45 fundiu PRs em 30d)

Description

I just witnessed Claude Code run:

rtk proxy 'head -50 app/Models/Domaine.php'
Error: Failed to execute command: head -50 app/Models/Domaine.php

Caused by:
    No such file or directory (os error 2)

After debugging I figured out that it should have run:

rtk proxy head -50 app/Models/Domaine.php

i.e. because of the quotes it messed up the invocation.

Should:

  • Claude instructions be clarified to avoid CC adding quotes?
  • or rtk proxy automatically un-quote if it gets 1 argument with quotes?

Guia do colaborador