At the risk of sounding stupid what does the author mean by: “I’m not a 50-person software company. I don’t want to play enterprise theatre.” ?
Get Shit Done: A meta-prompting, context engineering and spec-driven dev system
31–40 of 278 posts
Re: Get Shit Done: A meta-prompting, context engineering and spec-driven dev system
#32At the risk of sounding stupid what does the author mean by: “I’m not a 50-person software company. I don’t want to play enterprise theatre.” ?
Re: Get Shit Done: A meta-prompting, context engineering and spec-driven dev system
#33I've had a good experience with https://github.com/obra/superpowers . At first glance this looks similar. Has anyone tried both who can offer a comparison?
Re: Get Shit Done: A meta-prompting, context engineering and spec-driven dev system
#34250K lines in a month — okay, but what does review actually look like at that volume? I've been poking at security issues in AI-generated repos and it's the same thing: more generation means less review. Not just logic — checking what's in your .env, whether API routes have auth middleware, whether debug endpoints made it to prod. You can move that fast. But "review" means something different now. Humans make human m…
[flagged]
Re: Get Shit Done: A meta-prompting, context engineering and spec-driven dev system
#35With GSD, I was able to write 250K lines of code in less than a month, without prior knowledge of claude.
Re: Get Shit Done: A meta-prompting, context engineering and spec-driven dev system
#36At the risk of sounding stupid what does the author mean by: “I’m not a 50-person software company. I don’t want to play enterprise theatre.” ?
Re: Get Shit Done: A meta-prompting, context engineering and spec-driven dev system
#37I could not produce useful output from this. It was useful as a rubber duck because it asks good motivating questions during the plan phase, but the actual implementation was lacklustre and not worth the effort. In the end, I just have Claude Opus create plans, and then I have it write them to memory and update it as it goes along and the output is better.
Re: Get Shit Done: A meta-prompting, context engineering and spec-driven dev system
#38Earlier quoted context omitted.
I was not a app developer before, but a systems engineer with devops experience. But I learnt a lot about apple development, app store connect and essential became a app developer in a month. I don't think I can learn so quickly with other humans help.
If you lost access to AI would you be able to continue development on your app?
Re: Get Shit Done: A meta-prompting, context engineering and spec-driven dev system
#39I've had a good experience with https://github.com/obra/superpowers . At first glance this looks similar. Has anyone tried both who can offer a comparison?
Re: Get Shit Done: A meta-prompting, context engineering and spec-driven dev system
#40There is a gsd-plan-checker that runs before execution, but it only verifies logical completeness — requirement coverage, dependency graphs, context budget. It never looks at what commands will actually run. So if the planner generates something destructive, the plan-checker won't catch it because that's not what it checks for. The gsd-verifier runs after execution, checking whether the goal was achieved, not whether anything bad happened along the way. In /gsd:autonomous this chains across all remaining phases unattended.
The granular permissions fallback in the README only covers safe reads and git ops — but the executor needs way more than that to actually function. Feels like there should be a permission profile scoped to what GSD actually needs without going full skip.