Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
akillness avatar

Rtk

  • 389 installs
  • 40 repo stars
  • Updated August 4, 2026
  • akillness/oh-my-skills

rtk is an oh-my-skills agent skill (version 1.0) that installs, verifies, and configures Rust Token Killer—a CLI proxy that rewrites git, read, grep, and test commands into token-optimized output for AI coding agents.

About

rtk is an oh-my-skills installation and operations skill (version 1.0) for Rust Token Killer, a high-performance CLI proxy from the akillness/rtk fork of rtk-ai/rtk that compresses verbose shell output before it reaches AI agents. The skill verifies installations with rtk gain, repairs the common cargo install rtk name-collision with Rust Type Kit, supports Homebrew, install.sh, or Cargo install paths, and runs rtk init for Claude Code, Codex, Gemini CLI, Cursor, Copilot, Windsurf, Cline, and OpenCode. Developers reach for rtk when agent sessions waste context on git log, cargo test, or pytest output and need hook-based or direct rtk git status, rtk read, rtk grep, and rtk test wrappers.

  • Slice and reducer scaffolding
  • createAsyncThunk patterns
  • Typed useSelector and useDispatch
  • Entity adapters for normalized lists
  • Store provider and middleware setup

Rtk by the numbers

  • 389 all-time installs (skills.sh)
  • Ranked #666 of 2,245 Frontend Development skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/akillness/oh-my-skills --skill rtk

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs389
repo stars40
Last updatedAugust 4, 2026
Repositoryakillness/oh-my-skills

How do you reduce shell output tokens in AI agent sessions?

Structure Redux Toolkit slices, async thunks, typed hooks, and store setup in React apps when state grows beyond local component state.

Who is it for?

Developers running Claude Code, Cursor, or Codex who hit context limits from verbose git diff, test suite, and lint command output.

Skip if: Developers whose agents use only built-in Read and Grep tools without shell hooks and who do not execute bash commands in sessions.

When should I use this skill?

Agent sessions lose context to verbose git status, cargo test, pytest, or lint output and rtk installation or hook setup is needed.

What you get

Installed rtk binary, agent-specific hook configuration, and verified rtk gain token savings on git, read, grep, and test commands.

  • rtk binary installation
  • agent hook configuration
  • rtk gain verification report

By the numbers

  • Skill version 1.0 targeting akillness/rtk fork of rtk-ai/rtk
  • Supports rtk init configuration for 8 coding agents
  • Ships 3 wrapper scripts and 4 reference documentation files

Files

SKILL.mdMarkdownGitHub ↗

rtk - Rust Token Killer for AI Coding Agents

Keyword: rtk · rust token killer · rtk init · rtk gain

>

The target repository is the akillness/rtk fork of rtk-ai/rtk. The fork tracks upstream code, while the bundled install.sh still downloads release artifacts from rtk-ai/rtk.

RTK is a high-performance CLI proxy that rewrites common shell commands into token-optimized equivalents before their output reaches an AI agent. Use this skill to verify the right RTK binary, install or repair it, choose the correct rtk init mode for the user's agent, and fall back to direct rtk commands when no automatic hook exists.

When to use this skill

  • Verify whether RTK is already installed and whether it is the correct project
  • Repair the common cargo install rtk name-collision mistake
  • Install RTK with Homebrew, the repository install.sh, or Cargo
  • Initialize RTK for Claude Code, Codex, Gemini CLI, Cursor, Copilot, Windsurf, Cline, or OpenCode
  • Explain when rtk init -g is better than local project setup
  • Use direct rtk wrappers such as rtk git status, rtk read, rtk grep, rtk test, or rtk lint
  • Diagnose why automatic rewriting is not happening
  • Explain why built-in file tools do not pass through shell hooks and when to use direct rtk commands instead

Instructions

Step 1: Verify the current installation before reinstalling anything

Run the local status helper first:

bash scripts/check-status.sh --show

Interpret the result in this order:

1. If rtk gain works, the correct RTK is already installed. Do not reinstall unless the user wants an upgrade. 2. If rtk --version works but rtk gain fails, the user likely has the wrong rtk package, usually Rust Type Kit. 3. If rtk is missing entirely, move to installation.

The install and verification decision tree lives in references/install-and-verify.md.

Step 2: Install or repair RTK with the narrowest method that fits

Use the wrapper:

bash scripts/install.sh

Important installer choices:

  • Default auto prefers Homebrew on macOS when available, then the fork's install.sh, then Cargo
  • Use --method brew when Homebrew is available and the user wants a standard system-managed install
  • Use --method script for the repository install script path
  • Use --method cargo when the user explicitly wants a git-source build or is working from the fork
  • Use --force-uninstall-wrong when the user already installed the wrong rtk

Examples:

bash scripts/install.sh --method brew
bash scripts/install.sh --method script
bash scripts/install.sh --method cargo --repo akillness/rtk
bash scripts/install.sh --force-uninstall-wrong

Keep these installation rules explicit:

  • Always verify with rtk gain after installation
  • Treat cargo install rtk as unsafe unless the user already confirmed the correct package
  • If the install script path is used, remember the script still pulls release artifacts from rtk-ai/rtk

