From bcd095eefaf328713d64fa70971ea735c726ce10 Mon Sep 17 00:00:00 2001 From: xarmian Date: Wed, 22 Apr 2026 14:15:04 -0400 Subject: [PATCH] chore(repo): remove personal RTK AGENTS.md from root (TASK-672) (#197) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit AGENTS.md at repo root was personal RTK (Rust Token Killer) dev-tool config — off-topic for the public repo. Delete it and add AGENTS.md to .gitignore so contributors can keep a local copy without committing it. Parent: PLAN-644. --- .gitignore | 3 +++ AGENTS.md | 42 ------------------------------------------ 2 files changed, 3 insertions(+), 42 deletions(-) delete mode 100644 AGENTS.md diff --git a/.gitignore b/.gitignore index d2377ffc..fc339f1f 100644 --- a/.gitignore +++ b/.gitignore @@ -39,6 +39,9 @@ Thumbs.db .codex .codex/ +# Agent tool local configs (not for public repo) +AGENTS.md + # Go *.test *.out diff --git a/AGENTS.md b/AGENTS.md deleted file mode 100644 index 6b2291ab..00000000 --- a/AGENTS.md +++ /dev/null @@ -1,42 +0,0 @@ - -# RTK (Rust Token Killer) - Token-Optimized Commands - -When running shell commands, **always prefix with `rtk`**. This reduces context -usage by 60-90% with zero behavior change. If rtk has no filter for a command, -it passes through unchanged — so it is always safe to use. - -## Key Commands -```bash -# Git (59-80% savings) -rtk git status rtk git diff rtk git log - -# Files & Search (60-75% savings) -rtk ls rtk read rtk grep -rtk find rtk diff - -# Test (90-99% savings) — shows failures only -rtk pytest tests/ rtk cargo test rtk test - -# Build & Lint (80-90% savings) — shows errors only -rtk tsc rtk lint rtk cargo build -rtk prettier --check rtk mypy rtk ruff check - -# Analysis (70-90% savings) -rtk err rtk log rtk json -rtk summary rtk deps rtk env - -# GitHub (26-87% savings) -rtk gh pr view rtk gh run list rtk gh issue list - -# Infrastructure (85% savings) -rtk docker ps rtk kubectl get rtk docker logs - -# Package managers (70-90% savings) -rtk pip list rtk pnpm install rtk npm run