> It demands too much context. This is solved trivially by having default initial prompts. All majors tools like Claude Code or Gemini CLI have ways to set them up. > You pass all your tools to an LLM and ask it to filter it down based on the task at hand. So far, there hasn't been much better approaches proposed. Why is a "better" approach needed? If modern LLMs can properly figure it out? It's not like LLMs don't k…
> cost: They keep getting cheaper and cheaper no they don't[0], the cost is just still hidden from you but the freebies will end just like MoviePass and cheap Ubers https://bsky.app/profile/edzitron.com/post/3lsw4vatg3k2b "Cursor released a $200-a-month subscription then made their $20-a-month subscription worse (worse output, slower) - yet it seems even on Max they're rate limiting people!" https://bsky.app/profile/…
Tools: Code Is All You Need
141–150 of 234 posts
Re: Tools: Code Is All You Need
#142It’s 2025 and this is the epitome of progress.
On the positive side code generation can be solid if you also have/can generate easy-to-read validation or tests for the generated code. I mean that you can read, of course.
Re: Tools: Code Is All You Need
#143My absolute favorite use of MCP so far is Bruce Hauman's clojure-mcp. In short, it gives the LLM (a) a bash tool, (b) a persistent Clojure REPL, and (c) structural editing tools. The effect is that it's far more efficient at editing Clojure code than any purely string-diff-based approach, and if you write a good test suite it can rapidly iterate back and forth just editing files, reloading them, and then re-running t…
It can straight up debug your code, eval individual expressions, document return types of functions. It’s amazing.
It actually makes me think that languages with strong REPLs are a better for languages than those without. Seeing clojure-mcp do its thing is the most impressive AI feat I’ve seen since I saw GPT-3 in action for the first time
Re: Tools: Code Is All You Need
#144Earlier quoted context omitted.
The local models aren't quite good enough for this yet in my experience - the big hosted models (o3, Gemini 2.5, Claude 4) only just crossed the capability threshold for this to start working well. I think it's possible we'll see a local model that can do this well within the next few months though - it needs good tool calling, not an encyclopedic knowledge of the world. Might be possible to fit that in a model that…
> it needs good tool calling, not an encyclopedic knowledge of the world I wonder if there are any groups/companies out there building something like this Would love to have models that only know 1 or 2 languages (eg. python + js), but are great at them and at tool calling. Definitely don't need my coding agent to know all of Wikipedia and translating between 10 different languages
1. A special code dataset 2. A bunch of "unrelated" books
My understanding is that the model trained on just the first will never beat the model trained on both. Bloomberg model is my favorite example of this.
If you can squirell away special data then that special data plus everything else will beat the any other models. But that's basically what openai, google, and anthropic are all currently doing.
Re: Tools: Code Is All You Need
#145Earlier quoted context omitted.
You checked out drone warfare? It’s all the rage in every conflict at the moment. The hype around drones is not fake, and I’d compare it more to autonomous cars because regulation is the only reason you don’t see a million private drones flying around.
Yes, to an extent, but I would say that is an extension of artillery and long-range fire capabilities.
Re: Tools: Code Is All You Need
#146Earlier quoted context omitted.
I see your point, but bear with me here--it kind of is. I suppose if one wanted to be pedantically literal, then you are indeed correct. In every other meaningful consideration, the parent comment is. Maybe not Bash specifically, but #!/bin/sh is broadly available on nearly every connected device on the planet, in some capacity. From the perspective of how we could automate nearly anything, you'd be hard-pressed to f…
> you'd be hard-pressed to find something more universal than a shell script. 99.9% of my 20-year career has been spent on Windows. So bash scripts are entirely worthless and dead to me.
Re: Tools: Code Is All You Need
#147Earlier quoted context omitted.
> There is a hole in the ground where something between 100 billion and a trillion dollars in the ground that so far has about 20B in revenue (not profit) going into it annually. This is a concern for me. I'm using claude-code daily and find it very useful, but I'm expecting the price to continue getting jacked up. I do want to support Anthropic, but they might eventually need to cross a price threshold where I bail.…
As a thought-exercise -- assume models continue to improve, whereas "using claude-code daily" is something you choose to do because it's useful, but is not yet at the level of "absolute necessity, can't imagine work without it". What if it does become, that level of absolute necessity? - Is your demand inelastic at that point, if having claude-code becomes effectively required, to sustain your livelihood? Does pricin…
As usual, the answer is "it depends". I guarantee though that I'll at least start looking at alternatives when there's a huge price hike.
Also I suspect that a 100x improvement (if even possible) wouldn't just cost 100 times as much, but probably 100,000+ times as much. I also suspect than an improvement of 100x will be hyped as an improvement of 1,000x at least :)
Regardless, AI is really looking like a commodity to me. While I'm thankful for all the investment that got us here, I doubt anyone investing this late in the game at these inflated numbers are going to see a long term return (other than ponzi selling).
Re: Tools: Code Is All You Need
#148Earlier quoted context omitted.
Hype cycle for drones and VR was similar -- at the peak, you have people claiming drones will take over package delivery and everyone will spend their day in VR. Reality is that the applicability is more narrow.
Good drones are very Chinese atm, as is casual consumer drone delivery. Americans might be more than a decade away even with concerted bipartisan war-like effort to boost domestic drone competency. The reality is Chinese.
Re: Tools: Code Is All You Need
#149Earlier quoted context omitted.
>LLMs? Look more and more like the Metaverse every day as concerns the economics. ChatGPT has 800M+ weekly active users how is that comparable to the Metaverse in any way?
I said as concerns the economics. It's clearly more popular than the Oculus or whatever, but it's still a money bonfire and shows no signs of changing on that front.
Re: Tools: Code Is All You Need
#150Regarding the Playwright example: I had the same experience this week attempting to build an agent first by using the Playwright MCP server, realizing it was slow, token-inefficient, and flaky, and rewriting with direct Playwright calls. MCP servers might be fun to get an idea for what's possible, and good for one-off mashups, but API calls are generally more efficient and stable, when you know what you want. Here's…
LinkedIn has this reputation of being notorious about making it hard to build automations on top of, did you run into any roadblocks when building your personal LinkedIn agent?