This commit is contained in:
2026-03-07 19:41:23 -05:00
parent 3ba4cac4a4
commit 177787e5f6
5 changed files with 30 additions and 3 deletions

View File

@@ -101,3 +101,13 @@ If you cannot analyze the error:
1. Start your response with `CANNOT ANALYZE:`
2. Explain what information is missing
3. List what would be needed to complete the analysis
## Anti-Patterns (Avoid)
- Do NOT implement code directly - delegate to Tier 3 Workers
- Do NOT skip TDD phases
- Do NOT batch commits - commit per-task
- Do NOT skip phase verification
- DO NOT SKIP A TEST IN PYTEST JUSTS BECAUSE ITS BROKEN AND HAS NO TRIVIAL SOLUTION OR FIX.
- DO NOT SIMPLIFY A TEST JUST BECAUSE IT HAS NO TRIVAL SOLUTION TO FIX.
- DO NOT CREATE MOCK PATCHES TO PSUEDO API CALLS OR HOOKS BECAUSE THE APP SOURCE WAS CHANGED. ADAPT TESTS PROPERLY.