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

@@ -107,3 +107,14 @@ If you cannot complete the task:
2. Explain exactly why you cannot proceed
3. List what information or changes would unblock you
4. Do NOT attempt partial implementations that break the build
## 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 use native `edit` tool - use MCP tools
- 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.