AI FROM MY POV
ENع

What I Added After Running This Setup for Real

TL;DRA setup that works in a demo breaks in a long session. What fixed it: a handoff file so context running out stops costing you the session, a memory index split by topic so it actually gets read, one isolated workspace per task, a rule that nothing gets claimed without being checked, a sweep after every change, and hooks for anything that must happen every single time.
Do I need the eight episodes first, or can I start here?

You can read this on its own, but it'll make more sense after the series. Everything here is a fix for a problem you only hit once the basic setup is running on real work — if you haven't built the vault, the rules file, and the memory habit yet, these problems haven't found you yet.

Is this specific to Claude Code?

No. Every one of these six is a pattern, not a feature. A handoff file is a file. An isolated workspace is a git worktree. A verification rule is a line in your rules file. They work with any AI that reads and writes files and runs commands.

What if I only do one of these?

Do the handoff file. It's the cheapest to set up and it's the one that saves whole sessions instead of minutes. Everything else is an improvement; that one is the difference between losing an afternoon's context and not losing it.

Isn't a rule that says 'check before you claim' obvious?

It's obvious and it still gets skipped, by the AI and by me. That's exactly why it has to be written down as a rule instead of assumed as good sense. The value isn't the idea, it's that it's in the file the AI reads before it does anything.

Share

Related