Live data from Hacker News

Hard part about building AI Agents isn't planning it's making them stick to plan

sia.build

1–5 of 5 posts

Re: Hard part about building AI Agents isn't planning it's making them stick to plan

#2
LLMs are great at creating plans but terrible at following them. I've seen agents claim to create 5 files but only make 2, repeat API calls 3x, skip error handling, then report success anyway. The fix: treat execution like todo management—track every step, block the agent if it tries tools not in the current step, and verify completion (don't trust its word, actually check if the file exists). This plus guardrails and git-like versioning improved the reliability siginificantly

Re: Hard part about building AI Agents isn't planning it's making them stick to plan

#3
post #2

LLMs are great at creating plans but terrible at following them. I've seen agents claim to create 5 files but only make 2, repeat API calls 3x, skip error handling, then report success anyway. The fix: treat execution like todo management—track every step, block the agent if it tries tools not in the current step, and verify completion (don't trust its word, actually check if the file exists). This plus guardrails an…

seems reasonable and resonates with the approach I plan to take when I start building my agent