livepilot 1.5.0 → 1.6.1

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,41 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.6.1 — Hotfix (March 2026)
4
+
5
+ - Fix: `clip_automation.py` imported `register` from `utils` instead of `router`, causing Remote Script to fail to load in Ableton (LivePilot disappeared from Control Surface list)
6
+
7
+ ## 1.6.0 — Automation Intelligence (March 2026)
8
+
9
+ **8 new tools (127 -> 135), 16-type curve engine, 15 recipes, spectral feedback loop.**
10
+
11
+ ### Automation Curve Engine
12
+ - 16 curve types in 4 categories: basic (9), organic (3), shape (2), generative (2)
13
+ - Pure math module — no Ableton dependency, fully testable offline
14
+ - 15 built-in recipes for common production techniques
15
+
16
+ ### New Tools: Automation Domain (8 tools)
17
+ - `get_clip_automation` — list automation envelopes on a session clip
18
+ - `set_clip_automation` — write automation points to clip envelope
19
+ - `clear_clip_automation` — clear automation envelopes
20
+ - `apply_automation_shape` — generate + apply curve in one call
21
+ - `apply_automation_recipe` — apply named recipe (filter_sweep_up, dub_throw, etc.)
22
+ - `get_automation_recipes` — list all 15 recipes with descriptions
23
+ - `generate_automation_curve` — preview curve points without writing
24
+ - `analyze_for_automation` — spectral analysis + device-aware suggestions
25
+
26
+ ### Automation Atlas
27
+ - Knowledge corpus: curve theory, perception-action loop, genre recipes
28
+ - Diagnostic filter technique: using EQ as a measurement instrument
29
+ - Cross-track spectral mapping for complementary automation
30
+ - Golden rules for musically intelligent automation
31
+
32
+ ### Producer Agent
33
+ - New automation phase in production workflow
34
+ - Mandatory spectral feedback loop: perceive -> diagnose -> act -> verify -> adjust
35
+ - Spectral-driven automation decisions, not just blind curve application
36
+
37
+ ---
38
+
3
39
  ## 1.5.0 — Agentic Production System (March 19, 2026)
4
40
 
5
41
  **Three-layer intelligence: Device Atlas + M4L Analyzer + Technique Memory.**
package/README.md CHANGED
@@ -12,7 +12,7 @@
12
12
  [![GitHub stars](https://img.shields.io/github/stars/dreamrec/LivePilot)](https://github.com/dreamrec/LivePilot/stargazers)
13
13
  [![npm](https://img.shields.io/npm/v/livepilot)](https://www.npmjs.com/package/livepilot)
14
14
 
15
- **AI copilot for Ableton Live 12** — 127 MCP tools, a deep device knowledge corpus, real-time audio analysis, and persistent technique memory.
15
+ **AI copilot for Ableton Live 12** — 135 MCP tools, a deep device knowledge corpus, real-time audio analysis, and persistent technique memory.
16
16
 
17
17
  Most Ableton MCP servers give the AI tools to push buttons. LivePilot gives it three things on top of that:
18
18
 
@@ -20,7 +20,7 @@ Most Ableton MCP servers give the AI tools to push buttons. LivePilot gives it t
20
20
  - **Perception** — An M4L analyzer that reads the master bus in real-time: 8-band spectrum, RMS/peak metering, pitch tracking, key detection. The AI makes decisions based on what it hears, not just what's configured.
21
21
  - **Memory** — A technique library that persists across sessions. The AI remembers how you built that bass sound, what swing you like on hi-hats, which reverb chain worked on vocals. It learns your taste over time.
22
22
 
23
- These three layers sit on top of 127 deterministic MCP tools that cover transport, tracks, clips, MIDI, devices, scenes, mixing, browser, arrangement, and sample manipulation. Every command goes through Ableton's official Live Object Model API — the same interface Ableton's own control surfaces use. Everything is reversible with undo.
23
+ These three layers sit on top of 135 deterministic MCP tools that cover transport, tracks, clips, MIDI, devices, scenes, mixing, browser, arrangement, and sample manipulation. Every command goes through Ableton's official Live Object Model API — the same interface Ableton's own control surfaces use. Everything is reversible with undo.
24
24
 
25
25
  ---
26
26
 
@@ -68,7 +68,7 @@ function anything() {
68
68
  function dispatch(cmd, args) {
69
69
  switch(cmd) {
70
70
  case "ping":
71
- send_response({"ok": true, "version": "1.5.0"});
71
+ send_response({"ok": true, "version": "1.6.0"});
72
72
  break;
73
73
  case "get_params":
74
74
  cmd_get_params(args);
@@ -1,2 +1,2 @@
1
1
  """LivePilot MCP Server — bridges MCP protocol to Ableton Live."""
2
- __version__ = "1.5.0"
2
+ __version__ = "1.6.1"