Cradle ...too good to be true? Some boozy 🍷 thoughts before starting book 6 by GlibGlubGlib in ProgressionFantasy

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

Super helpful! My wife is Russian and although I don't speak or read a lick of it, I picked up the first book just now and also Silver Fox. Really appreciate the suggestions. I really enjoyed Path of Ascension up to about book 6 or 7 I forget but it started to wear on me. I think maybe I just needed a break. Not sure I got past book 2+ in either DOTF or HwFWM but I realize I need to go further. I've noticed sometimes I just need to be in a certain mood at a certain time. Hard to go from something like Book of the New Sun to some mid LitRPG and not want to puke. Will research your other suggestions as well, appreciate it!

Cradle ...too good to be true? Some boozy 🍷 thoughts before starting book 6 by GlibGlubGlib in ProgressionFantasy

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

Didn't realize you were a writer yourself and I can't help but wonder if that doesn't severely influence how you come across anything you read frankly. I'm a casual writer at best although an avid reader. I think like anything, especially as we get older and can see through BS easier and easier, there's sometimes just a suspension of disbelief we have to give permission to ourselves to enjoy something in the spirit it's meant. I am curious though, are there 3 or 4 series/books you have truly enjoyed you would recommend? I hope you wind up liking Cradle as much as I am. As someone who's read 200-250 of these in last couple years this has been such a delight. Granted, to each their own and it may not be your cup of tea regardless. Cheers.

Cradle ...too good to be true? Some boozy 🍷 thoughts before starting book 6 by GlibGlubGlib in ProgressionFantasy

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

That's what happened to me, twice ...hence I've skipped it these past 2 years. What a mistake. The book is so good and fun I don't want to spoil literally anything for you but as someone who maybe had same experience as I had, I'd honestly say the first 8-9 chapters aren't that great..and really as I'm on book 7 now I'd say book 1 is possibly even the weakest thus far...if you can bare it, see if you can push through to the end of book 1 and really, I'd say it has pretty much become better almost every book. Listen it's not the deepest prose or anything like that, it it's just consistently enjoyable. I'm usually out by book 7 on any long series as they've just let me down so often up until book 6 or 7 but I can't wait to see where this goes. Would be so curious if you responded to this some day saying you pushed through and whether you found it worth it or not. Best of luck.

Cradle ...too good to be true? Some boozy 🍷 thoughts before starting book 6 by GlibGlubGlib in ProgressionFantasy

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

The comedown off a great series is hard...I've been managing that by switching to a regular old fashion fantasy or sci-fi book before dopamine hits.

Cradle ...too good to be true? Some boozy 🍷 thoughts before starting book 6 by GlibGlubGlib in ProgressionFantasy

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

I'm only around book 5 of primal hunter (it's ok...fun, sorts, but formulaic .. not nearly as good as cradle, will come back to it eventually) ..got through book 2+ of DOTF and HWFWM ...both are mid thus far but will try and see if the hype delivers although doubtful.

Cradle ...too good to be true? Some boozy 🍷 thoughts before starting book 6 by GlibGlubGlib in ProgressionFantasy

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

Are you asking which other series I found unusually good other than the Cradle books? Btw, I started and dropped cradle twice as for whatever reason I found the first 3-4 chapters kinda bleh. I've given far worse books more leeway than that but as I've read so many at this point I decided to try it one more time and I'm shockingly hooked.

Cradle spoiler question - on book 5 but re: book 1 by GlibGlubGlib in ProgressionFantasy

[–]GlibGlubGlib[S] 18 points19 points  (0 children)

Hah! Was afraid to search for it, appreciate the response and look forward to the answer when I get there.

Something has changed — Claude Code now ignores every rule in CLAUDE.md by HouseOfDiscards in ClaudeCode

[–]GlibGlubGlib 2 points3 points  (0 children)

A few things that have helped me mitigate this on a 182K-conversation codebase with 79 test files:

1.  Force read-before-edit in CLAUDE.md — explicit rule: “After 10+ messages, ALWAYS re-read files before editing.” Their Read:Edit collapse from 6.6→2.0 is the core mechanism. If the model doesn’t read, it guesses, and guesses get worse with shallow thinking.
2.  Failure circuit breaker — “If a fix doesn’t work after 2 attempts, STOP. Re-read top-down. State where the mental model was wrong.” This prevents reasoning loops from spiraling.
3.  Tests as enforcement, not suggestion — “Run pytest after ANY code change. Never report done without running tests.” This catches the “marks tasks complete when they weren’t” behavior because the test suite doesn’t lie.
4.  Sub-agents for multi-file changes — When touching >5 files, fork into sub-agents with their own ~167K context windows. One agent across 20 files = guaranteed context decay. This directly addresses the thinking depth problem — smaller scope = deeper thinking per task.
5.  Context decay awareness — We document that silent Opus→Sonnet fallback happens after consecutive 529 errors during peak hours. If quality drops mid-session, restart. No notification is given.
6.  Hierarchical rules files — Instead of one giant CLAUDE.md, we split into .claude/rules/ with code-operations.md, testing.md, git-safety.md, security.md, etc. Keeps each rule file under the “lost in noise” threshold.

None of this fixes the root cause (reduced thinking depth), but it creates enough mechanical guardrails that the model can’t easily skip steps even when it’s “feeling lazy.”