Read the code a Capy agent wrote
capy_diffRetrieve and review Capy task diffs directly in the conversation, with options to filter by file paths or view summary stats first.
Instructions
Get the diff a Capy task produced, so you can review the work without leaving this conversation. Task ids come from capy_status, capy_wait, or capy_list, which list the tasks belonging to each thread.
Large diffs are truncated to stay within a token budget. Use stats_only to see just the file list and line counts first, then request specific paths.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | Which diff to read: "uncommitted" for the agent's working changes, "pr" for the pull request diff. | |
| paths | No | Only include files whose path contains one of these substrings. | |
| task_id | Yes | Task id, taken from a thread's task list. This is not the thread id. Accepts either the UUID or the short identifier form like "SCO-123". | |
| max_bytes | No | Approximate cap on emitted patch text. Defaults to 60000. | |
| stats_only | No | Return only the file list and line counts, without patch bodies. |