live_text_search
live_text_searchPerform live filesystem text search over a project root using ripgrep, returning bounded file and line matches. Supports fixed-string or regex matching.
Instructions
Code-intelligence tool for live filesystem text search: run ripgrep over the attached project root and return bounded file/line matches. Defaults to fixed-string matching; pass fixedStrings: false to use ripgrep regex syntax. Read-only and explicitly live, so use it when the indexed snapshot may be stale or when exact text search is the right primitive.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectId | No | ||
| projectRef | No | ||
| query | Yes | ||
| pathGlob | No | ||
| caseSensitive | No | ||
| fixedStrings | No | ||
| includeHidden | No | ||
| maxMatches | No | ||
| maxFiles | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| toolName | Yes | ||
| projectId | Yes | ||
| query | Yes | ||
| evidenceMode | Yes | ||
| matches | Yes | ||
| filesMatched | Yes | ||
| truncated | Yes | ||
| warnings | Yes | ||
| _hints | Yes |