Best for
- Before running any CLI command expected to produce 30 lines of output
- When setting up rtk on a new machine or project
- When creating/optimizing project-local rtk filters
event4u-app/agent-config/src/skills/rtk-output-filtering/SKILL.md
Use when running verbose CLI commands — wraps them with rtk (Rust Token Killer, third-party Apache-2.0; upstream reports 60-90% token savings). Covers installation, configuration, and usage patterns.
Decision brief
0; upstream reports 60-90% token savings). Covers installation, configuration, and usage patterns.
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/event4u-app/agent-config --skill "src/skills/rtk-output-filtering"Inspect the Agent Skill "rtk-output-filtering" from https://github.com/event4u-app/agent-config/blob/6a5670b7881a676c0da90d2afb950298087c4ccb/src/skills/rtk-output-filtering/SKILL.md at commit 6a5670b7881a676c0da90d2afb950298087c4ccb. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
Wrap any CLI command with rtk:
1. If personal.rtkinstalled: true → prefix commands with rtk when output 30 lines expected. 2. If false or missing → use plain commands. Do not prompt the user. 3. After wrapping: verify output is useful (not truncated on completeness-critical commands).
Read personal.rtkinstalled from .agent-settings.yml.
After installation, always apply these steps before any rtk usage:
Before running any CLI command expected to produce 30 lines of output
Permission review
The documentation asks the agent to run terminal commands or scripts.
When debugging or reviewing diffs, **always run the raw command** without rtk.Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 95/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 9 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
High-performance CLI proxy that reduces LLM token consumption on common dev commands through intelligent output filtering (whitespace, boilerplate, comments, duplicate log messages). Single Rust binary, <10ms startup overhead. Third-party Apache-2.0 tool (rtk-ai upstream — an external project, not part of this package).
Savings — STALE, and scoped. Do not quote the number without this label.
Upstream reports 60-90% (their estimate — "actual savings vary").
agent-config's own figure is 33% overall, 0-57% per command, and it is a
single spot-measurement from 2026-07-28: one repo, one macOS machine, an
8-command corpus. It has not been superseded by a wider run, and the
widened re-bench is deferred — road-to-terminal-token-economy steps
3.2-3.4. The reason changed on 2026-08-23 and the label is updated with it: the
original deferral was ordering (Phase 2 had not chosen the wrapper mechanism, so a
re-bench would measure the wrong subject). Phase 2 has now chosen — the existing
warn-only nudge — so that objection is discharged. What defers it now is the
re-bench's own registered design, which requires at least two machines, and only
one is reachable. A one-machine re-bench would reproduce exactly the narrowness the
widening exists to fix. AI council 2026-08-23, 2/2 convergent, on both readings.
Treat it as an order of magnitude for that corpus, never as this package's
general claim. Verbose commands (git status, git log, ls -la) save ~55%;
already-compact output (--oneline, --stat) passes through at ~0%, which is
why an overall percentage is meaningless without the corpus that produced it.
See internal/bench/rtk-savings/RESULTS.md.
Docs: https://www.mintlify.com/rtk-ai/rtk Repo: https://github.com/rtk-ai/rtk
Wrap any CLI command with rtk:
rtk git status # verbose status → compact (measured ~55% here)
rtk git log # compact log output (measured ~55% here)
rtk cargo test # upstream: only failures shown
rtk npm test # same for JS/TS
rtk docker compose ps # compact container status
personal.rtk_installed from .agent-settings.yml..rtk/filters.toml.personal.rtk_installed: true → prefix commands with rtk
when output >30 lines expected.false or missing → use plain commands. Do not prompt the user.Installation and one-time setup are owned by
/onboard. If the user asks to install rtk
outside onboarding, follow the Installation section below and set
personal.rtk_installed: true on success.
rtk prefixInvoked when rtk is not on PATH and the user explicitly asks to install
it. Never fire unsolicited.
src/install/rtkDetection.ts / docs/contracts/rtk-detection.md):
brew install rtk (official homebrew-core formula)curl -fsSL https://raw.githubusercontent.com/rtk-ai/rtk/master/install.sh | sh
(installs to ~/.local/bin)winget install rtk-ai.rtk (plus the documented ripgrep
dependency: winget install BurntSushi.ripgrep.MSVC); winget-less
images use the upstream rtk-x86_64-pc-windows-msvc.zip release.
NEVER cargo install rtk — the bare crates.io rtk crate is the
unrelated Rust Type Kit, not Rust Token Killer.rtk gain to verify IDENTITY (the savings dashboard prints "RTK
Token Savings" only on Rust Token Killer — rtk --version cannot
distinguish the two same-name tools).rtk init --global to enable auto-rewrite hooks.personal.rtk_installed: true to .agent-settings.yml.After installation, always apply these steps before any rtk usage:
rtk ships with telemetry enabled by default (opt-out). Sends anonymous usage data daily.
# Add BOTH — env var (immediate) + config (persistent)
echo 'export RTK_TELEMETRY_DISABLED=1' >> ~/.zshrc
mkdir -p ~/.config/rtk
# In ~/.config/rtk/config.toml:
# [telemetry]
# enabled = false
Saves raw unfiltered output on command failures. Auto-cleans (max 20 files, oldest deleted). Prevents re-running commands just to see full output.
# In ~/.config/rtk/config.toml:
[tee]
enabled = true
mode = "failures"
max_files = 20
max_file_size = 1048576
Logs all hook-rewritten commands so you can trace what rtk intercepted.
echo 'export RTK_HOOK_AUDIT=1' >> ~/.zshrc
~/.config/rtk/config.toml)[telemetry]
enabled = false
[tracking]
enabled = true
history_days = 30
[tee]
enabled = true
mode = "failures"
max_files = 20
max_file_size = 1048576
[display]
colors = true
emoji = true
max_width = 120
| Command | Use rtk? |
|---|---|
git status/log | ✅ Always |
git push/pull | ✅ Always |
Test runners (cargo test, npm test, phpunit) | ✅ Always |
Linters (phpstan, eslint, tsc) | ✅ Always |
docker compose ps/logs | ✅ Always |
| Short commands (< 5 lines expected) | ❌ No overhead benefit |
Commands piped to grep/tail already | ❌ Already filtered |
| Command | Why |
|---|---|
git diff | ⛔ Silent truncation at ~50 changes — LLM decides on incomplete data (Issue #827) |
rtk read | ⛔ Same truncation risk — use cat/view instead |
| Any command where completeness matters | ⛔ rtk may strip context needed for correct decisions |
When debugging or reviewing diffs, always run the raw command without rtk.
Project-local custom filters live in .rtk/filters.toml (project root, versioned in Git). These override global filters for matching commands. Add entries for whatever tools the project actually runs.
Coverage shipped with this package (extend per project):
go test, go build, go vet, golangci-lintcargo build, cargo test, cargo clippy, cargo fmtTo generate or update project-local filters → use the /optimize-rtk-filters command.
rtk git diff silently truncates at ~50 changes — you'll make decisions on incomplete datartk read has the same truncation risk — always use cat/view insteadmode = "failures") is your safety net — without it, re-run is the only optionrtk for git diff or any command where completeness mattersgrep/tailFrequently asked questions
0; upstream reports 60-90% token savings). Covers installation, configuration, and usage patterns.
The source record exposes this install command: npx skills add https://github.com/event4u-app/agent-config --skill "src/skills/rtk-output-filtering". Inspect the command and pinned source before running it.
Static rules flagged exec-script in the source; the page lists the matching lines and excerpts.
Alternatives
coreyhaines31/marketingskills
When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," "how long should I run this test," "growth experiments," "experiment velocity," "experiment backlog," "ICE score," "experimentation program
coreyhaines31/marketingskills
When the user wants to reduce churn, build cancellation flows, set up save offers, recover failed payments, or implement retention strategies. Also use when the user mentions 'churn,' 'cancel flow,' 'offboarding,' 'save offer,' 'dunning,' 'failed payment recovery,' 'win-back,' 'retention,' 'exit survey,' 'pause subscription,' 'involuntary churn,' 'people keep canceling,' 'churn rate is too high,' 'how do I keep users,' or 'customers are leaving.' Use this whenever someone is losing subscribers o
alirezarezvani/claude-skills
App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist
wanshuiyin/Auto-claude-code-research-in-sleep
Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.