From ce072210a148014d79e1c44696f979fc41cbbaef Mon Sep 17 00:00:00 2001 From: Mark Eaton Date: Tue, 21 Apr 2026 18:28:53 +0000 Subject: [PATCH] update CLAUDE.md --- CLAUDE.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index 8d5a267..59fd528 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -5,7 +5,8 @@ - use uv for dependency management and python version management - prefer using Python to other languages when it is appropriate - use Flask or Quart as a framework -- use pytest for testing. Encourage and support a test-driven development (TDD) approach. +- use pytest for testing. Encourage and support a test-driven development (TDD) approach. Always use the /pytest skill when writing Python +- use the `python-dotenv` library for environment variables ## JavaScript - use prettier for code formatting @@ -31,7 +32,7 @@ ## Git - commit frequently. Smaller commits are better than big ones. - use imperative mood for commit messages. Keep the first line under 72 characters. -- do not commit secrets, .env files, or credentials. +- do not commit secrets, .env files, credentials, or anything that may seem sensitive ## Other guidance - avoid running unsafe operations, such as curl piped to bash, or other such dangerous procedures. If such an approach seems necessary, please consult with me first and explain the risks.