livepilot 1.9.2 → 1.9.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10,7 +10,7 @@
10
10
  {
11
11
  "name": "livepilot",
12
12
  "description": "Agentic production system for Ableton Live 12 — 178 tools, 17 domains, device atlas, spectral perception, technique memory, neo-Riemannian harmony, Euclidean rhythm, species counterpoint, MIDI I/O",
13
- "version": "1.9.2",
13
+ "version": "1.9.4",
14
14
  "author": {
15
15
  "name": "Pilot Studio"
16
16
  },
package/AGENTS.md CHANGED
@@ -1,4 +1,4 @@
1
- # LivePilot v1.9.2 — Ableton Live 12
1
+ # LivePilot v1.9.4 — Ableton Live 12
2
2
 
3
3
  ## Project
4
4
  - **Repo:** This directory (LivePilot)
package/CHANGELOG.md CHANGED
@@ -1,9 +1,15 @@
1
1
  # Changelog
2
2
 
3
- ## 1.9.2Rebuild .amxd with v1.9 Bridge (March 2026)
3
+ ## 1.9.4Doc Sync + M4L Analyzer Fix + Full Validation (March 2026)
4
4
 
5
- - Rebuild LivePilot_Analyzer.amxd in Max editor to freeze 3 new plugin parameter bridge commands
5
+ **178 tools, all validated live in Ableton. M4L analyzer fully working.**
6
+
7
+ - Fix: multislider `settype` 0→1 (integer→float) — spectrum bars now render correctly
8
+ - Fix: added `loadbang → 1 → snapshot~` init chain for reliable auto-output
9
+ - Fix: panel z-order for visible UI in presentation mode
6
10
  - Binary-patch `openinpresentation` for presentation mode
11
+ - Rebuilt .amxd with v1.9 bridge (3 new plugin parameter commands frozen)
12
+ - Full live validation: 77 PASS across all 17 domains, FluCoMa 6/6 streams, 255 pytest passing
7
13
 
8
14
  ## 1.9.0 — Scene Matrix, Freeze/Flatten, Plugin Deep Control (March 2026)
9
15
 
package/README.md CHANGED
@@ -80,11 +80,11 @@ Every tool maps directly to an LOM call — no abstraction, no guessing.
80
80
  | Domain | # | Scope |
81
81
  |--------|:-:|-------|
82
82
  | Transport | 12 | playback, tempo, time sig, loop, metronome, undo/redo, cue points, diagnostics |
83
- | Tracks | 14 | create MIDI/audio/return, delete, duplicate, arm, mute, solo, color, routing, monitoring |
83
+ | Tracks | 17 | create MIDI/audio/return, delete, duplicate, arm, mute, solo, color, monitoring, freeze, flatten |
84
84
  | Clips | 11 | create, delete, duplicate, fire, stop, loop, launch mode, warp mode, quantize |
85
85
  | Notes | 8 | add/get/remove/modify MIDI notes, transpose, duplicate, per-note probability |
86
- | Devices | 12 | load by name or URI, get/set parameters, batch edit, racks, chains, presets, toggle |
87
- | Scenes | 8 | create, delete, duplicate, fire, name, color, per-scene tempo |
86
+ | Devices | 15 | load by name or URI, get/set parameters, batch edit, racks, chains, presets, plugin params |
87
+ | Scenes | 12 | create, delete, duplicate, fire, name, color, tempo, scene matrix, selective launch |
88
88
  | Browser | 4 | search library, browse tree, load items, filter by category |
89
89
  | Mixing | 11 | volume, pan, sends, routing, meters, return tracks, master, full mix snapshot |
90
90
 
@@ -95,7 +95,7 @@ Every tool maps directly to an LOM call — no abstraction, no guessing.
95
95
  The M4L Analyzer sits on the master track. UDP 9880 carries spectral data
96
96
  from Max to the server. OSC 9881 sends commands back.
97
97
 
98
- All 139 core tools work without it — the analyzer adds 29 more
98
+ All 146 core tools work without it — the analyzer adds 32 more
99
99
  and closes the feedback loop.
100
100
 
101
101
  <br>
@@ -425,8 +425,8 @@ Windsurf — `~/.codeium/windsurf/mcp_config.json`:
425
425
 
426
426
  Drag `LivePilot_Analyzer.amxd` onto the master track.
427
427
 
428
- Unlocks 20 additional tools: spectral analysis, key detection,
429
- sample manipulation, deep device introspection.
428
+ Unlocks 32 additional tools: spectral analysis, key detection,
429
+ sample manipulation, deep device introspection, plugin parameter mapping.
430
430
 
431
431
  All core tools work without it.
432
432
 
@@ -499,7 +499,7 @@ Check memory before creative decisions. Verify every mutation.
499
499
 
500
500
  <br>
501
501
 
502
- ### Tracks (14)
502
+ ### Tracks (17)
503
503
 
504
504
  | Tool | Description |
505
505
  |------|-------------|
@@ -517,6 +517,9 @@ Check memory before creative decisions. Verify every mutation.
517
517
  | `stop_track_clips` | Stop all clips on track |
518
518
  | `set_group_fold` | Fold/unfold group track |
519
519
  | `set_track_input_monitoring` | Set monitoring mode |
520
+ | `freeze_track` | Freeze track (render devices to audio) |
521
+ | `flatten_track` | Flatten frozen track (commit audio permanently) |
522
+ | `get_freeze_status` | Check if track is frozen |
520
523
 
521
524
  <br>
522
525
 
@@ -572,7 +575,7 @@ Check memory before creative decisions. Verify every mutation.
572
575
 
573
576
  <br>
574
577
 
575
- ### Scenes (8)
578
+ ### Scenes (12)
576
579
 
577
580
  | Tool | Description |
578
581
  |------|-------------|
@@ -584,6 +587,10 @@ Check memory before creative decisions. Verify every mutation.
584
587
  | `set_scene_name` | Rename |
585
588
  | `set_scene_color` | Set color |
586
589
  | `set_scene_tempo` | Per-scene tempo |
590
+ | `get_scene_matrix` | Full clip grid: every track × every scene with states |
591
+ | `fire_scene_clips` | Fire scene with optional track filter |
592
+ | `stop_all_clips` | Stop all playing clips (panic) |
593
+ | `get_playing_clips` | All currently playing/triggered clips |
587
594
 
588
595
  <br>
589
596
 
@@ -706,6 +713,14 @@ Check memory before creative decisions. Verify every mutation.
706
713
  | `capture_audio` | Record master output to WAV |
707
714
  | `capture_stop` | Cancel in-progress capture |
708
715
 
716
+ ### Devices — Plugin Deep Control (3) `[M4L]`
717
+
718
+ | Tool | Description |
719
+ |------|-------------|
720
+ | `get_plugin_parameters` | All VST/AU params including unconfigured |
721
+ | `map_plugin_parameter` | Add param to Ableton's Configure list |
722
+ | `get_plugin_presets` | List plugin's internal presets/banks |
723
+
709
724
  <br>
710
725
 
711
726
  ### Perception (4)
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "livepilot",
3
- "version": "1.9.2",
3
+ "version": "1.9.4",
4
4
  "description": "Agentic production system for Ableton Live 12 — 178 tools, 17 domains, device atlas, spectral perception, technique memory, neo-Riemannian harmony, Euclidean rhythm, species counterpoint, MIDI I/O",
5
5
  "author": {
6
6
  "name": "Pilot Studio"
@@ -1,4 +1,4 @@
1
- # LivePilot v1.9.2 — Architecture & Tool Reference
1
+ # LivePilot v1.9.4 — Architecture & Tool Reference
2
2
 
3
3
  Agentic production system for Ableton Live 12. 178 tools across 17 domains. Device atlas (280+ devices), spectral perception (M4L analyzer), technique memory, automation intelligence (16 curve types, 15 recipes), music theory (Krumhansl-Schmuckler, species counterpoint), generative algorithms (Euclidean rhythm, tintinnabuli, phase shift, additive process), neo-Riemannian harmony (PRL transforms, Tonnetz), MIDI file I/O.
4
4
 
@@ -32,7 +32,7 @@ A flat tool list lets the AI press buttons. LivePilot's three layers give it con
32
32
 
33
33
  This turns "set EQ band 3 to -4 dB" into "cut 400 Hz by 4 dB, then read the spectrum to confirm the mud is actually reduced."
34
34
 
35
- ## The 168 Tools — What Each One Does
35
+ ## The 178 Tools — What Each One Does
36
36
 
37
37
  ### Transport (12) — Playback, tempo, global state, diagnostics
38
38
 
Binary file
@@ -784,7 +784,7 @@
784
784
  ],
785
785
  "orientation": 1,
786
786
  "setstyle": 1,
787
- "settype": 0,
787
+ "settype": 1,
788
788
  "slidercolor": [
789
789
  0.65,
790
790
  0.82,
@@ -83,7 +83,7 @@ function anything() {
83
83
  function dispatch(cmd, args) {
84
84
  switch(cmd) {
85
85
  case "ping":
86
- send_response({"ok": true, "version": "1.9.2"});
86
+ send_response({"ok": true, "version": "1.9.4"});
87
87
  break;
88
88
  case "get_params":
89
89
  cmd_get_params(args);
@@ -1,2 +1,2 @@
1
1
  """LivePilot MCP Server — bridges MCP protocol to Ableton Live."""
2
- __version__ = "1.9.2"
2
+ __version__ = "1.9.4"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "livepilot",
3
- "version": "1.9.2",
3
+ "version": "1.9.4",
4
4
  "mcpName": "io.github.dreamrec/livepilot",
5
5
  "description": "Agentic production system for Ableton Live 12 — 178 tools, 17 domains, device atlas, spectral perception, technique memory, neo-Riemannian harmony, Euclidean rhythm, species counterpoint, MIDI I/O",
6
6
  "author": "Pilot Studio",
@@ -5,7 +5,7 @@ Entry point for the ControlSurface. Ableton calls create_instance(c_instance)
5
5
  when this script is selected in Preferences > Link, Tempo & MIDI.
6
6
  """
7
7
 
8
- __version__ = "1.9.2"
8
+ __version__ = "1.9.4"
9
9
 
10
10
  from _Framework.ControlSurface import ControlSurface
11
11
  from .server import LivePilotServer