# Imported Claude Conversations This directory contains organized imports of Claude conversation histories from multiple projects. ## Quick Stats - **Total Files:** 643 JSONL files - **Total Size:** 285 MB - **Import Date:** 2026-01-17 - **Source:** C:\Users\MikeSwanson\.claude\projects ## Directory Organization ``` imported-conversations/ ├── auto-builder/ # Build automation (217 files, 85 MB) ├── msp-tools/ # MSP infrastructure (94 files, 20.1 MB) ├── auto-claude-variants/ # Auto-coding tools (166 files, 42.5 MB) └── general-work/ # General development (166 files, 138.8 MB) ``` ## Documentation - **INDEX.md** - Complete project summaries and statistics - **IMPORT_MANIFEST.json** - Detailed import metadata and mappings - **README.md** - This file (quick reference) ## Quick Access ### List all conversations ```bash find . -name "*.jsonl" -type f ``` ### Count files by category ```bash find auto-builder/ -name "*.jsonl" | wc -l find msp-tools/ -name "*.jsonl" | wc -l find auto-claude-variants/ -name "*.jsonl" | wc -l find general-work/ -name "*.jsonl" | wc -l ``` ### Search for topics ```bash grep -r "keyword" . ``` ## Integration Ideas These conversations can be: - Indexed into ClaudeTools context recall system - Analyzed for code patterns and solutions - Used to build knowledge base - Searched for past decisions and approaches See INDEX.md for detailed project descriptions and integration opportunities.