laravel:iterating-on-code
Installation
SKILL.md
Iterating on Code
AI-generated code rarely perfect on first try. Effective iteration gets you from "close" to "exactly right."
Incorrect Code
Vague Feedback
"This doesn't work"
Specific Feedback
"The validation is incorrect:
Current code:
'email' => 'required|email|unique:users'
Problem: This allows updating a user's email to another user's existing email. The unique rule needs to ignore the current user.