docs: Add guidance to prevent working around problems#11
Merged
JeffreyUrban merged 2 commits intomainfrom Dec 17, 2025
Merged
Conversation
Add comprehensive workflow document that enforces: - Treating all blocking issues as in-scope - Fixing root causes instead of adding workarounds - Rejecting conditional logic that bypasses problems This completes the guidance changes to prevent the pattern of hiding issues with test-skipping logic or deferring fixes. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Add two new critical sections to CLAUDE.md: 1. "Never Work Around Problems - Fix Them" - Mandatory questions before proposing solutions - Red flags indicating workarounds vs fixes - Required actions for blocking issues - Examples of wrong (workaround) vs right (fix) approaches 2. "Apologies and Promises Are Not Solutions" - Requirement for concrete documentation changes - Rejection of vague promises without actionable changes - Process for identifying and updating failed guidance These sections prevent the pattern of creating workarounds (like skipping tests) instead of fixing root causes (like template placeholders in formulas). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add comprehensive guidance to prevent the pattern of creating workarounds instead of fixing root problems.
Changes
1. CLAUDE.md - Critical Rules
Added "Never Work Around Problems - Fix Them" section with:
2. CLAUDE.md - Problem-Solving Standards
Added "Apologies and Promises Are Not Solutions" section requiring:
3. .claude/workflows/fixing-issues.md
New workflow document with:
Context
These changes resulted from a pattern where test failures were worked around by adding conditional logic to skip tests, rather than fixing the root cause (template placeholders in the Homebrew formula).
The guidance now enforces:
Testing
These guidance changes have been applied to fix the actual Homebrew formula issues:
🤖 Generated with Claude Code