diffsplain 0.4.1 → 0.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "diffsplain",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "Review Git diffs one file at a time with coding agent notes beside each patch.",
5
5
  "keywords": [
6
6
  "codex",
@@ -219,7 +219,7 @@ export function agentCommand({
219
219
  }
220
220
 
221
221
  if (agent === 'cursor') {
222
- const args = ['--print', '--output-format', 'json'];
222
+ const args = ['--print', '--trust', '--output-format', 'json'];
223
223
  if (model) args.push('--model', model);
224
224
  args.push(
225
225
  `${prompt}\n\nRead the snapshot from @${basename(inputPath)}. Return only JSON that matches this schema:\n${JSON.stringify(schema)}`,