Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

advanced_tools先进的工具

Agent Skill

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

总安装

360

周安装

15

GitHub Stars

9

下载量

120
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/tao3k/omni-dev-fusion --skill advanced_tools

简介

advanced_tools 是项目级智能搜索与批量替换工具集,封装了高性能 Rust 实现的 fd 与 ripgrep。

  • 适合快速定位文件、全文检索内容或在多文件中执行安全替换操作,显著优于传统 ls/grep 组合。
  • 提供 smart_find 按名称查找文件、smart_search 全文匹配及 batch_replace 跨文件重构三大核心能力。
  • 所有操作默认排除 node_modules/.git 等目录,可通过参数自定义忽略规则与搜索模式。
  • 批量替换前建议先预览变更范围,避免意外修改关键配置文件或生产代码。

SKILL.md

Advanced Tools Skill (Batch Replace, Smart Search, Smart Find)

You have loaded the Advanced Tools (Find & Search) Skill.

The Search Engine of Agentic OS

This skill is the PRIMARY gateway for locating anything in the project. It wraps high-performance Rust tools.

CategoryToolImplementationBest For
Locatorsmart_findfd-findFinding FILES by name/path
Searchersmart_searchripgrepFinding TEXT inside files
Refactorbatch_replaceRust/PythonMulti-file search and replace

Available Tools

smart_find: Fast File Location

ALWAYS use this to find files. Superior to ls or list_directory for discovery.

def smart_find(
    pattern: str = ".",      # Regex or glob for filename
    extension: str = None,   # Filter: 'py', 'rs', 'md'
    exclude: str = None,     # Patterns to ignore
    search_mode: str = "filename" # "filename" (fd) or "content" (rg -l)
) -> dict

smart_search: Fast Code Search

ALWAYS use this to find code content. The gold standard for grep.

def smart_search(
    pattern: str,            # Text or regex to find (REQUIRED)
    file_globs: str = None,  # Filter: "*.py *.ts"
    case_sensitive: bool = True,
    context_lines: int = 0
) -> dict

batch_replace: Safe Refactoring

RECOMMENDED for mass changes. Always includes a dry-run preview.

def batch_replace(
    pattern: str,            # Find this
    replacement: str,        # Replace with this
    file_glob: str = "**/*",
    dry_run: bool = True     # Default is PREVIEW for safety
) -> dict

Batch Replace Command (Primary Query Anchor)

batch replace is the canonical query phrase for this tool in documentation and routing. Use batch_replace when you need deterministic multi-file replacement with dry-run safety.

Linked Notes

Use Cases & Intention

  • "Find all python files" -> smart_find(extension="py")
  • "Where is the Kernel defined?" -> smart_search(pattern="class Kernel")
  • "Find files containing API_KEY" -> smart_find(pattern="API_KEY", search_mode="content")
  • "Rename variable 'old_name' to 'new_name'" -> batch_replace(...)

Important Rules

  1. Discovery First: If you don't know where a file is, use smart_find.
  2. Context Matters: Use smart_search with context_lines to understand match surroundings.
  3. Respect Ignored: All tools automatically respect .gitignore.
  4. Prefer Patterns: Use specific regex patterns to reduce noise.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

windsurf

25.44%
按下载量换算31

Claude Code

25.24%
按下载量换算30

trae

19.46%
按下载量换算23

OpenCode

11.67%
按下载量换算14

Codex

6.94%
按下载量换算8

Antigravity

3.2%
按下载量换算4

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills