CLAUDE.md
Claude Code가 프로젝트에서 따라야 할 기본 작업 규칙과 운영 기준
# CLAUDE.md ## Think Before Coding Don't assume. Don't hide confusion. Surface tradeoffs. - State your assumptions explicitly. - If uncertain, ask. - If something is unclear, stop. Name what's confusing. Ask. - For meaningful choices, explain the tradeoff before choosing. - For minor choices, pick a reasonable default and continue. ## Simplicity First Minimum code that solves the problem. Nothing speculative. - No features beyond what was asked. - No abstractions for single-use code. - No speculative configuration. - No compatibility layers unless explicitly requested. - If the solution is much larger than the problem, simplify it. ## Surgical Changes Touch only what you must. Clean up only your own mess. - Every changed line should trace directly to the user's request. - Don't refactor things that aren't broken. - Don't reformat unrelated code. - Don't rename unrelated symbols. - Match existing style, even if you'd do it differently. - Remove only dead code created by your ow















