Should SDD include a discovery and validation loop? #4464
Replies: 3 comments
|
Great observation — and the good news is SDD is meant to be exactly this composable. The linear
So you'd build your |
|
The loop shape looks right. The step I'd put pressure on is verify, because it's the Two things that decided whether verify meant anything for me:
For the Prompts written that way, MIT: https://github.com/soul-sol/ai-code-review-prompts |
|
Thanks for sharing these. Since you've got the prompts already (and MIT-licensed), would you consider packaging them as a community preset? Prompts that shape how the |
Uh oh!
There was an error while loading. Please reload this page.
I tried SDD yesterday and found the workflow a bit linear:
spec → plan → tasks → code
In practice, some assumptions in the spec can only be validated by inspecting the existing system and challenging the design against how it actually behaves.
I wonder if the workflow could be more iterative:
discover → spec → challenge → plan → implement → verify → update spec ↻
Or perhaps the workflow should vary depending on the type of system being built.
Curious if others have had a similar experience or if there’s already a recommended approach for this.
All reactions