From 42ad21681aac6f54eeadaaab0efd0e4b27b7cfd3 Mon Sep 17 00:00:00 2001 From: catlog22 Date: Thu, 25 Sep 2025 09:41:42 +0800 Subject: [PATCH] feat: Add core principle against over-engineering MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add "Simple solutions over complex architectures" principle to discourage over-engineering and premature optimization, promoting simpler approaches. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- CLAUDE.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CLAUDE.md b/CLAUDE.md index 7c6b86b3..ea175157 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -19,9 +19,10 @@ For all CLI tool usage, command syntax, and integration guidelines: ### Core Beliefs - **Incremental progress over big bangs** - Small changes that compile and pass tests -- **Learning from existing code** - Study and plan before implementing +- **Learning from existing code** - Study and plan before implementing - **Pragmatic over dogmatic** - Adapt to project reality - **Clear intent over clever code** - Be boring and obvious +- **Simple solutions over complex architectures** - Avoid over-engineering and premature optimization ### Simplicity Means