InkdownInkdown
Start writing

Yt Trans

15 files·15 subfolders

Shared Workspace

Yt Trans
0 Jobs To 4l Month The Ai Business That Changed My Life

tldr

Shared from "Yt Trans" on Inkdown

TLDR: Stop Using AI For These Things

The video discusses critical areas where developers should avoid letting AI agents operate autonomously:

1. SQL Queries

AI often misses database schema details and logical nuances, generating queries that may be semantically correct but logically flawed. Even in readonly mode, bad queries can crash or slow databases. Always double-check AI-generated SQL.

2. Adding Dependencies

Never let AI add dependencies without strict oversight. Due to supply chain vulnerabilities:

  • Lock specific versions (no unversioned deps)
  • Verify package legitimacy and popularity
  • Check weekly download counts
  • Use tools like PNPM's minimum-release-age to block recently released (potentially compromised) packages

3. Security Architecture Decisions

tldr.md
8 Lpa To 55 Lpa In 4 Months No Bs Breakdown Ft Dhairyasheel
tldr.md
Building The Perfect Linux Pc With Linus Torvalds
tldr.md
Claude Mythos Clone Shocks Anthropic And Openai
tldr.md
Don T Let Ai Rob You
tldr.md
English Or Spanish India S Got Latent
tldr.md
From Zero To Senior How I Grew In My Career
tldr.md
How to become 10x smarter
file
How To Learn Ai Engineering In 5 Minutes No Prior Knowledge
tldr.md
Mcp Vs Acp The Two Protocols Every Ai Builder Needs To Know
tldr.md
Optimize Your Ai Quantization Explained
tldr.md
Realistic Advice About Software Dev Right Now
tldr.md
Stop Using Ai For These Things
tldr.md
The Most Talented Man In Ai
tldr.md
What Is The Future Of Coding With Ai
tldr.md

You should architect security flows, not AI. Core decisions like rate limiting, data validation, sanitization, body size limits, crash reporting, logging, and environment variables must be human-driven and centralized.

4. Production Database Access

AI should NEVER have write access to production databases. Even readonly access should be:

  • Restricted to specific tables
  • Limited with query/transaction timeouts
  • Manually executed after AI provides the query

5. Git Operations

Avoid letting AI commit directly, especially to master branches. AI can generate commit messages, but humans should handle the final push and conflict resolution decisions.

6. Infrastructure/Secret Files

AI can access and modify files even if marked as secrets or gitignored. Use two-level access structures with VPNs or SSH tunnels to shield direct production infrastructure access.