We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80734e3 commit 1e124f2Copy full SHA for 1e124f2
1 file changed
AGENTS.md
@@ -26,6 +26,9 @@ guide for package-specific conventions and workflows.
26
- If `pixi` is available for this repo, prefer `pixi run ...` or the matching
27
`pixi` task over invoking raw `python`, `pytest`, `pip`, or similar tools
28
directly so commands run in the repository-managed environment.
29
+- When extracting or transforming JSON in shell workflows, prefer `jq` over
30
+ one-off Python parsing. For `gh` commands that return JSON, prefer the
31
+ built-in `--jq` flag instead of piping the output into `python`.
32
- When multiple tool calls can be parallelized (e.g., todo updates with other
33
actions, file searches, reading files), make these tool calls in parallel
34
instead of sequential. Avoid single calls that might not yield a useful
0 commit comments