소스 정보
- 저장소
- diegosouzapw/awesome-omni-skill
- 최근 소스 활동
- 2026년 2월 28일 04:03
- 감지된 SKILL.md 언어
- 영어
- 스타
- 50
- 포크
- 19
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/diegosouzapw/awesome-omni-skill --skill rtk-optimizer명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | rtk-optimizer |
| description | Optimize command outputs with RTK (Rust Token Killer) for 70% token reduction |
| version | 1.0.0 |
| tags | ["optimization","tokens","efficiency","git"] |
Purpose: Automatically suggest RTK wrappers for high-verbosity commands to reduce token consumption.
git log → rtk git log (92.3% reduction)git status → rtk git status (76.0% reduction)find → rtk find (76.3% reduction)git diff → rtk git diff (55.9% reduction)cat <large-file> → rtk read <file> (62.5% reduction)pnpm list → rtk pnpm list (82% reduction)pnpm test / vitest run → rtk vitest run (90% reduction)cargo test → rtk cargo test (90% reduction)cargo build → rtk cargo build (80% reduction)cargo clippy → rtk cargo clippy (80% reduction)pytest → rtk python pytest (90% reduction)go test → rtk go test (90% reduction)gh pr view → rtk gh pr view (87% reduction)gh pr checks → rtk gh pr checks (79% reduction)ls → rtk ls (condensed output)grep → rtk grep (filtered output)User: "Show me the git history"
Skill: Detects git log → Suggests rtk git log → Explains 92.3% token savings
User: "Find all markdown files"
Skill: Detects find → Suggests rtk find "*.md" . → Explains 76.3% savings
Before first use, verify RTK is installed:
rtk --version # Should output: rtk 0.16.0+
If not installed:
# Homebrew (macOS/Linux)
brew install rtk-ai/tap/rtk
# Cargo (all platforms)
cargo install rtk
# When user requests high-verbosity command:
1. Acknowledge request
2. Suggest RTK optimization:
"I'll use `rtk git log` to reduce token usage by ~92%"
3. Execute RTK command
4. Track savings (optional):
"Saved ~13K tokens (baseline: 14K, RTK: 1K)"
Optional: Track cumulative savings across session:
# At session end
rtk gain # Shows total token savings for session (SQLite-backed)
Enable via CLAUDE.md:
## Token Optimization
Use RTK (Rust Token Killer) for high-verbosity commands:
- git operations (log, status, diff)
- package managers (pnpm, npm)
- build tools (cargo, go)
- test frameworks (vitest, pytest)
- file finding and reading
Based on real-world testing:
git log: 13,994 chars → 1,076 chars (92.3% reduction)git status: 100 chars → 24 chars (76.0% reduction)find: 780 chars → 185 chars (76.3% reduction)git diff: 15,815 chars → 6,982 chars (55.9% reduction)read file: 163,587 chars → 61,339 chars (62.5% reduction)Average: 72.6% token reduction
Use RTK for: git workflows, file operations, test frameworks, build tools, package managers Skip RTK for: small outputs, quick exploration, interactive commands
docs/resource-evaluations/rtk-evaluation.mdexamples/claude-md/rtk-optimized.md