diff_diff_files
Compare two files to generate a unified diff showing added, removed, and unchanged lines. Identify changes between file versions for code review or version tracking.
Instructions
[diff] Compare two files and return a unified diff. Returns {unified: str, added_lines: int, removed_lines: int, unchanged_lines: int, has_changes: bool}. Returns an error if either file cannot be read.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path_a | Yes | ||
| path_b | Yes | ||
| context | No |