find_todos
Scan a local Git repository for TODO, FIXME, HACK, and XXX comments, returning each match with file path, line number, and comment text.
Instructions
Scan a repo for TODO / FIXME / HACK / XXX comments.
Args: path: Filesystem path to the repo root. max_results: Cap on how many matches to return (default 100).
Returns: List of {file, line_number, tag, text} dicts, one per match found.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | No | . | |
| max_results | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |