Question
An AI agent wrote a React/TypeScript custom hook for your team's design system that debounces a search input and fetches results. In review, a teammate asks: "What happens if the component unmounts mid-request, and why did the agent put `query` in the effect's dependency array but not `fetchResults`?" You prompted this hook into existence but skimmed the diff. How should you have prepared, and what's the right way to answer questions about AI code you didn't author?
Treat the AI’s output as a draft to verify, not an answer to trust. Name the specific flaw and the input that triggers it, say how you’d catch it — tests, edge cases, reading critically — and how you’d re-prompt or decompose to get it right.
Vibe coding: describe the solution in plain language (or narrate it) and the coach grades your approach. Generating runnable code from your description is coming next.