Ralph Session Backup
This skill provides a script to backup Ralph sessions with versioning support. Each session maintains multiple timestamped backups, organized under repository-specific folders to avoid naming conflicts between different repositories.
Usage
To backup a specific session:
- •First, resolve the skill directory location (this skill's folder containing SKILL.md)
- •Navigate to the repository root directory where .ralph-sessions exists
- •Run the backup script with a path resolved relative to the skill directory:
python3 <skill_directory>/scripts/backup_session.py <session_name>
Important: The script path must be resolved relative to the current skill directory location. This requires first determining where this skill is installed (e.g., in personal Copilot folders like .claude, .copilot, etc.) before executing the script.
Versioning Structure
The script creates a versioned backup structure:
SwarmSessions/
└── <repo_name>/
└── <session_name>/ # Session folder (YYMMDD-HHMMSS)
├── backup_YYMMDD-HHMMSS/ # Individual backup versions
├── latest-win/ # Windows junction point -> latest backup
└── latest-linux/ # Linux symlink -> latest backup
Command Options
- •
python3 backup_session.py <session_name>- Create a new versioned backup - •
python3 backup_session.py <session_name> --list- List all existing versions - •
python3 backup_session.py <session_name> --cleanup=N- Keep only the last N versions (default: 5) - •
python3 backup_session.py <session_name> --get-latest-path- Print the path to the latest session version (platform-specific)
Recovery
To restore from a specific version:
- •Navigate to
SwarmSessions/<repo_name>/<session_name>/ - •Copy the desired
backup_YYMMDD-HHMMSSfolder back to.ralph-sessions/<session_name> - •Or use
latest-win/(Windows) orlatest-linux/(Linux/WSL) for the most recent backup
Cross-Platform Access
The script creates platform-specific link variants:
- •
latest-win/: Windows junction point (transparent directory link, no admin rights needed) - •
latest-linux/: Linux symlink (works in WSL and native Linux)
Both links point to the most recent backup and are created regardless of the current platform. If link creation fails, a warning is shown but the backup still succeeds.
Requirements
- •Python 3.8 or higher
- •The session folder must exist in
.ralph-sessions - •Write access to the Google Drive folder
- •Cross-platform: Works on Windows and WSL (backs up to Windows filesystem)