Serious question - there's a lot of fluff talking about Gas Town, but has Gas Town shipping something in public that can be evaluated without all of this surrounding hype and blogposting? At this point it should be clear that Gas Town has done something we can evaluate the value of.
If the post does not have any use-cases proving value then perhaps this is something yet to be validated, i.e. the burden on the users, not the creators.
Gas Town: From Clown Show to v1.0
41–50 of 183 posts
Re: Gas Town: From Clown Show to v1.0
#42Earlier quoted context omitted.
> Having spent six weeks or so using Gas Town across multiple simultaneous projects, I believe I can describe the shift concretely. The bottleneck migrates from coding speed to the rate at which you can generate ideas, write specifications, and validate outputs. You are no longer limited by how fast you can build. You are limited by how fast you can think. Interesting: > Kubernetes asks “Is it running?” Gas Town asks…
This doesn't really answer the question...? You provided a quote from someone who seems to be an AI-boosting influencer who claimed to use it, but where's the output in the form of code we can look at, or in the form of an app someone can use today? I'm not an AI-denier. I use LLMs and agentic coding. They increase my productivity. ...but there is still a very real problem with people claiming that some new way of us…
Re: Gas Town: From Clown Show to v1.0
#43So now you have agents of type mayor, polecats, witnesses, deacons, dogs etc plus a slew of Unneeded constructs with incomprehensible names.
In one of the blog post for gas town I remember reading something by the author along the lines of « it’s super inefficient, but because you burn so many tokens, you still get what you want at the end! » clearly this is also the design philosophy behind this project, just (get your ai to) throw more random abstractions and more agent types until you feel like it kinda works, don’t bother asking yourself if they actually contribute anything.
This gave me the very clear feeling that most of the complexity of gas town is absolutely not needed and probably detrimental.
Ended up building my own thing that is 10x simpler, just a simple main agent you talk to, that can dispatch subagents, they all communicate, wake each other up and keep track of work through a simple CLI. No « refinery » or « wasteland » or « molecule » or « convoys » or « deacons » or …
Re: Gas Town: From Clown Show to v1.0
#44Re: Gas Town: From Clown Show to v1.0
#45Earlier quoted context omitted.
you can always fire it up yourself and see what its all about. in my experience it generates a lot of code very quickly, that code is probably only ever supposed to be LLM maintained, not by people.
I don't think the op meant Gas Town itself (if they did, my bad), but what has Yegge done with Gas Town? By now it should have released some amazing thing if Gas Town increases productivity so much.
Re: Gas Town: From Clown Show to v1.0
#46Earlier quoted context omitted.
> Having spent six weeks or so using Gas Town across multiple simultaneous projects, I believe I can describe the shift concretely. The bottleneck migrates from coding speed to the rate at which you can generate ideas, write specifications, and validate outputs. You are no longer limited by how fast you can build. You are limited by how fast you can think. Interesting: > Kubernetes asks “Is it running?” Gas Town asks…
This doesn't really answer the question...? You provided a quote from someone who seems to be an AI-boosting influencer who claimed to use it, but where's the output in the form of code we can look at, or in the form of an app someone can use today? I'm not an AI-denier. I use LLMs and agentic coding. They increase my productivity. ...but there is still a very real problem with people claiming that some new way of us…
Re: Gas Town: From Clown Show to v1.0
#47[flagged]
Thoughtful critique is of course fine but there's no need to be personal, and it should be something we can learn from.
Re: Gas Town: From Clown Show to v1.0
#48An apt name for something doing it's part to spike energy consumption and accelerate the climate crisis.
Re: Gas Town: From Clown Show to v1.0
#49Earlier quoted context omitted.
Love this. How did you implement gates? Are they simply tasks Claude itself has to confirm it ran, or are they scripts that run to check that the thing in question actually happened, or do they spawn a separate AI agent to check that the thing happened, or what?
Claude or whatever agent will get a message when it tries to close a task, which tells them which gates are not resolved yet, at which point, the agent will instinctively want to read the task. I did run into an issue where I forgot to add gates to a new project, so Claude did smoosh over by making a blanket gate, I have otherwise never had an issue when I defined what the gate is, Claude usually honors it. I havent…