Deep-review a finding
diffgate_deep_reviewRuns an agentic deep review on a high-impact finding, using repo tools to investigate blast radius before rendering a verdict.
Instructions
Run an agentic deep review on a single high-impact (orange) finding. The model uses real repo tools (grep, read_file, find_references, git_blame) to investigate blast radius before rendering a verdict.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cwd | Yes | Repo root. Defaults to process.cwd(). | |
| finding | Yes | A finding object from diffgate_analyze. | |
| snippet | No | Code snippet around the finding. | |
| filePath | Yes | Repo-relative path of the file containing the finding. | |
| language | No | Language id (javascript, python, go, etc.). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| verdict | Yes | The model's final verdict on the finding. | |
| rationale | No | Why the model reached that verdict. | |
| toolSteps | No | The investigation trace (tool calls the model made). |