From ba6425793a033b4b2d5181df029f12d32459d76c Mon Sep 17 00:00:00 2001 From: Elijah Voigt Date: Mon, 2 Mar 2026 10:54:06 -0800 Subject: [PATCH] =?UTF-8?q?docs:=20add=20shell=20conventions=20=E2=80=94?= =?UTF-8?q?=20no=20python3,=20always=20use=20jq?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- CLAUDE.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CLAUDE.md b/CLAUDE.md index bef8c76..fff02e4 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -122,6 +122,15 @@ _This table is intentionally empty. Populate it as crate decisions are made duri + + +### Shell & Scripting + +- **Never use `python3`** in CLI commands — use shell-native tools or Rust instead. +- **Always use `jq`** when processing JSON in shell commands or scripts. + + +