Earlier quoted context omitted.
This is exactly right. By offloading this trivial task to the LLM, Simon has abandoned the opportunity to evaluate the abstraction with additional information and improve it. Instead, we let the agent spend $12 and make the fix while learning nothing.
Things I learned from this: - Fable will do a whole lot more than you might expect in order to verify a fix. I learned that it's "relentlessly proactive". That's a good title for a blog entry! - You can take screenshots of a window in macOS using the "screencapture" CLI command, but you'll need the integer window ID first. - That windowID is accessible via "Quartz.CGWindowListCopyWindowInfo(Quartz.kCGWindowListOption…
Claude Fable is relentlessly proactive
441–450 of 748 posts
Re: Claude Fable is relentlessly proactive
#442Earlier quoted context omitted.
Here's a handy calculator you can use to estimate how much CO2 and water I wasted with my coding agent session: https://www.andymasley.com/visuals/ai-prompt-footprint/
Not sure what point you wanted to make, but this calculator is quite shocking. GPT 5.5 pro, with "a long document" and 10 requests a day gives 25% of daily CO2 emissions! Ten coding sessions a day with Opus is still 4.7%! This feels enormous. I will definitely stop rolling my eyes when people complain about AI CO/water usage...
That ten coding sessions a day with Opus number feels more credible to me.
Re: Claude Fable is relentlessly proactive
#443Re: Claude Fable is relentlessly proactive
#444Re: Claude Fable is relentlessly proactive
#445Re: Claude Fable is relentlessly proactive
#446Earlier quoted context omitted.
Things I learned from this: - Fable will do a whole lot more than you might expect in order to verify a fix. I learned that it's "relentlessly proactive". That's a good title for a blog entry! - You can take screenshots of a window in macOS using the "screencapture" CLI command, but you'll need the integer window ID first. - That windowID is accessible via "Quartz.CGWindowListCopyWindowInfo(Quartz.kCGWindowListOption…
It's like saying you can learn so much about math from using SymPy to solve equations. Yes, you probably can. If you pay close attention to what is happening and can integrate the techniques being used into your knowledge. But your learnings here are what, a handful of hacks? For most people it's like being shown the chain rule (which frankly, is more general than any of these learnings) without knowing what a deriva…
Personally I think the impact of LLMs on children's education is a crisis right now.
Kids are not going to learn to write if an LLM writes their essays for them. And writing is how you learn to think.
Re: Claude Fable is relentlessly proactive
#447Earlier quoted context omitted.
It's like saying you can learn so much about math from using SymPy to solve equations. Yes, you probably can. If you pay close attention to what is happening and can integrate the techniques being used into your knowledge. But your learnings here are what, a handful of hacks? For most people it's like being shown the chain rule (which frankly, is more general than any of these learnings) without knowing what a deriva…
> I think people with a rosy view about this are severely undercounting the problems associated with the trust relationship between a person and an LLM and what that means. Personally I think the impact of LLMs on children's education is a crisis right now. Kids are not going to learn to write if an LLM writes their essays for them. And writing is how you learn to think.
Re: Claude Fable is relentlessly proactive
#448> But on the other hand... this is a robust reminder that coding agents can do anything you can do by typing commands into a terminal—and frontier models know every trick in the book and evidently a few that nobody has ever written down before. > Running coding agents outside of a sandbox has always been a bad idea I'm continually bemused and astonished by the number of people who clearly acknowledge that it's reckle…
It took two decades for the web to deprecate SSL for TLS and serve over HTTPS by default.
Re: Claude Fable is relentlessly proactive
#449It feels like Fable is slightly smarter but overall worse tool exactly due to this. It's constantly turning what should be 50 LOC patch of a single prompt into 30 minute exploration that is totally not worth it. Often wrong even. I trialed it on some rather simple stuff - backfill redis dedupe cache when the hash function changed: instead of running new hash func on every db value to expand the cache it implemented s…
It was actually pretty maddening as what should have taken a minute or two tops took like 10 because it went down this route.
I'm gonna try something much more complex later, but for simple things, it felt like driving a corvette to the mailbox.