injector_regex_search
Search file contents using regex or literal strings, bypassing tokenization to find punctuation-heavy patterns.
Instructions
Fallback for exact literal or regex searches against file contents. Bypasses FTS5 tokenization to find punctuation-heavy strings or regex patterns.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | The literal string or regex pattern to search for. | |
| is_regex | No | If true, treats the query as an extended regex (-E). If false, treats as a fixed literal string (-F). |