fix: remove exclamation mark from context-search SKILL.md

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 <noreply@anthropic.com>
This commit is contained in:
catlog22
2025-10-17 16:16:27 +08:00
parent 8b4042cd90
commit 9c02980a74

View File

@@ -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