Skills 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.

install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/bezkom/elite-tools" ~/.claude/skills/openclaw-skills-elite-tools && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/bezkom/elite-tools" ~/.openclaw/skills/openclaw-skills-elite-tools && rm -rf "$T"
manifest: skills/bezkom/elite-tools/SKILL.md
source content

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

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