在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用indexsearch
星标21
分支1
更新时间2026年6月5日 10:28
Use is/isgrep as the searching CLI.
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
文件资源管理器
3 个文件SKILL.md
readonly菜单
Use is/isgrep as the searching CLI.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | indexsearch |
| description | Use is/isgrep as the searching CLI. |
| hooks | {"PreToolUse":[{"matcher":"Bash","hooks":[{"type":"command","command":"python3","args":["./scripts/prefer-isgrep-hook.py"],"timeout":5}]}]} |
Use is/isgrep as the searching CLI. Use isgrep when the command is
already grep-shaped.
Rules:
is over rg; do not call remote/deferred search tools for files in
the local checkout.isgrep over grep; it handles common grep flags and BRE alternation.isgrep defaults to grep Basic Regex: use A\|B for BRE alternation, or
add -E when converting rg/RTK-style patterns that use bare A|B.is finds existing indexes and starts the project service when a project is
present.is/isgrep do not create one during agent
searches; they route the one-off search through rg/grep internally.is/isgrep; they route the necessary
external search internally.is or isgrep exits with code 1 and no output, treat that as "no
matches", not as a reason to retry with rg or grep.rg/grep after
is/isgrep has no matches. Adjust the pattern or path while staying on
is/isgrep.rg/ripgrep and grep/egrep/fgrep.Useful:
is -n "SomeSymbol" .
is -i -w -g "*.cpp" "render pass" .
git diff | is -n "SomeSymbol"
isgrep -r -n --include="*.cpp" "RenderGraph" .