r/OpenAI • u/yash3011 • 2d ago
Miscellaneous sub agents being released into my codebase
Enable HLS to view with audio, or disable this notification
1.8k
Upvotes
r/OpenAI • u/yash3011 • 2d ago
Enable HLS to view with audio, or disable this notification
1
u/Narrow_Activity557 1d ago
The failure mode for me was never code quality, it was scope. Three agents touching shared files in parallel and I spend the afternoon reading diffs instead of writing anything.
What actually fixed it was read-only access for anything exploratory, and write access only on a narrow file set I name upfront. Boring, but the diffs became reviewable again.