rtk-ai/rtk
在 GitHub 查看[proxy] add rtk dotnet wrappers for run, ef, user-secrets, nuget, tool
Open
#1,831 建立於 2026年5月11日
area:clienhancementhelp wantedpriority:medium
倉庫指標
- Star
- (48,085 star)
- PR 合併指標
- (平均合併 11天 1小時) (30 天內合併 45 個 PR)
描述
Use case
For .NET developers using Claude Code, dotnet build/test/restore/format are
already proxied. The following subcommands are equally output-heavy but lack
proxies:
| Subcommand | Why it's noisy |
|---|---|
dotnet run |
Build banner + application stdout/log noise |
dotnet ef … |
"Build started…/Build succeeded" header + verbose migration info |
dotnet user-secrets list |
JSON dump with whitespace |
dotnet nuget list/search |
Padded tables |
dotnet tool list |
Padded tables |
Frequency (30-day Claude Code history via rtk discover)
dotnet run: 39dotnet user-secrets: 36dotnet ef: dominant in EF-Core-heavy projects (not in default discover sample but ubiquitous in .NET stacks with migrations)
Suggested approach
A shared MSBuild-banner stripper plus per-subcommand filters analogous to
rtk dotnet build. The ef filter should also strip the duplicate build
preamble that EF emits before the actual migration output.