Claude Proposal: Scope Memory & Hermetic Instance Isolation

A heavy Claude user across 13+ sessions has published a detailed formal proposal on r/ClaudeAI addressing two structural gaps: scoped memory and hermetic instance isolation. The user argues Claude currently has no concept of scoped state — anything from any conversation can surface anywhere, model updates happen silently, and there's no way to inspect what influences a session before it starts.
Global / Local Memory Scoping
Borrowed from programming language scoping, the proposal defines four memory levels:
- Global scope — persists across all sessions (as today, but explicit and inspectable)
- Local scope — session-bound, evaporates on close, never propagates
- Project scope — namespaced to a project, invisible outside it
- Explicit promotion/suppression — users decide what moves to global, and can run a fully memory-blind session when needed
Hermetic Instance Model
While LLM weights can't be isolated like VMs, the context state (memory, system prompt, model version, conversation history) can. The proposal includes:
- Model version pinning — opt in to updates, never forced
- State manifest — inspect exactly what's being injected before a session begins
- Snapshot and restore — reproducible sessions for debugging, research, or production pipelines
- Agentic blast radius scoping — declared permission boundaries for when Claude takes real-world actions
Why It Matters
Claude is already used in agentic pipelines, long-running projects, and production workflows. The same discipline applied to databases, code deployments, and APIs — versioning, scoping, auditability — should apply to Claude. Currently it doesn't, and that's a ceiling on trust as infrastructure.
The full proposal (attached as Markdown on Reddit) is addressed to Anthropic leadership. The author seeks community support to reach Anthropic's product and research teams.
📖 Read the full source: r/ClaudeAI
👀 See Also

Startup Bookkeeper: Free Claude Skill for Small Business Tracking
Startup Bookkeeper is an open-source Claude AI skill that helps bootstrapped founders track expenses by categorizing transactions from plain English descriptions, processing receipt photos with OCR, and generating dashboards or P&L statements.

WebMCP browser APIs could reduce web scraping needs for AI agents
Google's WebMCP introduces browser APIs that let websites register tools for AI agents to call directly, potentially eliminating much of the DOM scraping and anti-bot workarounds developers currently build.

Reddit user measures MCP token overhead: 67K tokens consumed before any question
A developer measured their MCP server token overhead at 67,000 tokens consumed before typing a single question, with Playwright MCP using 13,600 tokens and GitHub MCP using 18,000 tokens idle. They replaced MCP with skills and CLI tools for lower context costs.

Using a Local LLM as a Claude Code Subagent to Reduce Context Usage
A Reddit user demonstrates how Claude Code can delegate tasks to a local LLM running via LM Studio, keeping file content out of Claude's context. The setup uses a ~120-line Python script with LM Studio's tool-calling API to handle file operations locally.