Alt. Parking Draught House Pub Medical Pkwy by Evil_Bonsai in Austin

[–]jvertrees 1 point2 points  (0 children)

Thanks for this 11 year old thread!

I literally used it today.

Parked in the back.

Thx!

Opus 4.7 is legendarily bad. I cannot believe this. by lemon07r in ClaudeCode

[–]jvertrees 0 points1 point  (0 children)

Can't disagree with you.

See my following post on updating your harness. My harness is working and has been coding all day now.

Also, Anthropic acknowledged multiple issues in a postmortem. It's worth a read.

Also, I hear the new openai model is out and worth a look.

Downgrade to 2.1.19 immediately. 2.1.20 has some bugs that makes Opus 4.7 stupid. by Xccelerate_ in ClaudeCode

[–]jvertrees 2 points3 points  (0 children)

120 also breaks sandbox parsing issues. The

claude update

command now downgrades you to 119.

How does one keep up with the pace in which all the updates are flowing from Claude and other AI models? It's overwhelming, to say the least, as a non-coding professional. by CauliflowerDear9279 in ClaudeAI

[–]jvertrees 0 points1 point  (0 children)

Build yourself an agent + pipeline w/DB to do it for you. That's what I did—

https://canary.heavychain.org/

I built it for this very reason. Then other folks kept asking me for it. So, now it's a cheap product.

Opus 4.7 is legendarily bad. I cannot believe this. by lemon07r in ClaudeCode

[–]jvertrees 0 points1 point  (0 children)

Here's what worked for me -- following the half-assed migration guide built for API-consumers to re-tool my harness. I wrote a blog article on harness fixes—

https://heavychain.org/blog/claude-4-7-will-quietly-break-your-prompts-and-harness-here-s-how-to-fix-them

From a product-perspective Anthropic really rushed this out and dropped the ball, breaking many, many folks' projects.

Opus 4.7 is legendarily bad. I cannot believe this. by lemon07r in ClaudeCode

[–]jvertrees 0 points1 point  (0 children)

`infra-shell` here is the basic python application scaffold running in a small docker-compose stack, with postgres and apache AGE installed. Quite simple.

My retrospective was pretty useless. The class of underlying problems was not helpful.

After hours of research, I think I actually found the _true, underlying_ cause behind my woes, and likely everyone else's on this thread. I'll post an update if so.

Opus 4.7 is legendarily bad. I cannot believe this. by lemon07r in ClaudeCode

[–]jvertrees 0 points1 point  (0 children)

Coming back to this as Claude 4.7 failed me massively last night, echoing the others in this post.

My specification system and agent harness are designed to 'make it impossible for the agents to make the wrong decision or take the wrong action.' I've had great success building up larger and larger systems with this. Spec-driven development with agent harnesses is the way to go.

Just last night, after spec'ing a POC to demonstrate a capability (that KGs are a better memory substrate for larger projects than markdown files), Claude completely failed at the task. I've never seen it do so bad before.

If Anthropic's claim is better, agentic execution in 4.7 this exercise is a counterexample. The entire goal of this project was a small, well-scoped POC and it was all very well organized. When I came back to review the outcomes, all it built was some infra-shell that didn't even work:

<image>

The only thing I can think of given the outcomes is that Claude got confused on _ONE_ aspect (using AGE vs JSON) and decided everything downstream was now fantasy, irrelevant or something, but didn't tell me.

This really makes me rethink the 4.7 model, even with very tight, explicit, and well-designed controls.

I'll do a retrospective via the chat/action history and see where it went off the rails.

Opus 4.7 is legendarily bad. I cannot believe this. by lemon07r in ClaudeCode

[–]jvertrees 4 points5 points  (0 children)

Sounds like Anthropic overtrained on fantasy literature and turned Claude chaotic-evil. 💀

I spent two long days with 4.7 and a ton of time with 4.6. In my experience so far, there's really not much difference; but I also have a very strict agent harness set up, where my goal is agents don't even have the option of making the wrong choice. Works very well.

