Back to list
eveld

before-file-search

by eveld

Research, planning, and implementation workflows for Claude Code

3🍴 1📅 Jan 6, 2026

SKILL.md


name: before-file-search description: Use BEFORE running grep or glob commands. Reminds you to use codebase-locator agent instead of basic file search tools.

Before File Search

STOP: You're about to use grep or glob.

Use codebase-locator Instead

The codebase-locator agent is specifically designed for finding files and components. It's more efficient and comprehensive than grep/glob.

Instead of:

Grep(pattern="authentication", ...)
Glob(pattern="**/auth*.js")

Do this:

Task(
  subagent_type="codebase-locator",
  prompt="Find all authentication-related files",
  description="Locate auth files"
)

When Basic Tools Are OK

Only use grep/glob when:

  • User explicitly asks for a simple file listing
  • You need to check if a specific file exists
  • You're doing a quick verification of a known path

For all exploratory searches, use codebase-locator.

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新

+5
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

0/5
タグ

1つ以上のタグが設定されている

+5

Reviews

💬

Reviews coming soon