livepilot 1.5.0 → 1.6.2
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 +41 -0
- package/README.md +2 -2
- package/m4l_device/livepilot_bridge.js +1 -1
- package/mcp_server/__init__.py +1 -1
- package/mcp_server/curves.py +741 -0
- package/mcp_server/server.py +1 -0
- package/mcp_server/tools/automation.py +488 -0
- package/package.json +2 -2
- package/plugin/agents/livepilot-producer/AGENT.md +32 -2
- package/plugin/plugin.json +2 -2
- package/plugin/skills/livepilot-core/SKILL.md +29 -5
- package/plugin/skills/livepilot-core/references/automation-atlas.md +272 -0
- package/plugin/skills/livepilot-core/references/overview.md +20 -3
- package/plugin/skills/livepilot-release/SKILL.md +101 -0
- package/remote_script/LivePilot/__init__.py +3 -2
- package/remote_script/LivePilot/clip_automation.py +220 -0
- package/remote_script/LivePilot/server.py +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,46 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.6.2 — Automation Params Fix (March 2026)
|
|
4
|
+
|
|
5
|
+
- Fix: expose all curve-specific params in `generate_automation_curve` and `apply_automation_shape` MCP tools — `values` (steps), `hits`/`steps` (euclidean), `seed`/`drift`/`volatility` (organic), `damping`/`stiffness` (spring), `control1`/`control2` (bezier), `easing_type`, `narrowing` (stochastic)
|
|
6
|
+
- Fix: `analyze_for_automation` spectral getter used wrong method (`.get_spectrum()` → `.get("spectrum")`)
|
|
7
|
+
|
|
8
|
+
## 1.6.1 — Hotfix (March 2026)
|
|
9
|
+
|
|
10
|
+
- 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)
|
|
11
|
+
|
|
12
|
+
## 1.6.0 — Automation Intelligence (March 2026)
|
|
13
|
+
|
|
14
|
+
**8 new tools (127 -> 135), 16-type curve engine, 15 recipes, spectral feedback loop.**
|
|
15
|
+
|
|
16
|
+
### Automation Curve Engine
|
|
17
|
+
- 16 curve types in 4 categories: basic (9), organic (3), shape (2), generative (2)
|
|
18
|
+
- Pure math module — no Ableton dependency, fully testable offline
|
|
19
|
+
- 15 built-in recipes for common production techniques
|
|
20
|
+
|
|
21
|
+
### New Tools: Automation Domain (8 tools)
|
|
22
|
+
- `get_clip_automation` — list automation envelopes on a session clip
|
|
23
|
+
- `set_clip_automation` — write automation points to clip envelope
|
|
24
|
+
- `clear_clip_automation` — clear automation envelopes
|
|
25
|
+
- `apply_automation_shape` — generate + apply curve in one call
|
|
26
|
+
- `apply_automation_recipe` — apply named recipe (filter_sweep_up, dub_throw, etc.)
|
|
27
|
+
- `get_automation_recipes` — list all 15 recipes with descriptions
|
|
28
|
+
- `generate_automation_curve` — preview curve points without writing
|
|
29
|
+
- `analyze_for_automation` — spectral analysis + device-aware suggestions
|
|
30
|
+
|
|
31
|
+
### Automation Atlas
|
|
32
|
+
- Knowledge corpus: curve theory, perception-action loop, genre recipes
|
|
33
|
+
- Diagnostic filter technique: using EQ as a measurement instrument
|
|
34
|
+
- Cross-track spectral mapping for complementary automation
|
|
35
|
+
- Golden rules for musically intelligent automation
|
|
36
|
+
|
|
37
|
+
### Producer Agent
|
|
38
|
+
- New automation phase in production workflow
|
|
39
|
+
- Mandatory spectral feedback loop: perceive -> diagnose -> act -> verify -> adjust
|
|
40
|
+
- Spectral-driven automation decisions, not just blind curve application
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
3
44
|
## 1.5.0 — Agentic Production System (March 19, 2026)
|
|
4
45
|
|
|
5
46
|
**Three-layer intelligence: Device Atlas + M4L Analyzer + Technique Memory.**
|
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
[](https://github.com/dreamrec/LivePilot/stargazers)
|
|
13
13
|
[](https://www.npmjs.com/package/livepilot)
|
|
14
14
|
|
|
15
|
-
**AI copilot for Ableton Live 12** —
|
|
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
|
|
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
|
|
package/mcp_server/__init__.py
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
"""LivePilot MCP Server — bridges MCP protocol to Ableton Live."""
|
|
2
|
-
__version__ = "1.
|
|
2
|
+
__version__ = "1.6.1"
|