TopRank Skills

Home / Claw Skills / 数据解析 / elite-tools
Official OpenClaw rules 54%

elite-tools

Elite CLI tooling for efficient shell operations with optimized token usage. Use when executing shell commands, traversing directories, or manipulating files to minimize token consumption and prevent regex escaping errors. Covers fdfind, batcat, sd, sg/ast-grep, jc, gron, yq, difft, tealdeer, and html2text.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 elite-tools 技能。 若已安装,则直接安装 elite-tools 技能。

Overview

Skill Key
bezkom/elite-tools
Author
bezkom
Source Repo
openclaw/skills
Version
0.0.1
Source Path
skills/bezkom/elite-tools
Latest Commit SHA
9e3f624896fe43350fb0f947ec87b0e7ef57fc39

Extracted Content

SKILL.md excerpt

# Elite CLI Tools

## PRIMARY DIRECTIVE

Prefer these modern CLI utilities over legacy POSIX tools (`find`, `cat`, `sed`, `grep`, `awk`, `diff`, `man`). They produce cleaner, more structured output and reduce token waste.

**Note on binary names:** On Debian/Ubuntu, some binaries are renamed to avoid conflicts: `fd` → `fdfind`, `bat` → `batcat`. On other distros they use their upstream names. Adapt accordingly.

## Quick Reference

| # | Tool | Replaces | Binary | Primary Use |
|---|------|----------|--------|-------------|
| 1 | fd | `find` | `fdfind` | Fast file discovery |
| 2 | bat | `cat`/`less` | `batcat` | File viewing with syntax highlighting |
| 3 | sd | `sed` | `sd` | Intuitive find & replace |
| 4 | ast-grep | `grep`/`rg` | `sg` | AST-based code search & rewrite |
| 5 | jc | `awk`/`cut` | `jc` | CLI output → JSON |
| 6 | gron | `jq` (exploration) | `gron` | JSON → greppable assignments |
| 7 | yq | `sed` on YAML | `yq` | YAML/JSON/XML/CSV processor |
| 8 | difftastic | `diff` | `difft` | Structural syntax-aware diffs |
| 9 | tealdeer | `man` | `tldr` | Concise command examples |
| 10 | html2text | raw HTML parsing | `html2text` | HTML → clean Markdown |

## Detailed Tool Guide

For full descriptions, rationale, and extended examples for each tool, read [references/tools-deep-dive.md](references/tools-deep-dive.md).

Related Claw Skills