Skip to content

Commit 08beb58

Browse files
committed
restructure ai-makes-your-codebase-dumber post sections and add warning about blind trust in AI tools
1 parent 8deea75 commit 08beb58

File tree

1 file changed

+7
-3
lines changed
  • apps/frontendsupport/blog-posts/2026-01-25-ai-makes-your-codebase-dumber

1 file changed

+7
-3
lines changed

apps/frontendsupport/blog-posts/2026-01-25-ai-makes-your-codebase-dumber/index.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,18 @@ You own the code, you understand the code. AI explores solutions, you make decis
3030

3131
"Why this approach?" "What are the tradeoffs?" "Is this the proper fix or a hack?" If AI can't answer these, it doesn't know what it's doing.
3232

33-
### Verify Everything
33+
## Don't Trust CLAUDE.md or Skills
3434

35-
Don't assume AI remembers your codebase conventions. Even with a CLAUDE.md file, it needs constant reminding.
35+
You can write a CLAUDE.md file with all your codebase conventions. You can set up skills. AI will still ignore them. It needs constant reminding, every session, sometimes every prompt.
3636

3737
### Push for Optimization
3838

3939
AI won't suggest pre-computation, memoization, or debouncing unprompted. You have to ask "this loops on every keystroke, is there a better way?" or you'll ship O(n²) garbage.
4040

4141
### Say No to Hacks
4242

43-
"Don't just disable the feature." "No hardcoded pixel values." "Understand the actual problem first." "Do not duplicte" "Do not weaken the types". If you don't say this, AI will take the path of least resistance every time.
43+
"No hardcoded pixel values." "Understand the actual problem first." "Do not duplicte" "Do not weaken the types". If you don't say this, AI will take the path of least resistance every time.
44+
45+
## Verify Everything
46+
47+
The more you blidly trust AI, the more it will rot your codebase.

0 commit comments

Comments
 (0)