Session Memory Feature Introduced in Claude Code

The latest versions of Claude Code introduce a new feature: Session Memory. Designed to assist developers with managing larger interactive sessions, it automatically generates and maintains a summary.md file in each project directory. While disabled by default, you can enable and customize it using tweakcc.
Key Details
When enabled, Session Memory creates a summary.md file located at ~/.claude/projects/{sanitized-project-path}/{session-id}/session-memory/summary.md. This file is updated based on specific thresholds: session size reaching 10k tokens and 3 tool calls, with subsequent updates occurring after 5k additional tokens and 3 more tool calls.
The tweakcc tool allows customization of these thresholds using environment variables:
CC_SM_MINIMUM_MESSAGE_TOKENS_TO_INIT=200– Tokens required before first extraction; defaults to 10,000.CC_SM_MINIMUM_TOKENS_BETWEEN_UPDATE=200– Tokens required between updates; defaults to 5,000.CC_SM_TOOL_CALLS_BETWEEN_UPDATES=0– Tool calls required between updates; defaults to 3.CC_SM_PER_SECTION_TOKENS=3000– Max tokens for a section before a warning; defaults to 2,000.CM_SM_TOTAL_FILE_LIMIT=12000– Max tokens for the whole summary; default is 12,000.
Enabling the session memory feature involves running npx tweakcc@latest --apply and setting the necessary environment variables. This functionality targets developers handling medium to large interactive sessions where comprehensive activity tracking is beneficial.
📖 Read the full source: r/ClaudeAI
👀 See Also

23 Agent Skills for iOS 26 Development with SwiftUI and Swift 6.2
A developer created 23 agent skills targeting iOS 26+ and Swift 6.2 to address hallucination issues with deprecated APIs and outdated patterns. The skills cover SwiftUI, SwiftData, StoreKit 2, push notifications, networking, concurrency, accessibility, localization, WidgetKit, MapKit, and more.

Chrome Extension Adds Live Preview to Claude Code Web
A Chrome extension called Claude Code Preview adds live preview functionality to Claude Code Web, similar to Lovable and other 'vibecoding' sites, allowing side-by-side viewing of deployments.

Council: A Structured Dialogue Framework for Claude
Council — A Crucible is a structured dialogue framework that runs inside a single Claude context window, using persona framing to produce four distinct modes of engagement: rigorous interrogation, generative action, lived experience, and unformed intuition.

Scrapling integrated as OpenClaw's scraping backbone
Scrapling, an open-source library that learns page structure and adapts to changes, has been integrated into OpenClaw as its core scraping engine. It's 774x faster than BeautifulSoup with Lxml and supports multiple selector types with async sessions.