Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ Four strategies applied per command type:
rtk ls . # Token-optimized directory tree
rtk read file.rs # Smart file reading
rtk read file.rs -l aggressive # Signatures only (strips bodies)
rtk read file.rs --lines 430:540 # Inclusive line range (1-based)
rtk smart file.rs # 2-line heuristic code summary
rtk find "*.rs" . # Compact find results
rtk grep "pattern" . # Grouped search results
Expand Down Expand Up @@ -223,6 +224,7 @@ rtk codegraph index <path> # Summary only, no per-file progress (-90%)
Select-String -Path f -Pattern p # auto-rewritten -> rtk grep
Get-Content <file> # auto-rewritten -> rtk read
GC <file> # auto-rewritten -> rtk read
rtk read <file> --lines 430:540 # Prefer over Get-Content line-range loops
Remove-Item <path> -Force # -> ok <basename>
```

Expand Down Expand Up @@ -255,6 +257,7 @@ rtk json config.json # Structure without values
rtk deps # Dependencies summary
rtk env -f AWS # Filtered env vars
rtk log app.log # Deduplicated logs
rtk log ERRORLOG.TXT --events 20 # Tail key error/assert events (deduped)
rtk curl <url> # Truncate + save full output
rtk wget <url> # Download, strip progress bars
rtk summary <long command> # Heuristic summary
Expand Down
Loading