Zion Panz

Zion Panz

Manufacturing/Mechanical Engineer

About

Most people would say work smarter, not harder, and to that I say, why not work smarter and harder? From competing at state level in a mechatronics event in middle school, to using Python for an HVAC internship, to recently graduating from NC State University with a B.S. in Mechanical Engineering, I am excited to start a new career in the engineering field.

Badges

Tastemaker
Tastemaker

Forums

17h ago

Every one-line prompt ships with a spec you didn't write

Something I wish I'd understood earlier about working with coding agents: there is no such thing as dispatching without a spec. There's only choosing who writes it.

When you send an agent a one-liner like "fix the login timeout", the unstated parts don't stay undecided. The model fills every blank with defaults from its training data the average project, the average convention, the average meaning of that sentence across every repo it has seen. Where your codebase matches the average, those fill-ins are invisible because they happen to be right. Where it doesn't, you get a diff that answers a question you never asked.

An intern who hits ambiguity tends to come ask. An agent mostly picks, and rarely flags the pick a constraint that never made it into the context might as well not exist.

So we stopped asking "spec or no spec" and started asking two questions before every dispatch. How long would a wrong guess stay invisible? And how far is this task from the average project the model trained on? Fast feedback plus mainstream shape: one line, go. Slow feedback plus weird shape: write the contract, and budget the writing as part of the build.

View more