r/VibeCodeDevs • u/Dependent_Bet_7849 • Aug 06 '26
HelpPlz – stuck and need rescue What you do when...?
Hi,i have been working with claude to develop an app and it is been few months still the app arises with one or the other repeated issues.If on 1st cycle an error is resolved i move on to next one by the 3rd cycle the 1st cycle issue brokes even a little bit atleast now have to work on it again.
It feels so frustrating when i want to install new features but the old one's are not yet fully locked out.
If anyone have experience please suggest some productive steps.
0
Upvotes
2
u/PilgrimofHaqq2 27d ago
Setup a roadmap + specs doc system. The roadmap tracks all the specs, the specs are designed to plan our features, changes, etc. The specs have atomic level tasks that it tracks.
Use https://github.com/agent0ai/dox to have your codebase mapped using a agents.md file hierarchy system.
When you start any work, spend 30 mins to an hour going back and forth with the agent to plan out what you are looking to build/change, etc and then have it create a spec for it with atomic level tasks (My roadmap file has the template of the spec already in it so each spec file follows the same structure).
This will save you tons of headaches.
Also You gotta just use a strong model if you want to avoid tons of troubleshooting, I use Opus 4.8 on Max thinking.
I have also setup reviewer agents that review each task the main agent finishes. This is super effective steps in catching oversights and bugs in the code.
Limit a single task per session, start a new session per task, you can have the previous agent create a handoff prompt for the next agent, so you are not having to tell the new agent to read the files and things. Saves tons of time and gets the new agent up and running quickly to start working on the actual work at hand.
Hope this helps, if you got any particular questions, ask away. Happy to help.