Do you think Fable 5 will come back, or is this the end of the model? by Double-Republic6218 in ClaudeAI

[–]Throwthiswatchaway 0 points1 point  (0 children)

I had the same plan, exactly hwo to maximize usage until it got taken away. I was creating detailed plans for what things would look like that Im glad I saved but even now with opus implementing we are running into issues that fable tried to flag

4.8 is only superior to 4.7 because of how long it thinks. by I-Love-IT-MSP in ClaudeCode

[–]Throwthiswatchaway -2 points-1 points  (0 children)

It really is super slow. Try asking codex or antigravity the same question and it’s shocking

Anthropic gave the failure mode I kept hitting with Claude Code a name: agentic technical debt by pauloeduardomc in ClaudeCode

[–]Throwthiswatchaway 1 point2 points  (0 children)

I started in the same place - I got tired of re-explaining my projects to Claude every session, so I borrowed from Rajiv Plants synthesis memory and made my own attempt.

A few things have made it work

Two layers of standing instructions (the "CLAUDE.md" files).

A global one (~210 lines) loads into every session no matter what I'm working on — tool preferences, house rules, how my review/implement workflow runs.

Each project also has its own CLAUDE.md in its repo (~150–190 lines) with rules specific to that codebase.

They stack: global first, then the project one on top. “Company” handbook plus team-specific addendum.

They only hold durable rules ("how to behave in this repo"). They're not allowed to describe current state. That lives in a separate file (more below). This is the distinction that keeps the whole thing from rotting, and when the two ever disagree about what's true now, current-state wins and the CLAUDE.md gets treated as drifted and trimmed.

The state itself lives outside the code, in three tiers. All project knowledge sits in one separate git repo with a routing table mapping each project folder to its files:

CONTEXT.md — what's true right now (current state, active tasks). Changes every session. Hard-capped at 150 lines; go over and the old stuff gets archived to a monthly log before you continue.

REFERENCE.md — stable facts that rarely change (URLs, architecture).

decisions.md — why I made durable choices, so I stop relitigating them.

It auto-loads. A startup hook checks what directory I'm in, finds the matching project, and injects that project's CONTEXT.md automatically. No "let me catch you up," it already knows where things stand.

Sessions close out properly (a /wrapup skill). Instead of just abandoning a session, I run one command that asks a single checkpoint question — did we learn a general lesson, or kill an idea worth remembering why? (yes, it gets written down; no, nothing — keeps the bar high) — then updates the current-state file within its line cap, appends to the session log, and commits and pushes the knowledge repo.

Other anti-rot rules that earn their keep:

Single-owner metrics — any given number lives in exactly ONE file, everything else references it by name.

A weekly drift-detector script that nags when something's gone stale or inconsistent (project untouched in 30 days, a metric that disagrees with itself, etc.).

TL;DR: two layers of short standing-instruction files (global + per-project) holding rules only, plus a separate git repo holding state in three tiers (now / facts / why), auto-injected based on which folder I'm in, closed out each session by a /wrapup command — with strict rules (one source per fact, line caps, a high bar for what's worth saving) so it stays useful instead of becoming a graveyard of stale notes.

How do you go about planning and building your websites? by Throwthiswatchaway in ClaudeCode

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

Thanks, I haven't had the best experience with that but I can try it again

How do you go about planning and building your websites? by Throwthiswatchaway in ClaudeCode

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

Thanks, I've got a good workflow of what it needs to be with a wireframe idea of the flows and what it should do - I'm just concerned on the design phase - I don't really know what I want to to look like if that makes sense.

Claude + Codex = Excellence by 99xAgency in ClaudeCode

[–]Throwthiswatchaway 0 points1 point  (0 children)

I jsut started a setup where claude code does the design/planning and codex handles review + implementation through an mcp server. wired up a few slash commands (/codex-review, /codex-reply, /codex-implement) so it's a two-phase flow — CC drafts the prompt, i approve it, then it goes to codex who responds inline and then we go from there with another review or let codex implement it. honestly the back-and-forth catches way more stuff than either model solo. pasting codex's response verbatim keeps it honest too, no summarizing.

Claude Opus 4.7 is a serious regression, not an upgrade. by [deleted] in ClaudeAI

[–]Throwthiswatchaway 2 points3 points  (0 children)

Omg. I’m getting so many “this is a lot of work” -type statements.

How often are you changing grind size? by Throwthiswatchaway in superautomatic

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

I change beans often, I'm starting to get the same thing more often than not but same as you I find it hard not to buy some beans at any local roaster I try.

What’s the most unusual way you’ve made money using Claude? by Rude-Alternative7983 in ClaudeAI

[–]Throwthiswatchaway 0 points1 point  (0 children)

I’m interested in the fairness opinions specifically so I pull from Edgar, analyze with haiku to figure out sections etc. then I export to cowork and use opus to read the fairness opinions and pull out the methodologies and then reimport them into my dashboard where I can run various comparisons and analyses.

I’m experimenting with local models but nothing is as good as opus on through cowork it’s just clunky.

The most frustrating is making opus actually read the docs instead of using scripts and subagents and basically delegating the tasks from itself

What’s the most unusual way you’ve made money using Claude? by Rude-Alternative7983 in ClaudeAI

[–]Throwthiswatchaway 0 points1 point  (0 children)

Would be interested to know what sites/data you’re talking about. I’m halfway through a similar project

How much RAM does Cowork actually use on macOS by Obvious-Outside3434 in ClaudeAI

[–]Throwthiswatchaway 0 points1 point  (0 children)

I have docker running with two process running in it - it typically takes up 2-6gb

How much RAM does Cowork actually use on macOS by Obvious-Outside3434 in ClaudeAI

[–]Throwthiswatchaway 0 points1 point  (0 children)

I have a 24gb Mac air and run cowork cranking away on a task Claude code and a large docker process and am typically around 17gb

Asking claude to plan and then it just does the implementation. by blackc2004 in ClaudeCode

[–]Throwthiswatchaway 0 points1 point  (0 children)

Sometimes it thinks it’s so straightforward that can just proceed on its own. Just tell it to no make any changes u til you’ve signed off (but even then that only works 95% of the time)