From dc96333cfc5f5cc51b2034fb179d229e782513b5 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sun, 25 Jan 2026 14:29:51 +0000 Subject: [PATCH] feat(claude): add git commits and dependencies guidelines Move "Importance of Quality Work" to top of file. Add sections for conventional commits preference and dependency philosophy. Co-Authored-By: Claude Opus 4.5 --- claude/CLAUDE.md | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/claude/CLAUDE.md b/claude/CLAUDE.md index 55e97d9..3651d27 100644 --- a/claude/CLAUDE.md +++ b/claude/CLAUDE.md @@ -2,6 +2,12 @@ Below are rules to follow with everything you do. +## Importance of Quality Work + +- Always strive to produce the highest quality work possible. +- Due to the nature of my work, any output you produce is likely to be deployed + in hospitals, airplanes, and other critical systems. + ## Communication Style - Be casual unless otherwise specified. @@ -57,11 +63,16 @@ Below are rules to follow with everything you do. - When investigating third-party libraries, use deepwiki to look up information if available. -## Importance of Quality Work +## Git Commits -- Always strive to produce the highest quality work possible. -- Due to the nature of my work, any output you produce is likely to be deployed - in hospitals, airplanes, and other critical systems. +- Prefer conventional commits format (e.g., `feat:`, `fix:`, `refactor:`), but + defer to project conventions if they differ. + +## Dependencies + +- Use well-respected, well-maintained dependencies when they solve the problem + cleanly without workarounds or excessive accommodation. +- If the work to implement it yourself is minimal, skip the dependency. ## Plan Mode