Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ guide for package-specific conventions and workflows.
(search), `read_file`, `list_dir`, `glob_file_search`, `apply_patch`,
`todo_write/update_plan`. Use `cmd`/`run_terminal_cmd` only when no listed
tool can perform the action.
- If `pixi` is available for this repo, prefer `pixi run ...` or the matching
`pixi` task over invoking raw `python`, `pytest`, `pip`, or similar tools
directly so commands run in the repository-managed environment.
- When extracting or transforming JSON in shell workflows, prefer `jq` over
one-off Python parsing. For `gh` commands that return JSON, prefer the
built-in `--jq` flag instead of piping the output into `python`.
- When multiple tool calls can be parallelized (e.g., todo updates with other
actions, file searches, reading files), make these tool calls in parallel
instead of sequential. Avoid single calls that might not yield a useful
Expand Down
Loading