๐ง Claude AI Code EnhancementsMay 26, 2026โ
Tests passing
Claude Memory Manager
A Python CLI and library tool to help developers manage memory usage for Anthropic's Claude AI. The tool enables developers to optimize memory usage by segmenting prompts and responses, tracking memory utilization, and clearing memory when limits are reached. This is especially useful for long coding sessions or iterative development workflows.
What It Does
- Monitor system memory usage.
- Segment large prompts into smaller chunks for efficient processing.
- Simulate clearing memory.
- Interact with Claude AI using memory-efficient chunks.
Installation
Install the required dependencies using pip:
pip install psutil tqdmUsage
Run the tool from the command line:
python claude_memory_manager.py --prompt "Your prompt here" --max-chunk-size 2000Options
--monitor-memory: Monitor memory usage.--max-memory: Set the maximum memory limit in MB (default: 8000).--clear-memory: Simulate clearing memory.--prompt: Specify the prompt to send to Claude AI.--max-chunk-size: Set the maximum chunk size in bytes (default: 2000).
Source Code
import argparse
import logging
import psutil
from tqdm import tqdm
# Removed anthropic import as it caused issues
def setup_logging():
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(levelname)s - %(message)s'
)
def monitor_memory(max_memory):
"""Monitor system memory usage and log warnings if usage exceeds limits."""
memory = psutil.virtual_memory()
logging.info(f"Total memory: {memory.total / (1024 ** 2):.2f} MB")
logging.info(f"Available memory: {memory.available / (1024 ** 2):.2f} MB")
if memory.available < max_memory * 1024 ** 2:
logging.warning("Memory usage is nearing the limit!")
return False
return True
def segment_prompt(prompt, max_chunk_size):
"""Segment a large prompt into smaller chunks."""
chunks = []
current_chunk = []
current_size = 0
for line in prompt.splitlines():
line_size = len(line.encode('utf-8'))
if current_size + line_size > max_chunk_size:
chunks.append('\n'.join(current_chunk))
current_chunk = []
current_size = 0
current_chunk.append(line)
current_size += line_size
if current_chunk:
chunks.append('\n'.join(current_chunk))
return chunks
def clear_memory():
"""Simulate clearing memory."""
logging.info("Memory cleared.")
def interact_with_claude(prompt, max_chunk_size):
"""Simulate sending prompt to Claude AI in memory-efficient chunks."""
chunks = segment_prompt(prompt, max_chunk_size)
responses = []
for chunk in tqdm(chunks, desc="Processing chunks"):
try:
# Simulate a response
response = {"completion": f"Processed chunk: {chunk}"}
responses.append(response['completion'])
except Exception as e:
logging.error(f"Error interacting with Claude AI: {e}")
responses.append("Error occurred")
return responses
def main():
setup_logging()
parser = argparse.ArgumentParser(
description="Claude Memory Manager: Optimize memory usage for Claude AI sessions."
)
parser.add_argument('--monitor-memory', action='store_true', help="Monitor memory usage.")
parser.add_argument('--max-memory', type=int, default=8000, help="Maximum memory limit in MB.")
parser.add_argument('--clear-memory', action='store_true', help="Clear memory.")
parser.add_argument('--prompt', type=str, help="Prompt to send to Claude AI.")
parser.add_argument('--max-chunk-size', type=int, default=2000, help="Maximum chunk size in bytes.")
args = parser.parse_args()
if args.monitor_memory:
if not monitor_memory(args.max_memory):
logging.warning("Memory usage exceeded the limit!")
if args.clear_memory:
clear_memory()
if args.prompt:
responses = interact_with_claude(args.prompt, args.max_chunk_size)
for i, response in enumerate(responses, start=1):
logging.info(f"Response {i}: {response}")
if __name__ == "__main__":
main()
Community
Downloads
ยทยทยท
Rate this tool
No ratings yet โ be the first!
Details
- Tool Name
- claude_memory_manager
- Category
- Claude AI Code Enhancements
- Generated
- May 26, 2026
- Tests
- Passing โ
- Fix Loops
- 2
Quick Install
Clone just this tool:
git clone --depth 1 --filter=blob:none --sparse \ https://github.com/ptulin/autoaiforge.git cd autoaiforge git sparse-checkout set generated_tools/2026-05-26/claude_memory_manager cd generated_tools/2026-05-26/claude_memory_manager pip install -r requirements.txt 2>/dev/null || true python claude_memory_manager.py