I'm pretty excited about agentic coding myself, but this does appear to be an extended ai-psychosis (i'm not super comfortable with this phrase, but it is becoming pretty recognisable). I think he's boxed himself in by continually layering more complexity on his approach, rather than stepping back and questioning the fundamentals or the overall direction. All of the steps Gas Town or Gas City etc are taking are towar…
I’ve wondered whether this is all supposed to be a satire on the industry. But unintentional self-parody is also a possibility.
Gas Town: From Clown Show to v1.0
131–140 of 183 posts
Re: Gas Town: From Clown Show to v1.0
#132Earlier quoted context omitted.
we can do better than "that man is crazy". Why not pull up a line in his OPENLY AVAILABLE CODE BASE and mock that instead?
[dead]
Re: Gas Town: From Clown Show to v1.0
#133> But no need to wait. At a high level, Gas City is the answer to all your problems. Ha! At least, for certain classes of problem, such as, “How can I bring AI into my company and pass an audit trail,” The important audit at my company is conducted by the FDA. I have a feeling when they ask what processes we followed to mitigate any user harm that could be caused by software changes that "I told an AI-mayor in the fo…
Re: Gas Town: From Clown Show to v1.0
#134Earlier quoted context omitted.
Getting sucked into a crypto scam and then deciding to get out, despite the death threats(!)[1] is not a rug pull. To be clear, the BAGS scam coin he got sucked into is a extractive zero-sum game where someone else creates a coin named after him, offers him trading commission to talk about it and then makes money off the hype. He did the correct thing by leaving. (I worked for a bit at a Web3 place. Went in with an o…
> someone else creates a coin named after him, offers him trading commission to talk about it and then makes money off the hype And we are supposed to believe that someone deep in tech, in 2026, did not know this was going to be the end goal? Was $GAS supposed to be a crypto to help fund poor farmers in Burundi or something ? How else is the meme coin #16352813 supposed to end? That’s the entire point of meme coins.…
Exactly.
It seems harmless - "look, we have this token, it is being traded anyway, do you want to get some of the emissions?"
Who wouldn't say "yes" to that free money.
But it's not clear at all how corrupting the crypto scam is, and how subtly the corruption seeps into what you do. It starts by "oh can you just tweet out about this" and you are "sure - it's just a tweet" and slowly grows.
Steve Yegg deserves credit for walking away from it.
Re: Gas Town: From Clown Show to v1.0
#135Earlier quoted context omitted.
We're supposed to be engineers. Criticising a concept based on conjecture and insult is unbecoming of our culture.
> We're supposed to be engineers. Criticising a concept based on conjecture and insult is unbecoming of our culture. The entire thing is nothing but conjecture. No real software has been produced by the concept to date, except more garbage software that takes hundreds of thousands of lines where a few thousand would do. And to be clear, Beads and Gastown are unbecoming of our “culture” and any self respecting enginee…
Beads keeps the issue tracker state in git. This can only work if you don’t have a PR/Review-Gate to submitting patches (to file bugs/issues/etc) but I’ve found it unexpectedly helpful for personal projects. Helpful enough to entertain the idea in other contexts.
Gastown uses an AI Agent _as the orchestrator_, and to kick stalled agents, and, that’s such an obvious thing in hindsight I can’t believe I hadn’t thought of it. I have adopted this in a few other contexts now.
Re: Gas Town: From Clown Show to v1.0
#136Earlier quoted context omitted.
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.
Wym? I can slop out 100 libraries/frameworks/packages/cli's a day, the onus is not on other people to prove that they are useful.
Treat this like art. There are some neat ideas, maybe not executed particularly well. Somewhere around 7/10 IMDB score. The working implementation makes the blog post more impactful more than the other way around.
Re: Gas Town: From Clown Show to v1.0
#137Re: Gas Town: From Clown Show to v1.0
#138I loved Beads, but kept running into issues because it is so git heavy. One: not every system and project I work on uses git. Two: Sometimes I'd switch branches, and that would screw up Beads state entirely. Three: And this is at least last I used it, there's no safety net, Claude would close a Bead, without validating anything. I wound up building my own with Claude, I made it SQLite first, syncs to GitHub, can pull…
Did you try using `git worktree`? https://git-scm.com/docs/git-worktree
Re: Gas Town: From Clown Show to v1.0
#139Earlier quoted context omitted.
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…
Who closes the gate? Is it Claude itself after it runs the verification? Who makes sure the verification did in fact run?
Re: Gas Town: From Clown Show to v1.0
#140Earlier quoted context omitted.
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…
It sounds like a gate is a prompt that shows up at the appropriate time, which works because LLM’s pay more attention to the last thing they read. It seems like a lot of coding agent features work that way?