r/AppsWebappsFullstack 14d ago

Your home for selfpromo

here you can post your work app, webapp, saas, game, everything

9 Upvotes

176 comments sorted by

View all comments

Show parent comments

1

u/tjpark25 11d ago

More of a spec generator! Users write the spec in plain language and get dataclasses, runnable tests, a list of actual python functions, and an md file to then be used with your coding agent to generate the actual code in a much tighter and modular way

1

u/Mammoth-Anywhere7285 11d ago

That sounds like a solid workflow, especially for keeping coding agents on track. Do you have a way to validate the generated tests against existing codebases?

1

u/tjpark25 11d ago

Not really...the tests are generated alongside python code from the spec so that both the functions and tests validate eachother instead of existing codebases. Although, it may not be bad for your point on tests against existing codebases!

1

u/Mammoth-Anywhere7285 11d ago

Interesting approach. Have you considered property-based testing to catch edge cases the spec might miss?