From 13db56f08801738c12d1b92ccc5a7d34c2a128b9 Mon Sep 17 00:00:00 2001 From: Franccesco Orozco Date: Sat, 26 Jul 2025 14:13:45 +0000 Subject: [PATCH] chore: add pytest, python, and uv to Claude allowed commands Add essential Python development tools to Claude's allowed Bash commands: - pytest: for running Python tests - python: for direct Python execution - uv: for Python package management These additions enable Claude to perform common development tasks directly within the development environment. --- .claude/settings.local.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.claude/settings.local.json b/.claude/settings.local.json index a0b80aa..e46e291 100644 --- a/.claude/settings.local.json +++ b/.claude/settings.local.json @@ -2,13 +2,16 @@ "permissions": { "allow": [ "Bash(ruff:*)", + "Bash(pytest:*)", "Bash(pyright:*)", "Bash(mkdocs:*)", "Bash(rg:*)", "Bash(ls:*)", "Bash(grep:*)", "Bash(find:*)", - "Bash(mkdir:*)" + "Bash(mkdir:*)", + "Bash(python:*)", + "Bash(uv:*)" ], "deny": [] }