Step 3: Choose the correct rtk init mode for the agent

Use the init wrapper instead of hand-building flags:

bash scripts/init-agent.sh --agent claude --global

Default mapping:

  • Claude Code: --agent claude --global for hook-first setup
  • Codex: --agent codex --global or local --agent codex --local
  • Gemini CLI: --agent gemini --global
  • Cursor: --agent cursor --global
  • Copilot: --agent copilot --global
  • OpenCode: --agent opencode --global
  • Windsurf: --agent windsurf --local
  • Cline / Roo Code: --agent cline --local

Good follow-up checks:

bash scripts/init-agent.sh --agent claude --global --auto-patch
bash scripts/init-agent.sh --agent codex --global
bash scripts/init-agent.sh --agent opencode --global
bash scripts/init-agent.sh --agent claude --show

Read references/platform-init.md when the user needs the per-agent hook type, scope, or uninstall behavior.

Step 4: Use direct RTK commands when hooks are absent or insufficient

Automatic rewrite only applies where the agent actually executes shell commands through a supported hook or plugin. Prompt-only integrations such as Codex, Windsurf, and Cline still benefit from explicit rtk commands, but they do not transparently mutate built-in file tools.

Use direct commands when:

  • The agent uses a built-in Read, Grep, or Glob tool instead of shell
  • The workflow is in Codex and the user wants compact output immediately
  • The user wants deterministic verification independent of hook state

Common commands:

rtk git status
rtk read src/main.rs
rtk grep "pattern" .
rtk test cargo test
rtk lint
rtk gain

The command families and config knobs are summarized in references/commands-and-config.md.

Step 5: Diagnose failures explicitly

Use bash scripts/check-status.sh --show as the first diagnostic pass, then branch:

  • Wrong binary installed: fix the name collision and reinstall
  • Hook missing or stale: rerun the correct rtk init mode
  • Agent still verbose: confirm whether the task used shell commands or built-in tools
  • PATH issue: ensure ~/.local/bin or ~/.cargo/bin is on PATH
  • Windows wrapper failure: recommend RTK 0.23.1+

The troubleshooting matrix is in references/troubleshooting.md.

Examples

Example 1: Verify whether the correct RTK is already installed

bash scripts/check-status.sh --show

Example 2: Install from the fork-aware script path

bash scripts/install.sh --method script --repo akillness/rtk

Example 3: Repair the wrong cargo install rtk package

bash scripts/install.sh --force-uninstall-wrong --method cargo

Example 4: Claude Code global hook setup

bash scripts/init-agent.sh --agent claude --global --auto-patch

Example 5: Codex global prompt setup

bash scripts/init-agent.sh --agent codex --global

Example 6: OpenCode plugin install

bash scripts/init-agent.sh --agent opencode --global

Example 7: Use RTK directly for compact output

rtk read Cargo.toml
rtk grep "rtk init" README.md
rtk test cargo test

Example 8: Temporarily bypass rewrite for one command

RTK_DISABLED=1 git status

Best practices

1. Check rtk gain before reinstalling; it is the quickest way to distinguish the correct RTK from the wrong package. 2. Use the lightest install path that meets the user's needs: Homebrew for convenience, install script for release binaries, Cargo for source-driven workflows. 3. Treat rtk init -g as the normal path for hook-capable agents and local rules files as the normal path for Windsurf and Cline. 4. Use rtk init --show after setup or upgrades so stale hook state is visible immediately. 5. Remember that built-in read/search tools do not pass through shell hooks; switch to shell commands or direct rtk wrappers when token savings matter. 6. Keep RTK_DISABLED=1 in mind for one-off passthrough commands instead of uninstalling hooks. 7. Re-run the installer plus rtk init after RTK upgrades because hook artifacts can change between releases. 8. When users say "RTK is broken", separate installation correctness, hook registration, and actual command path before proposing a fix.

References

  • references/install-and-verify.md
  • references/platform-init.md
  • references/commands-and-config.md
  • references/troubleshooting.md
  • scripts/install.sh
  • scripts/init-agent.sh
  • scripts/check-status.sh
  • RTK Repository Fork
  • Upstream RTK Project

Related skills

How it compares

Pick rtk over manual output truncation when you need persistent agent hooks that automatically compress git, test, and lint shell output across sessions.

FAQ

How does rtk verify the correct binary is installed?

The rtk skill runs rtk gain via scripts/check-status.sh. If rtk --version works but rtk gain fails, the wrong rtk package—usually Rust Type Kit—was installed via cargo install rtk.

Which agents does rtk init support?

The rtk skill configures rtk init for Claude Code, Codex, Gemini CLI, Cursor, Copilot, Windsurf, Cline, and OpenCode using global or local hook modes per agent.

When should developers use direct rtk commands instead of hooks?

The rtk skill recommends direct rtk read, rtk grep, and rtk git commands when agents use built-in Read or Grep tools that bypass shell hooks, or in prompt-only integrations like Codex.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.