Earlier quoted context omitted.
It's also possible to put in enough hours of real coding to get to the point where coding really isn't that hard anymore, at least not hard enough to justify switching from those stable/solid fundamental skills to a constantly revolving ecosystem of ephemeral tools, models, model versions, best practices, lessons from trial and error, etc. Then you could bypass all of this distraction. Admittedly that stance is easie…
"There exist developers whose performance cannot be boosted by an LLM" is a really strong statement.
Superpowers: How I'm using coding agents in October 2025
111–120 of 242 posts
Re: Superpowers: How I'm using coding agents in October 2025
#112Earlier quoted context omitted.
Yeah, my current opinion on this is that AI tools make development harder work . You can get big productivity boosts out of them but you have to be working at the top of your game - I often find I'm mentally exhausted after just a couple of hours.
Considering the last 2 years, has it become harder or easier?
A year ago I was using GitHub Copilot autocomplete in VS Code and occasionally asking ChatGPT or Claude to help write me a short function or two.
Today I have Claude Code and Codex CLI and Codex Web running, often in parallel, hunting down and resolving bugs and proposing system designs and collaborating with me on detailed specs and then turning those specs into working code with passing tests.
The cognitive overhead today is far higher than it was a year ago.
Re: Superpowers: How I'm using coding agents in October 2025
#113Earlier quoted context omitted.
The problem is that you're talking about a multistep process where each step beyond the first depends on the particular path the agent starts down, along with human input that's going to vary at each step. I made a crude first stab at an approach that at least uses similar steps and structure to compare the effectiveness of AI agents. My approach was used on a small toy problem, but one that was complex enough the ag…
What you're getting at is the heart of the problem with the LLM hype train though, isn't it? "We should have rigorous evaluations of whether or not [thing] works." seems like an incredibly obvious thought. But in the realm of LLM-enabled use cases they're also expensive . You'd need to recruit dozens, perhaps even hundreds of developers to do this, with extensive observation and rating of the results. So rather than…
Re: Superpowers: How I'm using coding agents in October 2025
#114Earlier quoted context omitted.
I recommend it strongly because the "skills" mechanism it describes is a new and very promising technique, and this is the best article I've seen that explains that. It's "wild" because, among many other experiments, Jesse has experimented with giving Claude a "feelings journal" and prompting it using Graphviz DOT diagrams. For my previous writing and work on this you can consult my blog - here's the AI-assisted prog…
[flagged]
Jesse presented something new.
Re: Superpowers: How I'm using coding agents in October 2025
#115Earlier quoted context omitted.
Who hurt you? Sorry couldn’t resist. Agile’s point was getting feedback during the process rather than after something is complete enough to be shipped thus minimizing risk and avoiding wasted effort. Instead people are splitting up major projects into tiny shippable features and calling that agile while missing the point.
I've never seen a working scrum/agile/sprint/whatever product/project management system and I'm convinced it's because I've just never seen an actual implementation of one. "Splitting up major projects into tiny shippable features and calling that agile" feels like a much more accurate description of what I've experienced. I wish I'd gotten to see the real thing(s) so I could at least have an informed opinion.
The manager for the only team I think actually checked all the agile boxes had a UI background so she thought in terms of mock-ups, backend, and polishing as different tasks and was constantly getting client feedback between each stage. That specific approach isn’t universal, the feedback as part of the process definitely should be though.
What was a little surreal is the pace felt slow day to day but we were getting a lot done and it looked extremely polished while being essentially bug free at the end. An experienced team avoiding heavy processes, technical debt, and wasted effort goes a long way.
Re: Superpowers: How I'm using coding agents in October 2025
#116[flagged]
The past few years have taught me that these are the people that rise to the top of society (much to my chagrin). The average person doesn’t want to hear from thoughtful intellectuals presenting nuanced opinions. They want to hear from those who brashly and boastfully present themselves as authority figures, and then bolster the listeners preconceived ideas with violently exaggerated language. Shallow but sensational…
Re: Superpowers: How I'm using coding agents in October 2025
#117This article left me wishing it was "How I'm using coding agents to do task better" I've been exploring AI for two years now. It's certainly upgraded itself from the toy classification to a basic utility. However, I increasingly run into its limitations and find reverting to pre-LLM ways of working more robust, faster, and more mentally sustainable. Does someone have concrete examples of integrating LLM in a workflow…
Re: Superpowers: How I'm using coding agents in October 2025
#118I am only on the first page and saw this blurb and was immediately annoyed. @/Users/jesse/.claude/plugins/cache/Superpowers/... The XDG spec has been out for decades now. Why are new applications still polluting my HOME? Also seems weird that real data would be put under a cache/ location, but whatever.
Re: Superpowers: How I'm using coding agents in October 2025
#119This article left me wishing it was "How I'm using coding agents to do task better" I've been exploring AI for two years now. It's certainly upgraded itself from the toy classification to a basic utility. However, I increasingly run into its limitations and find reverting to pre-LLM ways of working more robust, faster, and more mentally sustainable. Does someone have concrete examples of integrating LLM in a workflow…
Re: Superpowers: How I'm using coding agents in October 2025
#120Earlier quoted context omitted.
This was a fun read. I’ve similarly been using spec.md and running to-do.md files that capture detailed descriptions of the problems and their scoped history. I mark each of my to-do’s with informational tags: [BUG], [FEAT], etc. I point the LLM to the exact to-do (or section of to-do’s) with the spec.md in memory and let it work. This has been working very well for me.
Do you mind linking to example spec/to-do files?
https://gist.github.com/JacobBumgarner/d29b660cb81a227885acc...