Files
lambada-fiesta-live/.github/copilot-instructions.md
Antoni Nuñez Romeu 935921f698
All checks were successful
Deploy NPM app / Deploy NPM (push) Successful in 29s
Added multi-lingua, english-spanish. Timer conditions and Linting bugfixes.
2026-03-27 16:23:06 +01:00

26 lines
692 B
Markdown

# RTK — Token-Optimized CLI
**rtk** is a CLI proxy that filters and compresses command outputs, saving 60-90% tokens.
## Rule
Always prefix shell commands with `rtk`:
```bash
# Instead of: Use:
git status rtk git status
git log -10 rtk git log -10
cargo test rtk cargo test
docker ps rtk docker ps
kubectl get pods rtk kubectl pods
```
## Meta commands (use directly)
```bash
rtk gain # Token savings dashboard
rtk gain --history # Per-command savings history
rtk discover # Find missed rtk opportunities
rtk proxy <cmd> # Run raw (no filtering) but track usage
```