5 ms·
I'm really enjoying reading over the prompts used for development: (https://github.com/maciej-trebacz/tower-of-time-game/blob/main/PROMPTS.md https://github.com
by twalkz 1y ago
I'm really enjoying reading over the prompts used for development: (https://github.com/maciej-trebacz/tower-of-time-game/blob/main/PROMPTS.md https://github.com/maciej-trebacz/tower-of-time-game/blob/ma...)
A lot of posts about "vibe coding success stories" would have you believe that with the right mix of MCPs, some complex claude code orchestration flow that uses 20 agents in parallel, and a bunch of LLM-generated rules files you can one-shot a game like this with the prompt "create a tower defense game where you rewind time. No security holes. No bugs."
But the prompts used for this project match my experience of what works best with AI-coding: a strong and thorough idea of what you want, broken up into hundreds of smaller problems, with specific architectural steers on the really critical pieces.
- stavros 1y agoI tried to build a simple static HTML game for the board game Just One, where you get a text box, type a word in, and it's shown full screen on the phone. There's a bug where, when you type, the text box jumps around, and none of the four LLMs I tried managed to fix it, no matter how much I prompted them. I don't know how you guys manage to one-shot entire games when I can't even stop a text box from jumping around the screen :(
- gametorch 1y ago> what works best with AI-coding: a strong and thorough idea of what you want, broken up into hundreds of smaller problems, with specific architectural steers on the really critical pieces This has worked extremely well for me.
- stavros 1y agoI wrote a whole PRD for this very simple idea, but still the bug persisted, even though I started from scratch four times. Granted, some had different bugs.
- gametorch 1y agoI guess sometimes I have to do some minor debugging myself. But I really haven't encountered what you're experiencing. Early on, I realized that you have to start a new "chat" after so many messages or the LLM will become incoherent. I've found that gpt-4.1 has a much lower threshold for this than o3. Maybe that's affecting your workflow and you're not realizing it?
- stavros 1y agoNo, that's why I started again, because it's a fairly simple problem and I was worried that the context would get saturated. A sibling commenter said that browser rendering bugs on mobile are just too hard, which seems to be the case here.
- cootsnuck 1y agoHave you tried with both Claude opus 4 and Gemini 2.5 pro?
- stavros 1y agoOpus 4, Sonnet 4, o3, o4-mini-high.
- garciasn 1y agoI have been working on an end-to-end modeling solution for my day job and I'm doing it entirely w/Claude. I am on full-rework iteration three, learning as I go on what works best, and this is definitely the way. I'm going to be making a presentation to my team about how to use AI to accelerate and extend their day-to-day for things like this and here's my general outline: 1. Tell the LLM your overall goal and have it craft a thoughtful product plan from start to finish. 2. Take that plan and tell it to break each of the parts into many different parts that are well-planned and thoroughly documented, and then tell it to give you a plan on how to best execute it with LLMs. 3. Then go piece by piece, refining as you go. The tool sets up an environment, gets the data from the warehouse, models it, and visualizes it in great detail. It took me about 22 hours of total time and roughly 2 hours of active time. It's beautiful, fast, and fully featured. I am honestly BLOWN AWAY by what it did and I can't wait to see what others on my team do w/this. We could have all done the setup, data ingestion, and modeling, no question; the visualization platform it built for me we absolutely could NOT have done w/the expertise we have on staff--but the time it took? The first three pieces probably were a few days of time, but the last part, I have no idea. Weeks? Months? Amazing.
- M4v3R 1y agoBrowser text entry on mobile phones is notoriously hard to get right and some bugs are literally unfixable [1]. I'm a frontend developer in my day job and I struggled with this even before AI was a thing. I think you just accidentally picked one of the hardest tasks for the AI to do for you. [1] Example: https://www.reddit.com/r/webdev/comments/xaksu6/on_ios_safari_whenever_the_keyboard_opens_up_for/ https://www.reddit.com/r/webdev/comments/xaksu6/on_ios_safar...
- stavros 1y agoHuh, that's actually my exact bug. I didn't realize this was so hard, thank you.
- mmastrac 1y agoI have a reasonably good solution for this project of mine you might find useful: https://grack.com/demos/adventure/ https://grack.com/demos/adventure/ The trick for me was just using a hidden input and updating the state of an in game input box. The code is ancient by today's standards but uses a reasonably simple technique to get the selection bounds of the text. It works with auto complete on phones and has been stable for a decade.
- stavros 1y agoThat's promising, thank you! I'll ask the LLM to implement it.
- adelineJoOs 1y agohidden input box is something I heard before from some hacker-ish old collegues - seems to be a powerful and reliable approach to store state & enable communication between components!
- mmastrac 1y agoOops, I worded my comment poorly -- it's not a hidden input, but rather a "CSS-visibility-hidden textbox input". Hidden inputs are useful but something completely different.
- fragmede 1y agoCSS is the devil and I fully admit to burning many hours of dev time, mine without an LLM, an LLM by itself, and a combination of the two together to iron out similar layout nonsense for a game I was helping a friend with. In the end, what solved it was breaking things into hierarchical react components and adding divs by hand and using the chrome dev tools inspector, and good old fashioned human brain power to solve it. The other one was translating a python script to rust. I let the LLM run me around in circles, but what finally did it was using Google to find a different library to use, and then to tell the LLM to use that library instead.
- stavros 1y agoI didn't realize this was so hard, thanks. I expected to be simple positioning issues, but the LLMs all found it impossible. Here's the game, BTW (requires multiple people in the same location): https://home.stavros.io/justone/ https://home.stavros.io/justone/
- mberning 1y agoSame. I had some idea that I wanted to build a basic sinatra webapp with a couple features. First version was pretty good. Then I asked it to use tailwind for the css. Again pretty good. Then I said I wanted to use htmx to load content dynamically. Suddenly it decides every backend method needs to check if the call is from htmx and alter what it does based on that. No amount of prompting could get it to fix it.
- M4v3R 1y agoHard to tell what exactly went wrong in your case, but if I were to guess - were you trying to do all of this in a single LLM/agent conversation? If you'll look at my prompt history for the game from OP you'll see it was created with a dozens of separate conversations. This is crucial for non-trivial projects, otherwise the agent will run out of context and start to hallucinate.
- mberning 1y agoAgent mode in RubyMine which I think is using a recent version of sonnet. I tried starting a new agent conversation but it was still off quite a bit. For me my interest in finessing the LLM runs out pretty quickly, especially if I see it moving further and further from the mark. I guess I can see why some people prefer to interact with the LLM more than the code, but I’m the opposite. My goal is to build something. If I can do in 2 hours of prompting or 2 hours of doing it manually I’d rather just do it manually. It’s a bit like using a mirror to button your shirt. I’d prefer to just look down.
- M4v3R 1y ago> If I can do in 2 hours of prompting or 2 hours of doing it manually I’d rather just do it manually. 100% agree, if that was the case I would not use LLMs either. Point is, at least for my use case and using my workflow it's more like 2 hours vs 10 minutes which suddenly changes the whole equation for me.
- hombre_fatal 1y ago
- deleted 1y ago[deleted]
- fallinditch 1y ago> what works best with AI-coding: a strong and thorough idea of what you want, broken up into hundreds of smaller problems A technique that works well for me is to get the AI to one-shot the basic functionality or gameplay, and then build on top of that with many iterations. The one-shot should be immediately impressive, if not then ditch it and try again with an amended prompt until you get something good to build on.
- recursive 1y agoCoincidentally those seem to be strongly correlated with success in old fashioned application development as well.
- AndrewKemendo 1y ago> A lot of posts about "vibe coding success stories" Where are you reading “a lot of posts” making this specific claim? I’ve never seen any serious person make such a claim > a strong and thorough idea of what you want, broken up into hundreds of smaller problems, with specific architectural steers on the really critical pieces. This is how I’ve been using LLM bots since CGPT preview and it’s been phenomenally useful and 100x my productivity The gap seems to be between people who never knew how to build, looking for a perfect Oracle that would be like a genie in a lamp, then mad when its actual work The thing the last few years have beat into me is that most engineers are actually functionally bad engineers who only know 1:1000th of what they should know in order to know how to build a successful project end to end My assumption was that all of the bad engineers I worked with in person were a accidental sample of some larger group of really good ones (who I’ve also been able to work with over the years) and that it’s just rare to find an actual capable engineer who understands the whole process Turns out that’s a trivial minority (like every other field) and most people are pretty bad at what they do
- jaggs 1y ago> Where are you reading “a lot of posts” making this specific claim? Reddit.
- mberning 1y ago100x is a bold statement.
- Kiro 1y agoYou can easily get to 100x in a greenfield project but you will never get to 100x in a legacy codebase.
- all2 1y agoThat depends on the code-base. I've found that hand-writing the first 50% of the code base actually makes adding new features somewhat easier because the context/shape of the idea is starting to come into focus. The LLM can take what exists and extrapolate on it.
- Swizec 1y ago> what works best with AI-coding: a strong and thorough idea of what you want, broken up into hundreds of smaller problems, with specific architectural steers on the really critical pieces As a tech lead who also wears product owner hats sometimes: This is how you should do it with humans also. At least 70% of my job is translating an executive’s “Time travel tower game. No bugs” into that long series of prompts with a strong architectural vision that people can work on as a team with the right levels of abstraction to avoid stepping on each other’s toes.
- mvkel 1y agoWhat I've found works best is to hand-code the first feature, rendering the codebase itself effectively a self-documenting entity. Then you can vibe code the rest. All future features will have enough patterns defined from the first one (schema, folder structure, modules, views, components, etc), that very few explicit vibe coding rules need to be defined.
- unclebucknasty 1y ago>a strong and thorough idea of what you want, broken up into hundreds of smaller problems, with specific architectural steers on the really critical pieces. Serious question: at what point is it easier to just write the code?
- skydhash 1y agoAnd if it's a work project, you're going to spend a few years working on the same tech. So by the time you're done, there's going to be templates, snippets,... that you can quickly reuse for any prototyping with the tech. You would be faster by the fact that you know that it's correct and you don't have to review it. Helps greatly with mental load. I remember initializing a project in React by lifting whole modules out of an old one. Those modules could have been libraries the way they were coded.
- unclebucknasty 1y agoAll of this, and highlighting this part: >You would be faster by the fact that you know that it's correct and you don't have to review it. Helps greatly with mental load. I keep thinking maybe it's me who's just not getting the vibe coding hype. Or maybe my writing vs reading code efficiency is skewed towards writing more than most people's. Because the idea of validating and fixing code vs just writing it doesn't feel efficient or quality-oriented. Then, there's the idea that it will suddenly break code that previously worked. Overall, I keep hearing people advocating for providing the AI more details, new approaches/processes/etc. to try to get the right output. It makes me wonder if things might be coming full circle. I mean, there has to be some point where it's better to just write the code and be done with it.
- kenjackson 1y agoDepends. If you have written other Tower Defense games then it’s probably really close to that line. If you just took a CS class in high school then this vibe approach is probably 20x faster. My aunt would always tell me that making fresh pasta or grounding your own meat was basically just as fast as buying it. And while it may have have been true for her it definitely wasn’t for me.
- marviel 1y agoI totally agree! this is the idea behind my recent post actually[1] where I recommend people use AI to write specs before they code. If all you have to do is a human is edit the spec, not write it from scratch, you're more likely to actually make one. [1] https://lukebechtel.com/blog/vibe-speccing https://lukebechtel.com/blog/vibe-speccing
- UncleEntity 1y agoHeh, didn't know there was a name for it... What I've taken to lately is getting the robots to write "scientific papers" on what I want them to get up to so instead of iterating over broken code I can just ask them "does this change follow the specification?" Seems to stop them from doing overly stupid things...mostly. Plus, since what I've been working on is just a mash-up of other people's ideas, it provides a good theoretical foundation of how all the different bits fit together. Just give them the paper you've been working on and some other paper and ask how the two can be used together, a lot of the time the two ideas aren't compatible so it saves a lot of time trying to force two thing to work when they really shouldn't. Very good way to explore different ideas without the robots going all crazy and producing a full code project (complete with test and build suites) instead of just giving a simple answer.
- marviel 1y agothere is now I suppose! ;) Yeah it isn't a panacea but it has afforded me less frustration than the alternative of jumping straight in. > Since what I've been working on is just a mash-up of other people's ideas Totally, I find most work I do, if I'm honest, is in this bucket. LLMs are pretty good at "filling in the gaps" between two ideas like this
- cainxinth 1y ago> No security holes. No bugs. A friend called me for advice on trouble he was having with an LLM and I asked “What exactly do you want the LLM to do?” He said “I want it to knock this project out of the park.” And I had to explain to him it doesn’t work that way. You can’t just ask for perfection. I mean, you can, but you won’t get it.
- exographicskip 1y agoWriting tests and/or PRDs helps. Gives llms tangible direction that can be quantified.
- antonvs 1y ago> No security holes. No bugs. You forgot “Don’t hallucinate.” Noob.