LaunchKit · 2026
Back to Skills

Elite CLI tooling for efficient shell operations with optimized token usage.

0
582 downloads
by @bezkom

Setup & Installation

openclaw skills install @bezkom/elite-tools

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install elite-tools

Version History

v0.0.1Feb 23, 2026 - Version note by skill developer:

Initial release with newline encoding fix

What This Skill Does

A guide for AI agents to prefer modern CLI utilities over legacy POSIX tools. Covers ten tools: fdfind, batcat, sd, ast-grep, jc, gron, yq, difftastic, tealdeer, and html2text. Reduces token consumption and avoids regex escaping errors during shell operations.

Modern replacements produce cleaner, more structured output than legacy tools like find, sed, and grep, which reduces token waste and eliminates common escaping bugs in agent-driven shell tasks.

When to use it

  • Searching files by name without complex find syntax
  • Viewing source files with syntax highlighting in terminal
  • Find-and-replace across files without escaping regex special characters
  • Searching code by AST structure rather than raw text
  • Converting YAML or JSON configs during automated workflows

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: rename all occurrences of 'OldConfig' to 'NewConfig' across TypeScript files

AGENT
  1. 1Use fdfind to list all .ts files in the project
  2. 2Run ast-grep to locate 'OldConfig' as an identifier using AST patterns
  3. 3Apply sd to replace the string without regex escaping issues
  4. 4Use batcat to review changed files with syntax highlighting
OUTPUT

All TypeScript files updated with 'NewConfig', changes visually confirmed

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

Install fd (fdfind on Debian/Ubuntu)Install bat (batcat on Debian/Ubuntu)Install sdInstall ast-grep (sg)Install jc, gron, yq, difftastic, tealdeer, and html2text