Exporting AI Agent Memories Using Claude's Import Function

Memory Export Prompt for AI Agents
A user on r/openclaw shared a method for exporting stored memories from AI agents like ChatGPT and Claude and importing them into OpenClaw. The approach uses Claude's import function as a starting point.
Key Details
The source provides a specific prompt to use with AI agents to extract stored memories. The prompt requests:
- All memories stored about the user
- Any context learned from past conversations
- Output in a single code block for easy copying
The format specified is: [date saved, if available] - memory content
The prompt explicitly requests coverage of:
- Instructions about response tone, format, style, 'always do X', 'never do Y'
- Personal details: name, location, job, family, interests
- Projects, goals, and recurring topics
- Tools, languages, and frameworks used
- Preferences and corrections made to the agent's behavior
- Any other stored context not covered above
The prompt emphasizes: "preserve my words verbatim where possible" and "Do not summarize, group, or omit any entries."
After the code block, the agent should confirm whether that is the complete set or if any memories remain.
The user mentions finding this function "under capabilities in Claude" and using it to export memories from both ChatGPT and Claude, then pasting them into their OpenClaw bot.
📖 Read the full source: r/openclaw
👀 See Also

Claude Usage Bar Colorizer Browser Extension Built with Claude Code
A developer built a browser extension that recolors Claude's usage bars from green to yellow to red based on percentage thresholds, adds a popup with live usage data, and allows customization of thresholds and colors. The extension only runs on Claude's usage page, stores settings locally, and makes no external network requests.
TextGen (text-generation-webui) Becomes Native Desktop App with Portable Builds
TextGen, the open-source alternative to LM Studio, has evolved from a web UI to a no-install desktop app for Windows, Linux, and macOS with portable builds, full privacy, and advanced quantization support.

Claude Debugs and Fixes Its Own MCP Filesystem Server UNC Path Bug on Windows
A developer used Claude Opus to diagnose and patch a bug in the MCP Filesystem Server where UNC network share paths on Windows failed for subdirectory operations. The fix addresses a path validation issue that prevented access to files and folders within UNC shares.

Agint: A Rust CLI tool that detects contradictions in AI agent instruction files
Agint is a free, open-source Rust CLI tool that scans instruction files like CLAUDE.md and AGENTS.md for contradictions, missing file references, and sync issues. It uses static analysis for structural problems and optionally calls Claude API for semantic contradiction detection.