Remove AI Code Slop
Check the diff against main and remove all AI-generated slop introduced in this branch.
What to Remove
- •Extra comments - Comments a human wouldn't add or that are inconsistent with the rest of the file
- •Defensive checks - Abnormal defensive checks for that area of the codebase, especially if called by trusted/validated codepaths
- •Type workarounds - Casts to
anyto get around type issues - •Style inconsistencies - Any style that doesn't match the file
- •Verbose naming - Simplify long variable names with smaller ones, as used in a proper, well-maintained Go project
Process
- •Run
git diff mainto see all changes in the branch - •Review each file for the slop patterns above
- •Make edits to remove the slop
- •Report a 1-3 sentence summary of what was changed