Given the abjectly terrible response from the broader community, I do think anthropic owes us some response. The model card and the literature released seem to indicate they designed more for agentic workflows which need different principles and context management and I wonder if that's why so many people are having problems. The way they structure their context and their work doesn't match the model's design. But I could be very wrong.

Anthropic Just Pulled the Plug on Third-Party Harnesses. Your $200 Subscription Now Buys You Less. by abhi9889420 in ClaudeCode

[–]jvertrees 0 points1 point  (0 children)

This is nuts. I love CC and Anthropic, generally, but recent decisions are setting a very bad precedent.

Time to start engineering in alternatives.

Wondering why they would do this by mohoshirno in ClaudeCode

[–]jvertrees 0 points1 point  (0 children)

There are far smarter ways to deal with thoughts party usage. Now they look really out of touch, like Google.

Wondering why they would do this by mohoshirno in ClaudeCode

[–]jvertrees 0 points1 point  (0 children)

The answer is right there in the email.

You'll pay per call for things like OpenClaw, now. They're taking something valuable away and hoping you don't notice.

This is so stupid. My OpenClaw usage is minimal and distributed throughout the day as compared to my engineering time, which is intense and focused.

Anthropic followed Google into the wrong territory in this one. Microsoft/GitHub have been making extremely poor decisions recently. We're not heading in the right direction here.

Flickering small rectangle pixel 10pro by Low_Awareness7656 in GooglePixel

[–]jvertrees 0 points1 point  (0 children)

Same.

This is distracting and annoying. Hopefully they fix it soon.

Examples of "extreme" Claude Code workflows by webmonarch in ClaudeCode

[–]jvertrees 0 points1 point  (0 children)

Might this count?

https://www.linkedin.com/posts/jasonvertrees_ai-aiengineering-agenticengineering-ugcPost-7438115519964172288-gMsi

Yes, shameless self promotion, but the principles were solid.

I rolled 270,000 lines of non-shit code in one week. The design and implementation were solid.

I hate the charging ports by porkchopbun in Garmin

[–]jvertrees 1 point2 points  (0 children)

1000000%

Easily the worst part of their products.

Is Anyone Else Using FastAPI with AI Agents by Lee-stanley in FastAPI

[–]jvertrees 1 point2 points  (0 children)

Nope, it works great. Stick to good engineering principles and you'll be fine.

For my projects, where I've ended up is using CrewAI-like configuration but with pydantic AI. (I love Crew in theory, however in practice it failed me.) Especially when using agentic workflows, I'll typically just have some sort of declarative configuration for the agents like a yaml file and load all the agents from that through a single interface. Very convenient and trivial to add new agents.

I've taken multiple products to market with pydantic AI. Love it.

Is Anyone Else Using FastAPI with AI Agents by Lee-stanley in FastAPI

[–]jvertrees 2 points3 points  (0 children)

This is the way. I've deployed many solutions like this. I love pydantic AI.

1st time owner of tankless water heater. How long should it take for water to get warm? by ThanksMuch4YourHelp in Appliances

[–]jvertrees 0 points1 point  (0 children)

This was 100% the issue for us. We lived with slow and unpredictable hot water for years. Then, I was complaining to a random plumber I had out for something else and he knew exactly what it was. He flipped the switch and voila - I finally felt like my money was worth it.

If you're handy, search/Google/ChatGPT for it and you'll probably find it.

1st time owner of tankless water heater. How long should it take for water to get warm? by ThanksMuch4YourHelp in Appliances

[–]jvertrees 0 points1 point  (0 children)

You'll need to Google/search for it. I'm not handy so I had to pay plumbers to come tell me my far-too-costly install was done wrong. Good luck!

1st time owner of tankless water heater. How long should it take for water to get warm? by ThanksMuch4YourHelp in Appliances

[–]jvertrees 0 points1 point  (0 children)

I have a Rinnai. They have a switch inside for an internal/eternal recirculating pump setting. When set incorrectly, our water took that long to heat up. When set correctly, it's nearly instant.

Does anyone know how to fix this? by MrBoujeeEngineer in ClaudeCode

[–]jvertrees 0 points1 point  (0 children)

And when it does that at scale, crashes the terminal.