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