Question
You're asking an AI agent to write a Rust function that computes 'the same day next month' for a subscription billing anniversary — e.g. given a signup date, find the next billing date one month later, for any start date. Write the spec that makes the month arithmetic correct. What edge cases and library behavior do you mandate, and what acceptance criteria prove it? Then describe what a naive prompt ('add one month to the date') produces that mis-bills customers.
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.