From 9c02980a744dfa7ce3f5f165321c4c2620302b02 Mon Sep 17 00:00:00 2001 From: catlog22 Date: Fri, 17 Oct 2025 16:16:27 +0800 Subject: [PATCH] fix: remove exclamation mark from context-search SKILL.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove glob pattern example with exclamation mark as it's not supported in skill files. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .claude/skills/context-search/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.claude/skills/context-search/SKILL.md b/.claude/skills/context-search/SKILL.md index a38ad673..a68bab4c 100644 --- a/.claude/skills/context-search/SKILL.md +++ b/.claude/skills/context-search/SKILL.md @@ -82,7 +82,7 @@ Follow this recommended pattern for codebase exploration: - **rg > grep** - Always prefer ripgrep for content search - **Type filters** - Use `--type` to limit file types (e.g., `--type js`) -- **Exclude patterns** - Use `--glob '!node_modules'` to exclude common directories +- **Exclude patterns** - Use appropriate glob patterns to filter search scope - **Literal strings** - Use `-F` flag for exact matches (no regex overhead) ## Examples