Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计提醒

cli-power-toolsCLI power tools 搜索

Agent Skill

cli-power-tools 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

737

周安装

31

GitHub Stars

10

下载量

258
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:cli-power-tools(CLI power tools 搜索)
来源仓库:https://github.com/oakoss/agent-skills
仓库路径:skills/cli-power-tools
安装命令:
npx skills add https://github.com/oakoss/agent-skills --skill cli-power-tools
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/oakoss/agent-skills --skill cli-power-tools

简介

cli-power-tools 整合 ripgrep、fd、jq、xh 等现代工具,替代传统文本管道。

  • 适合代码库搜索、JSON 处理与 HTTP 请求等高性能 CLI 工作流。
  • 利用各工具理解结构的能力(gitignore、文件类型、JSON 等)提升效率。
  • 安装前应安装 fetcher 浏览器引擎(如 Playwright),否则动态提取失效。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Utility Pro

Overview

Masters the command-line environment by turning raw text and unstructured data into actionable insights. Combines Rust-powered search tools (ripgrep, fd, bat), structured data shells (Nushell), JSON manipulation (jq/yq), and modern HTTP clients (xh) for high-performance CLI workflows.

Core philosophy: Replace legacy text-parsing pipelines (grep/awk/sed chains) with purpose-built tools that understand structure. ripgrep understands gitignore rules, fd understands file types, jq understands JSON, and Nushell understands tables.

When to use: Codebase-wide search and analysis, multi-file refactoring, JSON/YAML transformation pipelines, API debugging, directory navigation, log parsing, disk usage auditing, dependency tracing.

When NOT to use: GUI-based tasks, complex application logic (write a script instead), tasks requiring interactive prompts.

Quick Reference

PatternTool / CommandKey Points
Text searchrg "pattern" -g "*.tsx"10-100x faster than grep, respects .gitignore
File searchfd -e pdf or fd "pattern"Fast alternative to find with smart defaults
Syntax-highlighted readbat file.tsCat with syntax highlighting and git integration
Directory jumpz project-nameRemembers frequently visited directories
Fuzzy searchfzf or CTRL-T / CTRL-RInteractive selection for files and history
Tree vieweza --tree --level=2Metadata-rich ls replacement with tree support
JSON query`jq '.items[] \select(.active)'`Full functional programming for JSON
YAML queryyq '.config.database' file.ymljq-like syntax for YAML files
HTTP requestxh POST api.example.com/v1/data key=valueColorized, user-friendly HTTP client
Multi-file refactorfd -e tsx -x sed -i 's/Old/New/g' {}Find files then execute transforms
Structured shell`ls \where size > 1mb \sort-by size`Nushell tables instead of text parsing
Log parsing`rg "ERROR" --json \jq 'select(.type == "match") \.data.lines.text'`Combine ripgrep JSON output with jq filters
File preview with searchfzf --preview 'bat --color=always {}'Browse files with syntax-highlighted preview
Find recently changedfd --changed-within 1hFind files modified within a time window
Export count by file`rg -c "pattern" -g "*.ts" \sort -t: -k2 -rn`Count matches per file, sorted by frequency
JSON format conversionyq -o json config.ymlConvert between YAML, JSON, CSV, and other formats
Advanced regex searchrg -P "(?<=function\s)\w+" --only-matchingPCRE2 for lookahead/lookbehind patterns
Git-aware file listingeza -la --git --iconsShow file metadata with inline git status

Tool Overview

CategoryModern ToolReplacesKey Advantage
Text searchripgrep (rg)grep, ag, git grepSpeed, .gitignore awareness, Unicode
File searchfdfindSmart defaults, regex, parallelism
File viewerbatcat, lessSyntax highlighting, git diff markers
Directory jumpzoxide (z)cd, autojumpFrecency-based ranking, fzf fallback
Fuzzy finderfzfmanual pipingUniversal selector for any list
File listingezals, treeTree view, git status, icons
JSON processingjqawk, python onelinersTyped, functional JSON transforms
YAML processingyqsed on YAMLjq-compatible syntax for YAML
HTTP clientxhcurl, httpieHTTPie syntax, Rust speed, single binary
Structured shellNushellbash + awk/sedTyped tables, native format conversion

Common Mistakes

MistakeCorrect Pattern
Using grep instead of ripgrep for codebase searchUse rg which is 10-100x faster and respects .gitignore by default
Piping ls output into grep for file filteringUse fd for file discovery, or eza -D / eza --ignore-glob for listing
Writing complex awk scripts for structured dataUse Nushell or jq which natively understand JSON, CSV, and YAML
Running rm -rf in scripts without a dry-run stepAlways add a verification or dry-run step before destructive operations
Using capturing groups in regex when not neededPrefer non-capturing groups (?:...) for better performance in large-scale scans
Searching node_modules or .git directoriesUse rg which skips these by default, or configure exclusions explicitly
Forgetting select(.type == "match") on rg --jsonripgrep JSON emits begin, match, context, end, and summary message types
Using curl with verbose flag syntaxUse xh which provides colorized output and HTTPie-compatible request-item syntax
Parsing text output between tools with cut/trUse Nushell pipelines that preserve structured data through every stage
Anchoring regex with .* at the startAnchor with ^ when possible; unanchored .* causes expensive backtracking

Installation

All tools are available via common package managers. Most are single statically linked binaries.

ToolmacOS (Homebrew)Linux (apt/cargo)
ripgrepbrew install ripgrepapt install ripgrep or cargo install ripgrep
fdbrew install fdapt install fd-find or cargo install fd-find
batbrew install batapt install bat or cargo install bat
zoxidebrew install zoxidecargo install zoxide
fzfbrew install fzfapt install fzf
ezabrew install ezacargo install eza
jqbrew install jqapt install jq
yqbrew install yqsnap install yq or go install
xhbrew install xhcargo install xh
Nushellbrew install nushellcargo install nu

Shell integration (add to shell config after installing):

ToolShell Integration Required
zoxideeval "$(zoxide init zsh)" (or bash/fish equivalent)
fzfSource keybinding and completion scripts from fzf install

Delegation

  • Large-scale codebase search and analysis: Use Explore agent to run ripgrep queries, trace dependencies, and map code patterns
  • Multi-file refactoring workflows: Use Task agent to coordinate fd, sed, and verification steps across an entire project
  • Pipeline architecture for data transformation: Use Plan agent to design structured pipelines combining jq, Nushell, and API tools

References

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.22%
按下载量换算96

Claude

31.03%
按下载量换算80

Cursor

17.88%
按下载量换算46

Gemini CLI

9.92%
按下载量换算26

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/oakoss/agent-skills --skill cli-power-tools 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills