Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计提醒

rtkRTK 搜索

Agent Skill

rtk 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,274

周安装

338

GitHub Stars

公开资料未说明

下载量

2,650
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:rtk(RTK 搜索)
来源仓库:https://github.com/radicalgeek/rtk
安装命令:
openclaw skills install rtk
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install rtk

简介

Rust Token Kit CLI代理,显著降低LLM令牌消耗达60-90%。

  • 包装常用命令如git、ls、cat等减少重复token支出。
  • 首次使用时需进行基准测试以校准节省比例。
  • 依赖Rust编译环境,安装过程较复杂。rtk 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 仅对文本密集型操作有效,二进制处理无收益。

SKILL.md

name
rtk
description
RTK (Rust Token Kit) - CLI proxy that reduces LLM token consumption by 60-90% on common dev commands. Use rtk to wrap commands like git, ls, cat, grep, test runners, linters, docker, kubectl, and more. Single Rust binary, zero dependencies, minimal overhead. Always prefer rtk wrappers when available for shell commands that produce verbose output.

RTK - Token-Optimized Command Wrapper

RTK filters and compresses command outputs before they reach context. Use it to reduce token consumption by 60-90% on common dev operations.

Quick Reference

Core principle: Prefix supported commands with rtk for compressed output.

Most Common Usage

# Git operations (80-92% savings)
rtk git status
rtk git diff
rtk git log -n 10
rtk git add .
rtk git commit -m "msg"
rtk git push

# File operations
rtk ls .           # Token-optimized tree
rtk read file.rs   # Smart file reading
rtk grep "pattern" .

# Testing (90% savings on failures)
rtk test cargo test
rtk test npm test
rtk vitest run
rtk playwright test
rtk pytest
rtk go test

# Linting (80-85% savings)
rtk lint           # ESLint grouped by rule
rtk tsc            # TypeScript errors by file
rtk cargo clippy
rtk ruff check
rtk golangci-lint run

# Build tools (75-80% savings)
rtk cargo build
rtk next build
rtk pnpm list

# Container ops (80% savings)
rtk docker ps
rtk docker logs <container>
rtk kubectl get pods
rtk kubectl logs <pod>

When to Use RTK

Use rtk for:

  • Commands that produce >100 lines of output
  • Repeated operations (git status, test runs, lint checks)
  • Any command in the supported command list below

Skip rtk for:

  • Interactive commands (vim, nano)
  • Commands already producing minimal output
  • Heredocs or pipes (rtk auto-skips these)

Supported Commands

Version Control

  • git - status, diff, log, add, commit, push, pull
  • gh - pr list/view, issue list, run list

File Operations

  • ls - directory listing
  • cat/head/tail - file reading (rewritten to rtk read)
  • rg/grep - search (rewritten to rtk grep)
  • find - file search

Testing

  • cargo test, npm test, vitest, jest, playwright, pytest, go test
  • Shows failures only, collapses passing tests

Linting & Type Checking

  • eslint, biome, tsc, prettier, ruff, golangci-lint, cargo clippy
  • Groups errors by file/rule

Build Tools

  • cargo build, next build, prisma generate
  • Removes progress bars, focuses on errors

Package Management

  • pnpm list, pip list, npm list
  • Compact dependency trees

Containers & Orchestration

  • docker ps/images/logs, docker compose ps
  • kubectl get/logs
  • Deduplicated logs, compact lists

Network & Logs

  • curl - auto-detects JSON
  • wget - strips progress bars
  • docker logs, kubectl logs - deduplicates repeated lines

Output Compression Strategies

RTK applies four strategies per command type:

  1. Smart Filtering - Removes comments, whitespace, boilerplate
  2. Grouping - Aggregates similar items (files by dir, errors by type)
  3. Truncation - Keeps relevant context, cuts redundancy
  4. Deduplication - Collapses repeated log lines with counts

Reading Levels

rtk read file.rs                    # Default: smart filtering
rtk read file.rs -l aggressive      # Signatures only (strips bodies)
rtk smart file.rs                   # 2-line heuristic summary

Error Handling

When a command fails, RTK saves the full unfiltered output:

FAILED: 2/15 tests
[full output: ~/.local/share/rtk/tee/1707753600_cargo_test.log]

Read the tee log file if you need the complete unfiltered output.

Token Savings Examples

Directory Listing

# Standard ls -la (45 lines, ~800 tokens)
drwxr-xr-x 15 user staff 480 ... my-project/
-rw-r--r-- 1 user staff 1234 ...
...

# rtk ls (12 lines, ~150 tokens)
+-- src/ (8 files)
|   +-- main.rs
+-- Cargo.toml

Git Push

# Standard git push (15 lines, ~200 tokens)
Enumerating objects: 5, done.
Counting objects: 100% (5/5), done.
...

# rtk git push (1 line, ~10 tokens)
ok main

Test Failures

# Standard cargo test (200+ lines on failure)
running 15 tests
test utils::test_parse ... ok
...

# rtk test cargo test (~20 lines)
FAILED: 2/15 tests
test_edge_case: assertion failed
test_overflow: panic at utils.rs:18

Installation Verification

RTK binary should already be installed. Verify:

rtk --version          # Should show version
rtk gain              # Show token savings stats

If not found, the binary needs to be installed in the container.

Advanced Usage

Ultra-compact mode

rtk -u git status     # ASCII icons, inline format

Filtering

rtk env -f AWS        # Show only AWS env vars

Summary mode

rtk summary <long-command>  # Heuristic summary for unknown commands

Raw passthrough (with tracking)

rtk proxy <command>   # Track usage without filtering

Configuration

RTK config file (if needed): ~/.config/rtk/config.toml

[tracking]
database_path = "/path/to/custom.db"

[hooks]
exclude_commands = ["curl", "playwright"]  # Skip rewrite

[tee]
enabled = true           # Save raw output on failure
mode = "failures"        # "failures", "always", or "never"
max_files = 20          # Rotation limit

Auto-Rewrite Hook (Optional)

RTK supports auto-rewriting Bash commands via hooks (for Claude Code, OpenCode, Gemini CLI). This is optional and not required for manual usage.

If the hook is installed, commands like git status are automatically rewritten to rtk git status before execution.

Not applicable for this deployment - manual rtk prefixing is the expected pattern.

Analytics

Check token savings:

rtk gain               # Summary stats
rtk gain --graph       # ASCII graph (last 30 days)
rtk gain --history     # Recent command history
rtk gain --daily       # Day-by-day breakdown

Troubleshooting

"rtk: command not found"

  • Binary not in PATH or not installed
  • Check: which rtk

Output still verbose

  • Command not supported by rtk
  • Use rtk proxy <command> to track unsupported commands

Need full output

  • Read tee log file (shown in failure message)
  • Or run command without rtk prefix

Reference

  • GitHub: https://github.com/rtk-ai/rtk
  • Documentation: https://www.rtk-ai.app
  • Troubleshooting: https://github.com/rtk-ai/rtk/blob/master/docs/TROUBLESHOOTING.md

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

88.7%
按下载量换算2,351

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills