This utility helps you back up and consolidate your Cascade conversations from the Windsurf IDE as markdown files. It may also work with other AI coding platforms, though this has not been tested. Backing up conversations from AI coding sessions is crucial, especially as AI models can sometimes produce unexpected results. In particular, when using Windsurf, large conversations can lead to issues such as the IDE failing to start with the message "windsurf failed to start."
You can install the package directly from PyPI:
pip install cascade-backup-utils
Or install from source:
git clone https://github.com/dipaksaraf/cascade-backup-utils.git
cd cascade-backup-utils
pip install -e .
After installation, you can use the command-line tools:
# To backup a conversation:
cascade-backup
# To consolidate all backups:
cascade-consolidate
When the Windsurf IDE encounters issues with large conversations, the common solutions are:
- Continuously press
Ctrl + Shift + P
(Command Palette) and select "Developer: Reload Window." - Delete the Cascade cache folder:
- Windows:
C:\Users\<YOUR_USERNAME>\.codeium\windsurf\cascade
- Linux/Mac:
~/.codeium/windsurf\cascade
- Windows:
However, deleting the cache folder will remove your conversation history. This utility ensures your valuable conversations are preserved and accessible even if you need to clear the cache.
- Manual text selection and copying with retry mechanism
- Automatic timestamp addition
- Clipboard management and content verification
- Clear user instructions and feedback
- Fail-safe mechanism (move mouse to corner to abort)
- Combines multiple backup files into a single conversation
- Removes duplicate content automatically
- Chronological sorting (newest conversations first)
- Cleans up UI messages and system text
- Preserves conversation context and readability
-
Clone the repository:
git clone https://github.com/dipaksaraf/cascade-backup-utils.git cd cascade-backup-utils
-
Create a virtual environment:
python -m venv venv source venv/bin/activate # On Windows use: venv\Scripts\activate
-
Install development dependencies:
pip install -r requirements.txt pip install -r requirements-dev.txt
- Open your Cascade conversation
- Run the backup command:
cascade-backup
- Follow the on-screen instructions:
- Clear any existing text selection
- Select the conversation text you want to backup
- Copy using Ctrl+C
- Press Enter to continue
The script will:
- Clear the clipboard before starting
- Verify the content was copied successfully
- Allow multiple retry attempts if needed
- Save the backup with timestamp
- Run the consolidate command:
cascade-consolidate
The script will:
- Process all backup files in the
backups
directory - Remove duplicate content
- Sort conversations chronologically (newest first)
- Clean up UI messages and system text
- Save everything to
consolidated_conversation.md
By default, backups are stored in your home directory under .cascade_backups
. You can specify a custom directory:
cascade-backup --dir /path/to/backup/directory
The consolidate command supports several options:
# Consolidate with custom output file
cascade-consolidate --output combined_conversations.md
# Keep original timestamps
cascade-consolidate --preserve-timestamps
# Sort by oldest first
cascade-consolidate --sort ascending
All files are stored in the backups
directory:
backups/
├── cascade_backup_20250209_200618.md # Individual backups
├── cascade_backup_20250210_001059.md
├── consolidated_conversation.md # Combined conversations
└── ...
The consolidation process automatically removes common UI elements and system messages:
- "DoneFeedback has been submitted"
- "Start with History Ctrl + ⏎"
- "Press Enter again to interrupt and send a new message"
- Various UI mode indicators (Image, Write, Chat, etc.)
- System status messages
-
Mouse Movement Issues
- Ensure no other applications are controlling the mouse
- Try increasing the delay:
cascade-backup --delay 2
-
Clipboard Problems
- Clear your clipboard before starting
- Check if other applications are monitoring the clipboard
-
File Permission Errors
- Ensure you have write permissions in the backup directory
- Try running with elevated privileges if necessary
Failed to capture clipboard
: Clear your clipboard and try againTimeout waiting for selection
: Increase the timeout with--timeout 60
Invalid backup file format
: Ensure the backup files haven't been modified manually
-
Clipboard Security
- The utility temporarily stores conversation data in your system clipboard
- Clear sensitive information from your clipboard after use
-
File Permissions
- Backup files are created with user-only read/write permissions
- Consider encrypting sensitive backups
-
Data Privacy
- Review conversations before backup to exclude sensitive information
- Be cautious when sharing consolidated backup files
-
Regular Backups
- Back up important conversations immediately
- Consider scheduling regular backups
-
Backup Organization
- Use descriptive filenames
- Maintain separate directories for different projects
- Document the context of important conversations
-
Maintenance
- Regularly consolidate backups to save space
- Archive old backups
- Test backup files periodically
We welcome contributions! Please see our Contributing Guidelines for details.
This project is licensed under the MIT License - see the LICENSE file for details.