{"exhaustive":{"nbHits":false,"typo":false},"exhaustiveNbHits":false,"exhaustiveTypo":false,"hits":[{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"moomin"},"comment_text":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["jesse","vincent","superpowers"],"value":"Wait, did they just send out a press release boasting that they\u2019re bundling <em>Jesse</em> <em>Vincent</em>\u2019s <em>Superpowers</em>?!"},"story_title":{"matchLevel":"none","matchedWords":[],"value":"Codex for almost everything"},"story_url":{"matchLevel":"none","matchedWords":[],"value":"https://openai.com/index/codex-for-almost-everything/"}},"_tags":["comment","author_moomin","story_47796469"],"author":"moomin","children":[47802248],"comment_text":"Wait, did they just send out a press release boasting that they\u2019re bundling Jesse Vincent\u2019s Superpowers?!","created_at":"2026-04-16T22:01:37Z","created_at_i":1776376897,"objectID":"47800086","parent_id":47796469,"story_id":47796469,"story_title":"Codex for almost everything","story_url":"https://openai.com/index/codex-for-almost-everything/","updated_at":"2026-04-17T03:41:02Z"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"marcinos"},"comment_text":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["jesse","vincent","superpowers"],"value":"Author here. The workflow is packaged as an open source Claude Code plugin: <a href=\"https://github.com/marostr/superpowers-rails\" rel=\"nofollow\">https://github.com/marostr/<em>superpowers</em>-rails</a><p>Built on top of <em>Jesse</em> <em>Vincent</em>'s <em>superpowers</em>. I tweaked the workflow to fit Rails development, added opinionated conventions, stricter reviews and deterministic checks. Happy to answer questions."},"story_title":{"matchLevel":"none","matchedWords":[],"value":"My Rails harness for autonomous AI coding with Claude Code"},"story_url":{"matchLevel":"none","matchedWords":[],"value":"https://rubyonai.com/my-harness-how-i-stopped-babysitting-ai-and-went-kitesurfing/"}},"_tags":["comment","author_marcinos","story_47453735"],"author":"marcinos","comment_text":"Author here. The workflow is packaged as an open source Claude Code plugin: <a href=\"https:&#x2F;&#x2F;github.com&#x2F;marostr&#x2F;superpowers-rails\" rel=\"nofollow\">https:&#x2F;&#x2F;github.com&#x2F;marostr&#x2F;superpowers-rails</a><p>Built on top of Jesse Vincent&#x27;s superpowers. I tweaked the workflow to fit Rails development, added opinionated conventions, stricter reviews and deterministic checks. Happy to answer questions.","created_at":"2026-03-20T12:45:29Z","created_at_i":1774010729,"objectID":"47453767","parent_id":47453735,"story_id":47453735,"story_title":"My Rails harness for autonomous AI coding with Claude Code","story_url":"https://rubyonai.com/my-harness-how-i-stopped-babysitting-ai-and-went-kitesurfing/","updated_at":"2026-03-20T12:48:55Z"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"dsifry"},"story_text":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["jesse","vincent","superpowers"],"value":"A few weeks ago I posted about GoodToGo <a href=\"https://news.ycombinator.com/item?id=46656759\">https://news.ycombinator.com/item?id=46656759</a> - a tool that gives AI agents a deterministic answer to &quot;is this PR ready to merge?&quot; Several people asked about the larger orchestration system I mentioned. This is that system.<p>I got tired of being a project manager for Claude Code. It writes code fine, but shipping production code is seven or eight jobs \u2014 research, planning, design review, implementation, code review, security audit, PR creation, CI babysitting. I was doing all the coordination myself. The agent typed fast. I was still the bottleneck. What I really needed was an orchestrator of orchestrators - swarms of swarms of agents with deterministic quality checks.<p>So I built metaswarm. It breaks work into phases and assigns each to a specialist swarm orchestrator. It manages handoffs and uses BEADS for deterministic gates that persist across /compact, /clear, and even across sessions. Point it at a GitHub issue or brainstorm with it (it uses <em>Superpowers</em> to ask clarifying questions) and it creates epics, tasks, and dependencies, then runs the full pipeline to a merged PR - including outside code review like CodeRabbit, Greptile, and Bugbot.<p>The thing that surprised me most was the design review gate. Five agents \u2014 PM, Architect, Designer, Security, CTO \u2014 review every plan in parallel before a line of code gets written. All five must approve. Three rounds max, then it escalates to a human. I expected a rubber stamp. It catches real design problems, dependency issues, security gaps.<p>This weekend I pointed it at my backlog. 127 PRs merged. Every one hit 100% test coverage. No human wrote code, reviewed code, or clicked merge. OK, I guided it a bit, mostly helping with plans for some of the epics.<p>A few learnings:<p>Agent checklists are theater. Agents skipped coverage checks, misread thresholds, or decided they didn't apply. Prompts alone weren't enough. The fix was deterministic gates \u2014 BEADS, pre-push hooks, CI jobs all on top of the agent completion check. The gates block bad code whether or not the agent cooperates.<p>The agents are just markdown files. No custom runtime, no server, and while I built it on TypeScript, the agents are language-agnostic. You can read all of them, edit them, add your own.<p>It self-reflects too. After every merged PR, the system extracts patterns, gotchas, and decisions into a JSONL knowledge base. Agents only load entries relevant to the files they're touching. The more it ships, the fewer mistakes it makes. It learns as it goes.<p>metaswarm stands on two projects: <a href=\"https://github.com/steveyegge/beads\" rel=\"nofollow\">https://github.com/steveyegge/beads</a> by Steve Yegge (git-native task tracking and knowledge priming) and <a href=\"https://github.com/obra/superpowers\" rel=\"nofollow\">https://github.com/obra/<em>superpowers</em></a> by <em>Jesse</em> <em>Vincent</em> (disciplined agentic workflows \u2014 TDD, brainstorming, systematic debugging). Both were essential.<p>Background: I founded Technorati, Linuxcare, and Warmstart; tech exec at Lyft and Reddit. I built metaswarm because I needed autonomous agents that could ship to a production codebase with the same standards I'd hold a human team to.<p>$ cd my-project-name<p>$ npx metaswarm init<p>MIT licensed. IANAL. YMMV. Issues/PRs welcome!"},"title":{"matchLevel":"none","matchedWords":[],"value":"Show HN: 127 PRs to Prod this wknd with 18 AI agents: metaswarm. MIT licensed"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://github.com/dsifry/metaswarm"}},"_tags":["story","author_dsifry","story_46864977","show_hn"],"author":"dsifry","children":[46866495,46866628,46866907,46867792,46868317,46870080],"created_at":"2026-02-03T01:18:39Z","created_at_i":1770081519,"num_comments":2,"objectID":"46864977","points":5,"story_id":46864977,"story_text":"A few weeks ago I posted about GoodToGo <a href=\"https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=46656759\">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=46656759</a> - a tool that gives AI agents a deterministic answer to &quot;is this PR ready to merge?&quot; Several people asked about the larger orchestration system I mentioned. This is that system.<p>I got tired of being a project manager for Claude Code. It writes code fine, but shipping production code is seven or eight jobs \u2014 research, planning, design review, implementation, code review, security audit, PR creation, CI babysitting. I was doing all the coordination myself. The agent typed fast. I was still the bottleneck. What I really needed was an orchestrator of orchestrators - swarms of swarms of agents with deterministic quality checks.<p>So I built metaswarm. It breaks work into phases and assigns each to a specialist swarm orchestrator. It manages handoffs and uses BEADS for deterministic gates that persist across &#x2F;compact, &#x2F;clear, and even across sessions. Point it at a GitHub issue or brainstorm with it (it uses Superpowers to ask clarifying questions) and it creates epics, tasks, and dependencies, then runs the full pipeline to a merged PR - including outside code review like CodeRabbit, Greptile, and Bugbot.<p>The thing that surprised me most was the design review gate. Five agents \u2014 PM, Architect, Designer, Security, CTO \u2014 review every plan in parallel before a line of code gets written. All five must approve. Three rounds max, then it escalates to a human. I expected a rubber stamp. It catches real design problems, dependency issues, security gaps.<p>This weekend I pointed it at my backlog. 127 PRs merged. Every one hit 100% test coverage. No human wrote code, reviewed code, or clicked merge. OK, I guided it a bit, mostly helping with plans for some of the epics.<p>A few learnings:<p>Agent checklists are theater. Agents skipped coverage checks, misread thresholds, or decided they didn&#x27;t apply. Prompts alone weren&#x27;t enough. The fix was deterministic gates \u2014 BEADS, pre-push hooks, CI jobs all on top of the agent completion check. The gates block bad code whether or not the agent cooperates.<p>The agents are just markdown files. No custom runtime, no server, and while I built it on TypeScript, the agents are language-agnostic. You can read all of them, edit them, add your own.<p>It self-reflects too. After every merged PR, the system extracts patterns, gotchas, and decisions into a JSONL knowledge base. Agents only load entries relevant to the files they&#x27;re touching. The more it ships, the fewer mistakes it makes. It learns as it goes.<p>metaswarm stands on two projects: <a href=\"https:&#x2F;&#x2F;github.com&#x2F;steveyegge&#x2F;beads\" rel=\"nofollow\">https:&#x2F;&#x2F;github.com&#x2F;steveyegge&#x2F;beads</a> by Steve Yegge (git-native task tracking and knowledge priming) and <a href=\"https:&#x2F;&#x2F;github.com&#x2F;obra&#x2F;superpowers\" rel=\"nofollow\">https:&#x2F;&#x2F;github.com&#x2F;obra&#x2F;superpowers</a> by Jesse Vincent (disciplined agentic workflows \u2014 TDD, brainstorming, systematic debugging). Both were essential.<p>Background: I founded Technorati, Linuxcare, and Warmstart; tech exec at Lyft and Reddit. I built metaswarm because I needed autonomous agents that could ship to a production codebase with the same standards I&#x27;d hold a human team to.<p>$ cd my-project-name<p>$ npx metaswarm init<p>MIT licensed. IANAL. YMMV. Issues&#x2F;PRs welcome!","title":"Show HN: 127 PRs to Prod this wknd with 18 AI agents: metaswarm. MIT licensed","updated_at":"2026-03-05T23:29:47Z","url":"https://github.com/dsifry/metaswarm"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"dsifry"},"story_text":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["jesse","vincent","superpowers"],"value":"A few weeks ago I posted about GoodToGo <a href=\"https://news.ycombinator.com/item?id=46656759\">https://news.ycombinator.com/item?id=46656759</a> - a tool that gives AI agents a deterministic answer to &quot;is this PR ready to merge?&quot; Several people asked about the larger orchestration system I mentioned. This is that system.\nI got tired of being a project manager for Claude Code. It writes code fine, but shipping production code is seven or eight jobs \u2014 research, planning, design review, implementation, code review, security audit, PR creation, CI babysitting. I was doing all the coordination myself. The agent typed fast. I was still the bottleneck. What I really needed was an orchestrator of orchestrators - swarms of swarms of agents with deterministic quality checks.<p>So I built metaswarm. It breaks work into phases and assigns each to a specialist swarm orchestrator. It manages handoffs and uses BEADS for deterministic gates that persist across /compact, /clear, and even across sessions. Point it at a GitHub issue or brainstorm with it (it uses <em>Superpowers</em> to ask clarifying questions) and it creates epics, tasks, and dependencies, then runs the full pipeline to a merged PR - including outside code review like CodeRabbit, Greptile, and Bugbot.<p>The thing that surprised me most was the design review gate. Five agents \u2014 PM, Architect, Designer, Security, CTO \u2014 review every plan in parallel before a line of code gets written. All five must approve. Three rounds max, then it escalates to a human. I expected a rubber stamp. It catches real design problems, dependency issues, security gaps.<p>This weekend I pointed it at my backlog. 127 PRs merged. Every one hit 100% test coverage. No human wrote code, reviewed code, or clicked merge. OK, I guided it a bit, mostly helping with plans for some of the epics.<p>A few learnings:<p>Agent checklists are theater. Agents skipped coverage checks, misread thresholds, or decided they didn't apply. Prompts alone weren't enough. The fix was deterministic gates \u2014 BEADS, pre-push hooks, CI jobs all on top of the agent completion check. The gates block bad code whether or not the agent cooperates.<p>The agents are just markdown files. No custom runtime, no server, and while I built it on TypeScript, the agents are language-agnostic. You can read all of them, edit them, add your own.<p>It self-reflects too. After every merged PR, the system extracts patterns, gotchas, and decisions into a JSONL knowledge base. Agents only load entries relevant to the files they're touching. The more it ships, the fewer mistakes it makes. It learns as it goes.<p>metaswarm stands on two projects: <a href=\"https://github.com/steveyegge/beads\" rel=\"nofollow\">https://github.com/steveyegge/beads</a> by Steve Yegge (git-native task tracking and knowledge priming) and <a href=\"https://github.com/obra/superpowers\" rel=\"nofollow\">https://github.com/obra/<em>superpowers</em></a> by <em>Jesse</em> <em>Vincent</em> (disciplined agentic workflows \u2014 TDD, brainstorming, systematic debugging). Both were essential.<p>Background: I founded Technorati, Linuxcare, and Warmstart; tech exec at Lyft and Reddit. I built metaswarm because I needed autonomous agents that could ship to a production codebase with the same standards I'd hold a human team to.<p>$ cd my-project-name<p>$ npx metaswarm init<p>MIT licensed. IANAL. YMMV. Issues/PRs welcome!"},"title":{"matchLevel":"none","matchedWords":[],"value":"Show HN: Metaswarm: Production-ready agent swarms, MIT license"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://dsifry.github.io/metaswarm/"}},"_tags":["story","author_dsifry","story_46872673","show_hn"],"author":"dsifry","created_at":"2026-02-03T15:59:44Z","created_at_i":1770134384,"num_comments":0,"objectID":"46872673","points":1,"story_id":46872673,"story_text":"A few weeks ago I posted about GoodToGo <a href=\"https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=46656759\">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=46656759</a> - a tool that gives AI agents a deterministic answer to &quot;is this PR ready to merge?&quot; Several people asked about the larger orchestration system I mentioned. This is that system.\nI got tired of being a project manager for Claude Code. It writes code fine, but shipping production code is seven or eight jobs \u2014 research, planning, design review, implementation, code review, security audit, PR creation, CI babysitting. I was doing all the coordination myself. The agent typed fast. I was still the bottleneck. What I really needed was an orchestrator of orchestrators - swarms of swarms of agents with deterministic quality checks.<p>So I built metaswarm. It breaks work into phases and assigns each to a specialist swarm orchestrator. It manages handoffs and uses BEADS for deterministic gates that persist across &#x2F;compact, &#x2F;clear, and even across sessions. Point it at a GitHub issue or brainstorm with it (it uses Superpowers to ask clarifying questions) and it creates epics, tasks, and dependencies, then runs the full pipeline to a merged PR - including outside code review like CodeRabbit, Greptile, and Bugbot.<p>The thing that surprised me most was the design review gate. Five agents \u2014 PM, Architect, Designer, Security, CTO \u2014 review every plan in parallel before a line of code gets written. All five must approve. Three rounds max, then it escalates to a human. I expected a rubber stamp. It catches real design problems, dependency issues, security gaps.<p>This weekend I pointed it at my backlog. 127 PRs merged. Every one hit 100% test coverage. No human wrote code, reviewed code, or clicked merge. OK, I guided it a bit, mostly helping with plans for some of the epics.<p>A few learnings:<p>Agent checklists are theater. Agents skipped coverage checks, misread thresholds, or decided they didn&#x27;t apply. Prompts alone weren&#x27;t enough. The fix was deterministic gates \u2014 BEADS, pre-push hooks, CI jobs all on top of the agent completion check. The gates block bad code whether or not the agent cooperates.<p>The agents are just markdown files. No custom runtime, no server, and while I built it on TypeScript, the agents are language-agnostic. You can read all of them, edit them, add your own.<p>It self-reflects too. After every merged PR, the system extracts patterns, gotchas, and decisions into a JSONL knowledge base. Agents only load entries relevant to the files they&#x27;re touching. The more it ships, the fewer mistakes it makes. It learns as it goes.<p>metaswarm stands on two projects: <a href=\"https:&#x2F;&#x2F;github.com&#x2F;steveyegge&#x2F;beads\" rel=\"nofollow\">https:&#x2F;&#x2F;github.com&#x2F;steveyegge&#x2F;beads</a> by Steve Yegge (git-native task tracking and knowledge priming) and <a href=\"https:&#x2F;&#x2F;github.com&#x2F;obra&#x2F;superpowers\" rel=\"nofollow\">https:&#x2F;&#x2F;github.com&#x2F;obra&#x2F;superpowers</a> by Jesse Vincent (disciplined agentic workflows \u2014 TDD, brainstorming, systematic debugging). Both were essential.<p>Background: I founded Technorati, Linuxcare, and Warmstart; tech exec at Lyft and Reddit. I built metaswarm because I needed autonomous agents that could ship to a production codebase with the same standards I&#x27;d hold a human team to.<p>$ cd my-project-name<p>$ npx metaswarm init<p>MIT licensed. IANAL. YMMV. Issues&#x2F;PRs welcome!","title":"Show HN: Metaswarm: Production-ready agent swarms, MIT license","updated_at":"2026-03-05T23:30:19Z","url":"https://dsifry.github.io/metaswarm/"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"CharlesW"},"comment_text":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["jesse","vincent","superpowers"],"value":"As a long time user, I'd recommend checking out <a href=\"https://github.com/obra/superpowers#the-basic-workflow\" rel=\"nofollow\">https://github.com/obra/<em>superpowers</em>#the-basic-workflow</a>. If that reasonates with you, try using it to develop a few features or capabilities.<p>It works very well for the way that I work (interactively and iteratively, not &quot;one-shot&quot;), and it helps me to better work in less time. <em>Superpowers</em> is one of the few skill/agent suites I use for all software development projects.<p>If you like building skill/agents, the posts at <a href=\"https://blog.fsck.com/\" rel=\"nofollow\">https://blog.fsck.com/</a> are a great resource for learning how to do well. The effectiveness of my project Axiom (a skill/agent suite for Apple OS developers) has benefited enormously from the knowledge that <em>Superpowers</em>' creator <em>Jesse</em> <em>Vincent</em> has been kind enough to share.<p>TLDR: You owe it to yourself to try it."},"story_title":{"fullyHighlighted":false,"matchLevel":"partial","matchedWords":["superpowers"],"value":"<em>Superpowers</em> 6"},"story_url":{"fullyHighlighted":false,"matchLevel":"partial","matchedWords":["superpowers"],"value":"https://blog.fsck.com/2026/06/15/<em>Superpowers</em>-6/"}},"_tags":["comment","author_CharlesW","story_48739459"],"author":"CharlesW","comment_text":"As a long time user, I&#x27;d recommend checking out <a href=\"https:&#x2F;&#x2F;github.com&#x2F;obra&#x2F;superpowers#the-basic-workflow\" rel=\"nofollow\">https:&#x2F;&#x2F;github.com&#x2F;obra&#x2F;superpowers#the-basic-workflow</a>. If that reasonates with you, try using it to develop a few features or capabilities.<p>It works very well for the way that I work (interactively and iteratively, not &quot;one-shot&quot;), and it helps me to better work in less time. Superpowers is one of the few skill&#x2F;agent suites I use for all software development projects.<p>If you like building skill&#x2F;agents, the posts at <a href=\"https:&#x2F;&#x2F;blog.fsck.com&#x2F;\" rel=\"nofollow\">https:&#x2F;&#x2F;blog.fsck.com&#x2F;</a> are a great resource for learning how to do well. The effectiveness of my project Axiom (a skill&#x2F;agent suite for Apple OS developers) has benefited enormously from the knowledge that Superpowers&#x27; creator Jesse Vincent has been kind enough to share.<p>TLDR: You owe it to yourself to try it.","created_at":"2026-07-02T23:04:03Z","created_at_i":1783033443,"objectID":"48768514","parent_id":48768448,"story_id":48739459,"story_title":"Superpowers 6","story_url":"https://blog.fsck.com/2026/06/15/Superpowers-6/","updated_at":"2026-07-03T09:15:22Z"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"Multiplayer"},"comment_text":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["jesse","vincent","superpowers"],"value":"<em>Superpowers</em> is from Obra (<em>Jesse</em> <em>Vincent</em>), quintessential hacker and was a leader in the Perl community back in the day (still?).<p><a href=\"https://github.com/obra/superpowers\" rel=\"nofollow\">https://github.com/obra/<em>superpowers</em></a>"},"story_title":{"matchLevel":"none","matchedWords":[],"value":"Ask HN: Why is my Claude experience so bad? What am I doing wrong?"}},"_tags":["comment","author_Multiplayer","story_47000206"],"author":"Multiplayer","comment_text":"Superpowers is from Obra (Jesse Vincent), quintessential hacker and was a leader in the Perl community back in the day (still?).<p><a href=\"https:&#x2F;&#x2F;github.com&#x2F;obra&#x2F;superpowers\" rel=\"nofollow\">https:&#x2F;&#x2F;github.com&#x2F;obra&#x2F;superpowers</a>","created_at":"2026-02-15T22:34:10Z","created_at_i":1771194850,"objectID":"47028405","parent_id":47028371,"story_id":47000206,"story_title":"Ask HN: Why is my Claude experience so bad? What am I doing wrong?","updated_at":"2026-03-05T23:33:21Z"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"groundy"},"comment_text":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["jesse","vincent","superpowers"],"value":"<em>Superpowers</em> is an open-source agentic skills framework that transforms AI coding agents into disciplined software engineers by enforcing non-negotiable workflows: design before code, tests before features, and structured review between every task. Created by <em>Jesse</em> <em>Vincent</em> in October 2025 and accepted into the Anthropic marketplace in January 2026, it accumulated over 27,000 GitHub stars in its first three months\u2014roughly 9,000 per month."},"story_title":{"matchLevel":"none","matchedWords":[],"value":"[dead]"}},"_tags":["comment","author_groundy","story_47304954"],"author":"groundy","comment_text":"Superpowers is an open-source agentic skills framework that transforms AI coding agents into disciplined software engineers by enforcing non-negotiable workflows: design before code, tests before features, and structured review between every task. Created by Jesse Vincent in October 2025 and accepted into the Anthropic marketplace in January 2026, it accumulated over 27,000 GitHub stars in its first three months\u2014roughly 9,000 per month.","created_at":"2026-03-09T04:43:05Z","created_at_i":1773031385,"objectID":"47304955","parent_id":47304954,"story_id":47304954,"story_title":"[dead]","updated_at":"2026-03-09T04:45:52Z"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"simonw"},"comment_text":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["jesse","vincent","superpowers"],"value":"I know TDD provides better results for coding agents from 6+ months of experience working this, plus confirmation from conversations with other practitioners. TDD is the key methodology used by the popular <em>superpowers</em> set of Claude skills by <em>Jesse</em> <em>Vincent</em>, for example.<p>I'm not going to be trying to irrefutably prove everything I write about in the Agentic Engineering Patterns book - that would require a credible research team and peer-reviewed papers, and that's not a level of effort I'm willing to put into this."},"story_title":{"matchLevel":"none","matchedWords":[],"value":"Writing code is cheap now"},"story_url":{"matchLevel":"none","matchedWords":[],"value":"https://simonwillison.net/guides/agentic-engineering-patterns/code-is-cheap/"}},"_tags":["comment","author_simonw","story_47125374"],"author":"simonw","children":[47158101],"comment_text":"I know TDD provides better results for coding agents from 6+ months of experience working this, plus confirmation from conversations with other practitioners. TDD is the key methodology used by the popular superpowers set of Claude skills by Jesse Vincent, for example.<p>I&#x27;m not going to be trying to irrefutably prove everything I write about in the Agentic Engineering Patterns book - that would require a credible research team and peer-reviewed papers, and that&#x27;s not a level of effort I&#x27;m willing to put into this.","created_at":"2026-02-25T19:23:55Z","created_at_i":1772047435,"objectID":"47156475","parent_id":47153979,"story_id":47125374,"story_title":"Writing code is cheap now","story_url":"https://simonwillison.net/guides/agentic-engineering-patterns/code-is-cheap/","updated_at":"2026-03-05T23:37:20Z"}],"hitsPerPage":8,"nbHits":8,"nbPages":1,"page":0,"params":"query=jesse+vincent+superpowers&hitsPerPage=8&advancedSyntax=true&analyticsTags=backend","processingTimeMS":17,"processingTimingsMS":{"_request":{"roundTrip":18},"afterFetch":{"merge":{"mergeLoop":{"prepareNextHit":2,"total":2},"total":2},"total":2},"fetch":{"query":12,"scanning":1,"total":14},"total":17},"query":"jesse vincent superpowers","serverTimeMS":18}
