From ableton-save
Saves current Ableton Live project to specified <path> via AppleScript on macOS. Opens Save As dialog, auto-navigates and enters filename, awaits Enter key, returns full .als path.
How this command is triggered — by the user, by Claude, or both
Slash command
/ableton-save:save-live-set <path>This command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# Ableton Live Save Command This command saves the current Ableton Live project to a specified file path using AppleScript automation on macOS. ## When to Use Use this command when you need to: - Save the current Ableton Live project to a specific location - Automate saving Ableton projects as part of a workflow - Create backups of your Live sets ## How It Works The command uses Python and AppleScript to: 1. Activate Ableton Live 2. Open the Save As dialog (Cmd+Shift+S) 3. Navigate to the target directory using Cmd+Shift+G 4. Enter the filename automatically 5. Wait for you to press En...
This command saves the current Ableton Live project to a specified file path using AppleScript automation on macOS.
Use this command when you need to:
The command uses Python and AppleScript to:
Note: Ableton Live automatically creates a project folder (e.g., "song Project/") and the script correctly returns the full path including this folder.
/ableton-save:save-live-set /path/to/project.als
/ableton-save:save-live-set ~/Music/Ableton/Projects/song.als
/ableton-save:save-live-set ../backups/my-song.als
path (required): The file path where you want to save the Ableton Live project
.als extension is optionalParse the path argument from the user's request
Execute the save script
python3 /Users/krfantasy/.claude/plugins/cache/claude-plugins-official/plugin-dev/f1be96f0fb58/scripts/ableton_save.py <path>Handle the result
Save to an absolute path:
User: /ableton-save:save-live-set /Users/jane/Music/Ableton/Projects/song-v2.als
→ Opens Save As dialog, navigates to the Projects folder, enters "song-v2"
Save to a relative path:
User: /ableton-save:save-live-set ../backups/test.als
→ Opens Save As dialog, navigates to ../backups, enters "test"
song-v2 Project/).als)npx claudepluginhub mattypie/alsdiff --plugin ableton-save/sessionRetrieves and displays a structured overview of the current Ableton Live session, including transport, tracks, scenes, and master section.
/createCreates a new JUCE audio plugin project from the JUCE-Plugin-Starter template. Checks and optionally installs required tools like CMake and GitHub CLI on macOS or Windows, with --visage and --no-github options.
/buildBuilds a macOS/iOS Shortcut from a natural-language brief, using the shortcut-builder agent to design, validate, sign, and archive the shortcut.
/enable-auto-saveRegisters SessionEnd hook in Claude Code config to automatically run /oh-my-obsidian:session-save on session exit, enabling session auto-save to Obsidian vault.