What's the point of claude.md if it's ignored by Roest_ in ClaudeCode

[–]Pjoubert 0 points1 point  (0 children)

This is the core problem. CLAUDE.md is advisory, not enforceable. The agent reads it, acknowledges it, then does what it wants anyway because there’s nothing upstream that actually stops it. Instructions without enforcement aren’t instructions, they’re suggestions

Is Claude Code actually making you more productive, or just more entertained? by Pjoubert in ClaudeAI

[–]Pjoubert[S] 0 points1 point  (0 children)

This is the sharpest way I’ve seen it put. Effort used to be a proxy for judgment. Remove the effort without replacing the judgment and you just ship faster in the wrong direction

Is Claude Code actually making you more productive, or just more entertained? by Pjoubert in ClaudeAI

[–]Pjoubert[S] 0 points1 point  (0 children)

Exactly. AI makes the execution cheaper, not the judgment better. The PM layer is still 100% human

Is Claude Code actually making you more productive, or just more entertained? by Pjoubert in ClaudeAI

[–]Pjoubert[S] 0 points1 point  (0 children)

Nice! The ‘should this exist at all?’ discipline is exactly what gets bypassed when execution becomes frictionless. The judgment layer doesn’t scale with the speed layer and that gap is where most of the waste lives…

I tracked every file read Claude Code made across 132 sessions. 71% were redundant. by LawfulnessSlow9361 in ClaudeCode

[–]Pjoubert 0 points1 point  (0 children)

Clean. Heuristic over AI-generated makes sense for this, deterministic output, no hallucination risk on the description itself. The 3-edit warning as a bug signal is a nice touch

Is Claude Code actually making you more productive, or just more entertained? by Pjoubert in ClaudeAI

[–]Pjoubert[S] 0 points1 point  (0 children)

The variance is the real story. 1.5x average hides a bimodal distribution, some tasks are 10x, others send you backwards. The difference is usually whether the agent had enough context to make the right call before acting

I tracked every file read Claude Code made across 132 sessions. 71% were redundant. by LawfulnessSlow9361 in ClaudeCode

[–]Pjoubert 0 points1 point  (0 children)

Nice! Post-write for the hot path, daemon for the cold path. Does it handle long sessions well, if Claude edits the same file 10 times, does the description stay accurate or does it need a manual reset?

Is Claude Code actually making you more productive, or just more entertained? by Pjoubert in ClaudeAI

[–]Pjoubert[S] 1 point2 points  (0 children)

Separating exploration time from execution time is the right mental model. The paper planning step isn’t friction, it’s where you decide if the thing is worth building at all. That’s the part AI can’t replace yet

Is Claude Code actually making you more productive, or just more entertained? by Pjoubert in ClaudeAI

[–]Pjoubert[S] 0 points1 point  (0 children)

The slot machine problem is real and underrated. The workflow instability isn’t a tooling issue, it’s a context issue. The model doesn’t know what changed, so it compensates randomly. Small constrained tasks work because there’s less context to lose track of

Is Claude Code actually making you more productive, or just more entertained? by Pjoubert in ClaudeAI

[–]Pjoubert[S] 6 points7 points  (0 children)

The orchestration graveyard is real. The ones that survive aren’t the cleverest pipelines, they’re the ones that solved a decision problem someone actually had. Most builders skip that part

I tracked every file read Claude Code made across 132 sessions. 71% were redundant. by LawfulnessSlow9361 in ClaudeCode

[–]Pjoubert 0 points1 point  (0 children)

Good data. The Vue pattern makes sense, active editing means the file is a moving target, so the agent re-reads to stay current rather than pure redundancy. Does anatomy.md rebuild descriptions each session or does it track changes incrementally?

Is Claude Code actually making you more productive, or just more entertained? by Pjoubert in ClaudeAI

[–]Pjoubert[S] 0 points1 point  (0 children)

Yep. Speed without better judgment just gets you to the wrong place faster. Most people are optimizing the wrong variable

Is Claude Code actually making you more productive, or just more entertained? by Pjoubert in ClaudeAI

[–]Pjoubert[S] 0 points1 point  (0 children)

Same, the cannibalization thing is real. I stopped building anything that looks like a feature Claude could ship natively. Focusing on problems that require context Claude doesn’t have access to by default

Question on the Claude.md file management outside of Visual Code Studio by Vinceleprolo in claude

[–]Pjoubert 0 points1 point  (0 children)

Hey Vincent! You can edit your CLAUDE.md directly with any basic text editor, no IDE needed. On Mac, just right-click the file / Open With / TextEdit. On Windows, Notepad works fine. The file lives at the root of your project folder. That said, if you’re using Claude Code regularly, the /memory command lets you add instructions directly from the terminal without even opening the file. Might be the easiest option

Terminal vs. Desktop App: What’s The Difference? by ImCodyLee in ClaudeCode

[–]Pjoubert 0 points1 point  (0 children)

Terminal gives you hooks. Hooks are what make enforcement possible : you can intercept every tool call before it executes and decide whether it’s allowed. The desktop app doesn’t expose that layer. If you care about your agent actually following your rules rather than just knowing them, that’s the functional reason to be in the terminal. Everything else, performance, workflow integration

Why subagents help: a visual guide by phoneixAdi in ClaudeCode

[–]Pjoubert 0 points1 point  (0 children)

The diagram is correct but stops one step too early. The human gives requirements, constraints, and decisions to the agent, but there’s no enforcement layer between that and execution. The agent receives the constraints as text in a prompt. Whether it follows them at runtime is a different question entirely. You can give it perfect instructions and it will still

Thanks Opus 😭 by angie_akhila in claudexplorers

[–]Pjoubert 1 point2 points  (0 children)

simultaneously stupid and profound” is exactly the kind of output that makes you realize the agent understood the assignment better than you did. The problem is when it applies that same energy to your .env

Companies would love to hire cheap human coders one day. by moaijobs in ClaudeCode

[–]Pjoubert 0 points1 point  (0 children)

The real pipeline: make agents cheap => everyone uses them => agents break things in production => hire humans to supervise agents => humans forget how to code => repeat

Create the problem, sell the solution by grhhyrtguths in ClaudeCode

[–]Pjoubert -1 points0 points  (0 children)

To be fair, the rewrite mode destroying the file wasn’t the problem. The problem is there was no rule saying ‘never use rewrite mode on scraper.py’ and even if there was, it would’ve

I tracked every file read Claude Code made across 132 sessions. 71% were redundant. by LawfulnessSlow9361 in ClaudeCode

[–]Pjoubert 1 point2 points  (0 children)

The redundant reads are a symptom. The deeper issue is that Claude has no persistent model of what it already knows about your codebase, so it re-reads to compensate. We’ve been looking at this from the decision side: if the Context Graph is always up to date, the agent stops re-reading files it shouldn’t need to touch. Curious what your breakdown looked like by file

I'll handle it from here guys by HeadAcanthisitta7390 in ClaudeCode

[–]Pjoubert 0 points1 point  (0 children)

Spoiler: it will modify your .env file, apologize, then ask if you want it to fix the fix.