refactor(llm): update glob and grep system prompts to remove ripgrep dependency

Ayman Bagabas created

Change summary

internal/llm/tools/glob.go | 2 +-
internal/llm/tools/grep.go | 3 +--
2 files changed, 2 insertions(+), 3 deletions(-)

Detailed changes

internal/llm/tools/glob.go 🔗

@@ -43,7 +43,7 @@ LIMITATIONS:
 
 WINDOWS NOTES:
 - Path separators are handled automatically (both / and \ work)
-- Uses ripgrep (rg) command if available, otherwise falls back to built-in Go implementation
+- Uses built-in Go implementation and bmatcuk/doublestar/v4 for globbing
 
 TIPS:
 - Patterns should use forward slashes (/) for cross-platform compatibility

internal/llm/tools/grep.go 🔗

@@ -124,8 +124,7 @@ LIMITATIONS:
 - Hidden files (starting with '.') are skipped
 
 CROSS-PLATFORM NOTES:
-- Uses ripgrep (rg) command if available for better performance
-- Falls back to built-in Go implementation if ripgrep is not available
+- Uses built-in Go implementation that is based on regexp
 - File paths are normalized automatically for cross-platform compatibility
 
 TIPS: