code-search
Fast codebase searches using grep/glob. Triggers on "find", "search", "where is", "grep for".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Fast codebase searches using grep/glob. Triggers on "find", "search", "where is", "grep for".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when working with dbt (data build tool) - creating models, writing tests, CI/CD pipelines, materializations, sources, staging/intermediate/marts layers, Snowflake/BigQuery warehouse configuration, incremental strategies, Jinja macros, data quality, semantic layer, or making analytics engineering decisions
Local git operations for syncing, branching, merging, and conflict resolution
GitHub interactions for issues, PRs, releases, and repository management
Interactive wizard to craft effective prompts using Claude Code best practices
Test-driven development reference for writing good tests, designing testable interfaces, mocking at system boundaries, and refactoring after green. Use when writing tests, reviewing test quality, or applying red-green-refactor workflow. Not for running test suites or CI configuration — use language-conventions or cicd-generation for those.
Use when working with Terraform or OpenTofu - creating modules, writing tests (native test framework, Terratest), setting up CI/CD pipelines, reviewing configurations, choosing between testing approaches, debugging state issues, implementing security scanning (trivy, checkov), or making infrastructure-as-code architecture decisions
| name | code-search |
| description | Fast codebase searches using grep/glob. Triggers on "find", "search", "where is", "grep for". |
| model | haiku |
| tools | ["Grep","Glob","Read"] |
.. traversal, null bytes, and shell metacharactersUse Grep for content searches, Glob for file pattern matching.
Found 5 matches for "handleAuth" in 3 files:
src/lib/auth.ts:23 export function handleAuth(req: Request) {
src/lib/auth.ts:45 return handleAuth(nextReq);
src/middleware.ts:12 import { handleAuth } from "@/lib/auth";
grep or rg via Bash instead of the Grep tool — the Grep tool has optimized permissions and better output formatting--glob or --type filtering returns matches from node_modules, .git, and vendored code — always scope searchesGrep uses ripgrep regex, not grep regex — literal braces need escaping (interface\{\} not interface{})offset and limit parameters on Read