惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 三生石上(FineUI控件)
月光博客
月光博客
人人都是产品经理
人人都是产品经理
Google DeepMind News
Google DeepMind News
M
MIT News - Artificial intelligence
Vercel News
Vercel News
MyScale Blog
MyScale Blog
爱范儿
爱范儿
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
H
Help Net Security
Last Week in AI
Last Week in AI
阮一峰的网络日志
阮一峰的网络日志
酷 壳 – CoolShell
酷 壳 – CoolShell
L
LangChain Blog
罗磊的独立博客
Stack Overflow Blog
Stack Overflow Blog
宝玉的分享
宝玉的分享
博客园 - 聂微东
云风的 BLOG
云风的 BLOG
J
Java Code Geeks
博客园 - 叶小钗
D
Docker

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
What 60+ Claude Code memory entries taught me about solo ops
solosre · 2026-06-22 · via DEV Community

I run a paid infrastructure service. Alone. No co-founder, no on-call rotation, no senior engineer to escalate to. My only collaborator is Claude Code, and after about a year, my persistent memory has grown to 60+ entries.

Those entries have become more valuable than any runbook I've written. They've also taught me — painfully — what makes memory architecture work and what makes it quietly fail.

If you're running anything solo with an AI agent, here are five lessons I wish I'd burned into my brain on day one.

1. Write the why, not the what

The first instinct when you start using persistent memory is to log what you did. "Migrated service X from tool A to tool B." "Switched protocol from X to Y."

Six months later, when something breaks, that information is worthless. You don't need to know what you did — git log and git blame already tell you that. You need to know why you made that choice. What constraint forced it. What you ruled out.

Real example. The bad version of an entry I once wrote:

Switched the worker pool from Docker containers to systemd units on host.

Tells me nothing my git history doesn't. The rewritten version:

systemd units on the host instead of Docker containers on this VPS provider. Why: the provider runs aggressive kernel-wide OOM scoring across tenants; containers were getting reaped by oom-killer triggered by other customers' workloads. systemd processes survive because they're scored as system processes. How to apply: any VPS where dmesg | grep -i oom shows kills from PIDs you don't recognize — don't run containers there, run systemd.

That one entry has saved me three rebuilds. Because the next time I'm tempted to "just dockerize it, it'll be cleaner," the memory entry says: no, you already learned this, you'll be back here in a week.

The pattern: always include Why: and How to apply: lines. If a memory entry can't answer those two questions, delete it.

2. Memory rots — prune or pay

About six months in, I did a memory audit. Of 60 entries, 14 referenced things that no longer existed. A file path that had been renamed. A function that had been deleted. An architecture I'd since replaced.

The cost wasn't just irrelevant context. It was actively misleading context. The agent would surface a memory entry that pointed to a file path, the file wouldn't exist, and the agent would either dead-end or fabricate.

I tried scheduled audits. Didn't work — I'd skip them. What worked: every time I read a memory entry mid-task, I make a snap call — still true? If yes, leave it. If no, edit or delete in that moment.

Memory isn't a backup. It's a live dependency. You either keep it in your operations loop or it becomes lore.

3. Feedback memories are the highest leverage. And the hardest to write.

My best memory entries don't describe systems. They describe what not to do.

"Don't run X on Y." "Avoid this approach because we tried it last quarter and it cost three nights of debugging." "This UI shortcut looks fast but breaks under condition Z."

These entries save the most time because they prevent re-discovering the same trap. But they're also the entries I have to actively force myself to write. Because when you've just spent four hours debugging something, the impulse is: I fixed it, I'm done, ship it. Not: let me sit here for another five minutes and document what I almost didn't notice.

I now ask, after any frustrating debugging session: did I just learn something my past self would have wanted to know? If yes — entry. Even if it's two lines.

These are the entries with the highest savings per character written. They are also the easiest to skip.

4. The index entry decides retrieval. Not the file.

I keep a MEMORY.md that's an index — title plus a one-line hook for each memory file. After dozens of entries, I realized something uncomfortable:

The index entry matters more than the file content.

Why? Because the index is what the AI sees first. The body of the file is only loaded when the agent decides to read it. And the agent's decision is based entirely on the index description.

If webhook_replay.md is described as "webhook stuff", the AI never opens it. If described as

Stripe webhook replay: idempotency-key collisions vs. event_id reuse; what to do when a partial DB failure leaves the worker in an unknown state; the one query that tells you if it's safe to re-fire

— the AI opens it in exactly the right moments.

The memory file might be 500 words. The index entry is 100 characters. The 100 characters do all the retrieval work.

When I write a new memory entry now, I spend more time on the index line than I do on the file body. This feels backwards. It isn't.

5. Indexes have a context budget

This one I had to learn the hard way: my agent truncates MEMORY.md after a certain line count. For me, lines after 200 silently drop out of context. They might as well not exist.

This means MEMORY.md isn't just an index — it's a layout problem. Which 200 lines deserve to live in every conversation? Which entries are good enough to keep on disk but not critical enough to load every time?

Pruning isn't only about deleting things that became wrong. It's about deciding what earns context.

My rule now: if I haven't read or used a memory entry in two months and it's not load-bearing, the index line moves down or out. The file stays on disk for archaeology. The index line is sacred real estate.

What I'm doing with all this

I'm packaging the schema I converged on — the memory templates, the MEMORY.md layout, the prompts I use to trigger high-signal writes, the audit rituals — into a kit for solo operators using Claude Code.

It's the kit I wish I'd had on day one. It's at solosre.dev.

If any of these failure modes feel familiar — if your AI memory has started to drift, mislead, or quietly stop pulling its weight — there's a structured way out of it. You don't have to learn this through 60 entries the way I did.


If you're running solo with Claude Code (or any agent with persistent memory), I'd love to hear what's worked and what's broken for you in the comments. The lesson nobody else will tell you is usually the one that saves the most pain.