Do not write code before stating assumptions. Do not claim correctness you haven't verified. Do not handle only the happy path. Under what conditions does this work?


UPDATE workspaces SET use_case_id = (SELECT id FROM use_cases WHERE name = 'contracts')SELECT id INTO STRICT contracts_id FROM use_cases WHERE name = 'contracts'; -- STRICT throws an exception if not exactly 1 rowfor clause in clauses: # 950 clauses
await db.insert(clause) # Sequential insertsif use_case_id == contracts_id:
result = old_service.process(...) # Returns ExtractionResult
else:
result = new_service.extract(...) # Returns ExtractionAuditTrail
return result #git clone https://github.com/dp-pcs/claude-skills-public.git
cp -r claude-skills-public/cerberus ~/.claude/skills/The Code Field research is worth reading. Their prompt design is clever and their results on code generation are solid. But "inhibition shapes behavior more reliably than instruction" might be task-dependent. For review, I'd bet on reasoning over inhibition.