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

推荐订阅源

T
The Blog of Author Tim Ferriss
罗磊的独立博客
月光博客
月光博客
GbyAI
GbyAI
腾讯CDC
G
Google Developers Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
Engineering at Meta
Engineering at Meta
A
About on SuperTechFans
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
aimingoo的专栏
aimingoo的专栏
C
Check Point Blog
Y
Y Combinator Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Azure Blog
Microsoft Azure Blog
I
InfoQ
雷峰网
雷峰网
B
Blog RSS Feed
美团技术团队
M
MIT News - Artificial intelligence
有赞技术团队
有赞技术团队
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
Claudelab: a manually-gated alternative to Anthropic's ag...
이종국 (barw) · 2026-05-16 · via DEV Community

A disclaimer before anything else: this is not a framework, and not a
product. It's a handful of markdown conventions plus one small Python script —
a personal habit for keeping my own Claude Code setup from rotting. Later in
this post I put it next to Anthropic's "Dreaming"; I want to be clear up front
that the comparison is about a shared problem, not a shared scale. If "a few
markdown files" sounds too small to be worth your time, that's a fair call —
feel free to bail here.

If you run long-lived projects through Claude Code, you've probably noticed its
memory system (a MEMORY.md index plus topic files) is genuinely useful — and
also that it rots.

After a few months of daily use across several projects, I kept hitting the same
three failure modes:

  1. Audit inflation. You start logging decisions ("tried X, didn't work"),
    encoding rules ("always typecheck before push"), recording context. Then one day
    you notice you spend more time documenting decisions than making them. Memory
    files multiply. Cross-references break.

  2. Project pollution. A throwaway meta-experiment — "let me check if this MCP
    server works" — leaks into a real project's commit history and workspace. Six
    months later you can't tell signal from scratchpad.

  3. Rule drift. You write a governance rule on Monday. On Tuesday you bypass it
    with "this time is different." The rule was never wrong; you just stopped
    enforcing it.

I built a small workbench pattern to fight all three. It's called claudelab,
and it's deliberately boring: a few markdown conventions and one Python script.

  • Audit inflation cap — an explicit per-session limit on new memory files. Hit it, and only justified exceptions (a real incident, an external audit) let you add more. It forces you to stop documenting and go build.
  • REJECTED archive — every killed idea is logged with a reason and a reversal trigger. You don't get to re-litigate a dead idea without new evidence.
  • Closed-loop self-audit — a health-check script finds broken cross-references, orphan files, and stale entries. The system stays consistent without a human scanning it.
  • Track-separated governance — real projects, meta-experiments, and research each live under different rules. Strict where it matters, loose where it doesn't.

Here's the part that made me write this up.

While building claudelab, I didn't know Anthropic had just shipped Dreaming —
a managed feature, announced in May 2026, that does automated between-session
memory consolidation: it reviews past sessions, prunes stale notes, merges
duplicates, resolves contradictions, and writes structured playbooks for future
runs. The legal-AI company Harvey reportedly saw task completion rates jump ~6x
after adopting it.

When I found out, my first reaction was "well, that's the same problem." And it
is — but the two solutions sit at opposite ends:

Anthropic Dreaming claudelab
Memory consolidation automatic, between sessions manual, explicitly gated
Where it runs managed / hosted your local files, your repo
Recurring-mistake surfacing learned, implicit REJECTED.md — explicit reason + reversal trigger
Stops over-documentation not a stated goal audit inflation cap is the core constraint
Auditable yes (plain-text playbooks) yes (plain-text, in your git)

To be clear about the timeline: Dreaming was announced before I'd finished
claudelab's tooling. This isn't a priority claim — it's independent convergence.
The interesting thing isn't who was first; it's that the problem is real enough
that two people hit it and picked opposite trade-offs.

Dreaming optimizes for scale and autonomy — agents that get better
unsupervised, the longer they run. claudelab optimizes for one human staying
in the loop without drowning in audit overhead. If you run fleets of managed
agents, Dreaming is the answer. If you want a transparent, self-hosted workbench
where every memory change is something you consciously approved, that's
claudelab — and the two aren't mutually exclusive.

One deliberate non-feature: claudelab does not automate memory updates with
hooks. That sounds backwards for a "self-evolving" system, but auto-creating
memory is just audit inflation with extra steps — rule drift happens faster than
a human notices. Manual gating is the feature.

It's MIT, it's alpha, and it's a transferable pattern more than a product. If you
run agents long-term, I'd genuinely like to know whether the audit-inflation cap
resonates — or whether I've built an elaborate solution to a problem only I have.

Repo: https://github.com/whdrnr2583-cmd/claudelab