Back to list
Andeveling

cli-tools

by Andeveling

glasify-lite

1🍴 0📅 Jan 11, 2026

SKILL.md


name: cli-tools description: Use modern Rust-based CLI tools (bat, ripgrep, fd, sd, eza) as interactive replacements for cat, grep, find, sed, and ls in developer terminal workflows. license: MIT compatibility: opencode

metadata: audience: developers workflow: terminal maturity: stable

Modern CLI Tools

Use modern Rust-based command-line tools as ergonomic replacements for common Unix utilities when working interactively in the terminal.

This skill applies when exploring codebases, inspecting files, searching text, or navigating directories during development. It is not intended for POSIX-strict shell scripts or CI environments.

Scope and Usage

  • Interactive terminal sessions
  • Local development environments
  • Source code exploration and refactoring

Not intended for:

  • Non-interactive shell scripts
  • CI/CD pipelines
  • Environments requiring strict POSIX compatibility

Tool Mapping

LegacyModernExample UsagePrimary Benefit
catbatbat file.tsSyntax highlighting, paging
greprgrg "pattern"Fast search, respects .gitignore
findfdfd -e tsSimpler, safer defaults
sedsdsd old new fileReadable find and replace
lsezaeza -la --gitGit-aware directory listings

Examples

grep -R "useEffect" .

Suggested alternative:

rg "useEffect"

Reason: Faster recursive search and automatic exclusion of ignored directories.


Directory listing

ls -la

Suggested alternative:

eza -la --git

Reason: Improved formatting with inline Git status.

Notes

  • Do not blindly alias legacy commands in shared or scripted environments.
  • Prefer explicit usage (rg, fd, eza) over global overrides.
  • Installation and environment setup are intentionally omitted from this skill.

References

Score

Total Score

50/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon