How I build greenfield apps with AI-assisted coding

Shreyas Prakash headshot

Shreyas Prakash

Building apps with AI-assisted coding can be quite tricky if you start with a blank empty space. Previously I used to prompt the LLMs like a rookie by saying “fix this, add this, build this”, and so on. And this is usually frowned upon in the developer circles, and it seems to be quite an irresponsible way to do AI-assisted programming. But “vibe coding” has so much more to offer to this world, in terms of speed and velocity, and it’s important to not loose sight of the larger goal: to build the right things, and build things right. It’s indeed a weird trajectory that programming has taken recently, and if this works out, why not embrace it?

Any app is only as good as our ability to carefully prompt them. This could make or break the vibe-coded app. I first came across Harper Reed’s blog talking about his own LLM-aided coding workflow, I felt like sharing something similar based on what I’ve learnt. Harper goes through a lot more LLM assistants, but my advice here is specific to Cursor IDE:

To ease things up, and to not write all the code completely, I use the speedrails open-source rails boilerplate to build my SaaS app on top of this. It provides strong conventions for a production-ready Rails 8 app. This is TBH the only Rails boilerplate you would need to get started with most of the use cases.

This is where you have a natural conversation with the latest reasoning model to think the whole design of the app with you. You want the chat assistant to find gaps, poke holes, ask carefully considered questions which you might have not considered.

The assistant is your “philosopher in residence”.


Ask me one question at a time so we can develop a thorough, step-by-step spec for this idea. Each question should build on my previous answers, and our end goal is to have a detailed specification I can hand off to a developer.  

This developer who I am going to hand off to is more comfortable with an approach where the core logic is built first, and then once the function is achieved, you iteratievly build the scaffolding, backend infrastructure, and finally the frontend user experience.

Let's do this iteratively and dig into every relevant detail. Remember, only one question at a time.  
  
Here's the idea: (Idea)

Coming from a designer background, I’d previously attempted to follow frontend-first approach to building the application so that I could visualise the user experience better, but it failed badly when in one scenario, I built a perfect house, without the plumbing, electricity, and the ability to provide shelter. Form should ALWAYS follow function, and never the other way round. This was a trite passage, that i have reminded myself with, in multiple occasions, and with multiple vibe-coded apps breaking miserably when I inverted the sequence of form/function, I was humbled by the importance of this designerly quote.

At the end of the question-storm, you will end with a natural conclusion, you would now need to synthesize this chat thread into something more concrete. This is where you convert this into developer-ready specification.


Now that we've wrapped up the brainstorming process, can you compile our findings into a comprehensive, developer-ready specification? Include all relevant requirements, architecture choices, data handling details, error handling strategies, and a testing plan so a developer can immediately begin implementation.

Create a /docs folder in your project directory, and add this file created under specs.md

Once it creates this, I do another round of “poking holes” just to be sure.

Poke holes into this essay and find gaps wherever possible.

I also exhaust my Perplexity Deep research credits to make an extensive whitepaper based on the specs.md file.

I then carefully examine the tech architecture defaults, and prefer to pick the ones which are LLM-friendly (for instance, as of 9 Mar, 2025, Rails 7.2 is more LLM-friendly than Rails 8.1).

Once I’m confident with the specs.md file, I move on to the next stage.

I prefer to test the specs at each stage of development, and to ensure that the tests pass as planned. Especially when non-coders (such as myself), have no idea if what’s running is actually working or not, this is a great litmus test to progressively expand the scope of the app.


Draft a detailed, step-by-step blueprint for building this project. Then, once you have a solid plan, break it down into small, iterative chunks that build on each other. Look at these chunks and then go another round to break it into small steps. Review the results and make sure that the steps are small enough to be implemented safely with strong testing, but big enough to move the project forward. Iterate until you feel that the steps are right sized for this project. 

From here you should have the foundation to provide a series of prompts for a code-generation LLM that will implement each step in a test-driven manner. Prioritize best practices, incremental progress, and early testing, ensuring no big jumps in complexity at any stage. Make sure that each prompt builds on the previous prompts, and ends with wiring things together. 

There should be no hanging or orphaned code that isn't integrated into a previous step. Make sure and separate each prompt section. Use markdown. Each prompt should be tagged as text using code tags. The goal is to output prompts, but context, etc is important as well. 

@specs.md

It should output a prompt plan that you can execute with aider, cursor, etc. I like to save this as docs/ prompt_plan.md in the repo.

I then have it output a todo.md that can be checked off.

Can you make a `todo.md` that I can use as a checklist? Be thorough.

After each phase, ensure that you also provide the reason as to why the scope of each phase was chosen and how it's stacked.

I do this to also understand why each phase is written in a specific way, and why the order was chosen as such.

As you continue to build the app, you can cross off items from the todo list as shown here in this example app:

# blogggg Implementation Checklist

## Phase 1: Core Infrastructure Setup

### Rails Foundation

- [x] Create new Rails 8.0.1 app with PostgreSQL

- [x] Configure modern components:

- [x] RSpec + FactoryBot

- [x] Database Cleaner

- [ ] Configure Hatchbox.io deployment:

- [x] Implement health check endpoint

- [x] Write infrastructure tests:
...
...
...

Now you have a robust plan and documentation that will help you execute and build your project.

The workflow looks something like this

  • Build the prompt-plan.md, specs.md and todo.md.
  • Set up the boilerplate
  • Set up git version control and keep pushing commits during important milestones
  • Run code phase by phase based on the prompt-plan.md document.
  • After each phase, run integration tests and ensure all of the pass successfully
  • Once successful, move on to the next phase and continue

Now you have a robust plan and documentation that will help you execute and build your project.

Surprising and scary.

Subscribe to get future posts via email (or grab the RSS feed). 2-3 ideas every month across design and tech

Read more

  1. My agentic engineering workflow (step by step)agentic-coding
  2. Keep hunting for co creative systemic loopsdesign-thinking
  3. Keep hunting for co creative loops
  4. Every darn thing is a kekulean loop if you notice itdesign-thinking
  5. Hammock driven developmentagentic-coding
  6. Peculiar ways number three fits into our funny little brains
  7. AI sandwich as a defacto principle for anything agentic engineering relatedagentic-coding
  8. How I write essays in 2026writing
  9. Authority in the guise of evidencecritical-rationalism
  10. Map is not the territoryphilosophy
  11. Self hypnosis as a manifestation ritualmeditation
  12. Hegelian dialectic for structured reasoning with AI agentsphilosophy
  13. How I prepare for tough negotiations nowadaysnegotiation
  14. When should we steelthread somethingproduct-development
  15. How to become a polyglot
  16. Breadboarding, shaping, slicing, and steelthreading solutions with AI agentsproduct-management
  17. Healthy conflict in teams have a tipping pointteam-building
  18. Deslopify AI writingwriting
  19. How I started building softwares with AI agents being non technicalagentic-coding
  20. Read raw transcriptsknowledge
  21. Legible and illegible tasks in organisationsproduct
  22. L2 Fat marker sketchesdesign
  23. Writing as moats for humanswriting
  24. Beauty of second degree probesdecision-making
  25. Boundary objects as the new prototypesprototyping
  26. One way door decisionsproduct
  27. Finished softwares should existproduct
  28. How I periodically rank my rough draftsobsidian
  29. Flipping questions on its headinterviewing
  30. Vibe writing maximswriting
  31. How I blog with Obsidian, Cloudflare, AstroJS, Githubwriting
  32. How I build greenfield apps with AI-assisted codingai-coding
  33. We have been scammed by the Gaussian distribution clubmathematics
  34. Classify incentive problems into stag hunts, and prisoners dilemmasgame-theory
  35. I was wrong about optimal stoppingmathematics
  36. Thinking like a shipmental-models
  37. Hyperpersonalised N=1 learningeducation
  38. New mediums for humans to complement superintelligenceai-coding
  39. Maxims for AI assisted codingai-coding
  40. Personal Website Starter Kitai-coding
  41. Virtual bookshelvesaesthetics
  42. It's computational everythingtrends
  43. Public gardens, secret routesdigital-garden
  44. Git way of learning to codeai-coding
  45. Kaomoji generatorsoftware
  46. Copy, Paste and Citeai-coding
  47. Style Transfer in AI writingai-coding
  48. Understanding codebases without using codeai-coding
  49. Vibe coding with Cursorai-coding
  50. Virtuoso Guide for Personal Memory Systemsmemory
  51. Writing in Future Pastwriting
  52. Publish Originally, Syndicate Elsewhereblogging
  53. Poetic License of Designdesign
  54. Idea in the shower, testing before breakfastsoftware
  55. Technology and regulation have a dance of ice and firetechnology
  56. How I ship "stuff"software
  57. Writing is thinkingwriting
  58. Song of Shapes, Words and Pathscreativity
  59. How do we absorb ideas better?knowledge
  60. Read writers who operatewriting
  61. Brew your ideas lazilyideas
  62. Trees, Branches, Twigs and Leaves — Mental Models for Writingwriting
  63. Compound Interest of Private Notesknowledge
  64. Conceptual Compression for LLMsai-coding
  65. Meta-analysis for contradictory research findingsdigital-health
  66. Proof of workproduct
  67. Gauging previous work of new joinees to the teamleadership
  68. Task management for product managersproduct
  69. Beauty of Zettelswriting
  70. Stitching React and Rails togetherai-coding
  71. Exploring "smart connections" for note takingknowledge
  72. Deploying Home Cooked Apps with Railssoftware
  73. Repetitive Copypromptingwriting
  74. Questions to ask every decadejournalling
  75. Balancing work, time and focusproductivity
  76. Hyperlinks are like cashew nutswriting
  77. Brand treatments, Design Systems, Vibesdesign
  78. How to spot human writing on the internetwriting
  79. Can a thought be an algorithm?product
  80. Opportunity Harvestingcareers
  81. How does AI affect UI?design
  82. Everything is a prioritisation problemproduct-management
  83. Nowlifestyle
  84. How I do product roastsproduct
  85. The Modern Startup Stacksoftware
  86. In-person vision transmissionproduct
  87. How might we help children invent for social good?social-design
  88. The meeting before the meetingmeetings
  89. Design that's so bad it's actually gooddesign
  90. Lessons learnt interview prepping for product rolesinterviewing
  91. Obsessing over personal websitessoftware
  92. English is the hot new programming languagesoftware
  93. Better way to think about conflictsconflict-management
  94. The role of taste in building productsdesign
  95. Dear enterprises, we're tired of your subscriptionssoftware
  96. Products need not be user centereddesign
  97. World's most ancient public health problemsoftware
  98. Pluginisation of Modern Softwaredesign
  99. Let's make every work 'strategic'consulting
  100. Making Nielsen's heuristics more digestibledesign
  101. Startups are a fertile ground for risk takingentrepreneurship
  102. Insights are not just a salad of factsdesign
  103. Minimum Lovable Productproduct
  104. Methods are lifejackets not straight jacketsmethodology
  105. How to arrive at on-brand colours?design
  106. Minto principle for writing memoswriting
  107. Importance of Whytask-management
  108. Quality Ideas Trump Executionsoftware
  109. How to hire a personal doctormental-models
  110. Why I prefer indie softwareslifestyle
  111. Use code only if no code failscode
  112. Self Marketing
  113. Personal Observation Techniquesdesign
  114. Design is a confusing worddesign
  115. A Primer to Service Design Blueprintsdesign
  116. Rapid Journey Prototypingdesign
  117. Visualise detailed file structures on CLIcli
  118. Do's and Don'ts of User Researchdesign
  119. Design Manifestodesign
  120. Complex project management for productproducts
  121. How might we enable patients and caregivers to overcome preventable health conditions?digital-health
  122. Pedagogy of the Uncharted — What for, and Where to?education
  123. Future of Ageing with Mehdi Yacoubiinterviewing
  124. Future of Tacit knowledge with Celeste Volpiinterviewing
  125. Future of Rural Innovation with Thabiso Blak Mashabainterviewing
  126. Future of Equity with Ludovick Petersinterviewing
  127. Future of work with Laetitia Vitaudinterviewing
  128. Future of Mental Health with Kavya Raointerviewing
  129. Future of unschooling with Che Vanniinterviewing
  130. How might we prevent acquired infections in hospitals?digital-health
  131. The why to endure any howentrepreneurship
  132. Design education amidst social tribulationsdesign
  133. How might we assist deafblind runners to navigate?social-design