# CLI_TOOLS.md
## Tool Selection
- Prefer `rg` over `grep -R` for recursive search.
- Prefer `fd` over `find` for file discovery.
- Prefer `jq` or `yq` over regex parsing for structured JSON/YAML data.
## Setup Command
```bash
{{SETUP_COMMANDS}}
```
## Build Command
```bash
{{BUILD_COMMANDS}}
```
## Test Command
```bash
{{TEST_COMMANDS}}
```
## Maintenance
- Keep these commands aligned with current project conventions.
- Ensure examples stay executable in local shell and CI.