You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+28Lines changed: 28 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -336,6 +336,34 @@ This project [includes](./resources/boost/skills) three AI skills focused on man
336
336
-__create__: generate a `.gitattributes` file when it is missing.
337
337
-__update__: reconcile an existing `.gitattributes` file with expected export-ignore rules.
338
338
339
+
### Agentic-friendly output
340
+
341
+
All commands support the `--agentic-run` option, which switches the output from human-readable text to a structured JSON object. This is useful when integrating the tool into AI workflows or automation pipelines where machine-readable output is preferred.
"message": "The .gitattributes file is considered valid.",
352
+
"valid": true
353
+
}
354
+
```
355
+
356
+
Each response always includes `command`, `status` (`success` or `failure`), and `message` fields. Commands also include additional context-specific fields:
0 commit comments