livepilot 1.10.3 → 1.10.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 — 317 tools, 43 domains, device atlas, spectral perception, technique memory, sample intelligence, auto-composition, neo-Riemannian harmony, Euclidean rhythm, species counterpoint, MIDI I/O",
13
- "version": "1.10.3",
13
+ "version": "1.10.4",
14
14
  "author": {
15
15
  "name": "Pilot Studio"
16
16
  },
package/.mcpbignore CHANGED
@@ -17,6 +17,12 @@ scripts/
17
17
  *.pyc
18
18
  .DS_Store
19
19
  *.egg-info
20
+ .gitignore
21
+ .mcpbignore
22
+ package-lock.json
23
+
24
+ # Untracked Ableton presets (saved by users into m4l_device/)
25
+ m4l_device/*.adv
20
26
 
21
27
  # Credentials and tokens
22
28
  .mcpregistry_*
@@ -24,15 +30,26 @@ scripts/
24
30
  .npmrc
25
31
 
26
32
  # Docs and marketing (not needed at runtime)
33
+ # Ship only docs/manual/, docs/assets/, docs/M4L_BRIDGE.md, docs/TOOL_REFERENCE.md
27
34
  docs/specs/
35
+ docs/superpowers/
36
+ docs/plans/
37
+ docs/research/
38
+ docs/v2-master-spec/
39
+ docs/LivePilot-1.7-Perception/
40
+ docs/2026-*
41
+ docs/AGENT_OS_V1.md
42
+ docs/COMPOSITION_ENGINE_V1.md
43
+ docs/ableton-library-map.md
44
+ docs/patreon-content.md
28
45
  docs/social-banner.*
29
46
  docs/screenshots/
30
47
 
31
48
  # Large binary already in User Library after install
32
49
  # m4l_device/LivePilot_Analyzer.amxd
33
50
 
34
- # Dev config
35
- .mcp.json
51
+ # Dev config (root-level only — keep livepilot/.mcp.json which the plugin needs)
52
+ /.mcp.json
36
53
  .npmignore
37
54
  .editorconfig
38
55
  CODE_OF_CONDUCT.md
package/AGENTS.md CHANGED
@@ -1,4 +1,4 @@
1
- # LivePilot v1.10.3 — Ableton Live 12
1
+ # LivePilot v1.10.4 — Ableton Live 12
2
2
 
3
3
  ## Project
4
4
  - **Repo:** This directory (LivePilot)
package/CHANGELOG.md CHANGED
@@ -1,5 +1,51 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.10.4 — Bridge ping sync (April 14 2026)
4
+
5
+ A pure ship-fix release. The frozen JS inside `LivePilot_Analyzer.amxd` was
6
+ last re-exported during the v1.10.1 hardening pass and never re-frozen
7
+ during the 1.10.2 / 1.10.3 sweeps. The published `npm livepilot@1.10.3`
8
+ tarball therefore shipped with a stale `.amxd` whose `ping` returned
9
+ `{"version": "1.10.1"}`. End users installing via `npm install -g livepilot`
10
+ got the v1.10.3 source code but a v1.10.1 bridge.
11
+
12
+ ### Fixed
13
+ - **M4L bridge ping reports 1.10.4 (was 1.10.1).** Source
14
+ `m4l_device/livepilot_bridge.js` updated and the `.amxd` was binary-patched
15
+ in place — replacing the 6-byte version literal at offset 6669978
16
+ (`b"1.10.3" -> b"1.10.4"`) leaves all `dire`/`sz32`/`of32` chunk offsets
17
+ numerically valid, so the patched device opens cleanly in Ableton without
18
+ needing a Max re-export. Verified by `tests/test_bridge_parity.py` and the
19
+ capture/contract tests (36 tests pass against the patched binary).
20
+ - **`livepilot.mcpb` no longer ships internal docs.** `.mcpbignore` was
21
+ tightened to exclude `docs/superpowers/`, `docs/research/`, `docs/plans/`,
22
+ `docs/v2-master-spec/`, `docs/LivePilot-1.7-Perception/`, `docs/2026-*`,
23
+ `AGENT_OS_V1.md`, `COMPOSITION_ENGINE_V1.md`, `ableton-library-map.md`,
24
+ `patreon-content.md`, and `m4l_device/*.adv` (Ableton presets users save
25
+ into the dev folder). The bundle is back to lean shape: 4.66 MB / 403 files
26
+ vs the bloated 5.56 MB / 491 files an unpatched repack produced. The
27
+ `.mcp.json` exclusion is now root-only (`/.mcp.json`) so the
28
+ plugin-internal `livepilot/.mcp.json` stays in the bundle.
29
+
30
+ ### Why a new patch version
31
+ npm package versions are immutable. Once `livepilot@1.10.3` was published with
32
+ the stale `.amxd`, the only way to ship a fix to anyone using
33
+ `npm install -g livepilot` is to bump and republish. Same root cause and same
34
+ fix as the v1.10.1 → v1.10.2 jump.
35
+
36
+ ### Deprecation
37
+ - `npm livepilot@1.10.3` deprecated with message: "stale M4L bridge .amxd
38
+ ships v1.10.1 ping; please install 1.10.4".
39
+
40
+ ### Verification
41
+ - 36 bridge-related tests (`test_bridge_parity`, `test_capture_bridge`,
42
+ `test_m4l_capture_contract`, `test_sample_engine_analyzer`) pass against
43
+ the patched binary.
44
+ - `unzip -p livepilot.mcpb m4l_device/LivePilot_Analyzer.amxd | grep 1.10.4`
45
+ matches; `1.10.1` and `1.10.3` are absent.
46
+ - GitHub release `LivePilot_Analyzer.amxd` and bundled `livepilot.mcpb`
47
+ asset SHAs match local artifacts.
48
+
3
49
  ## 1.10.3 — Truth Release (April 14 2026)
4
50
 
5
51
  A correctness pass focused on making the top-layer workflows **trustworthy
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "livepilot",
3
- "version": "1.10.3",
3
+ "version": "1.10.4",
4
4
  "description": "Agentic production system for Ableton Live 12 — 317 tools, 43 domains, device atlas, sample intelligence, auto-composition, spectral perception, technique memory, neo-Riemannian harmony, Euclidean rhythm, species counterpoint, MIDI I/O",
5
5
  "author": {
6
6
  "name": "Pilot Studio"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "livepilot",
3
- "version": "1.10.3",
3
+ "version": "1.10.4",
4
4
  "description": "Agentic production system for Ableton Live 12 — 317 tools, 43 domains, device atlas, sample intelligence, auto-composition, 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.10.3 — Architecture & Tool Reference
1
+ # LivePilot v1.10.4 — Architecture & Tool Reference
2
2
 
3
3
  Agentic production system for Ableton Live 12. 317 tools across 43 domains. Device atlas (1305 devices, 81 enriched), 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
 
@@ -104,7 +104,7 @@ Call `get_capability_state` at the start of any evaluation session. The response
104
104
  {
105
105
  "mode": "normal",
106
106
  "analyzer_connected": true,
107
- "bridge_version": "1.10.3",
107
+ "bridge_version": "1.10.4",
108
108
  "spectral_cache_age_ms": 1200,
109
109
  "flucoma_available": false,
110
110
  "session_connected": true
package/livepilot.mcpb CHANGED
Binary file
Binary file
@@ -84,7 +84,7 @@ function anything() {
84
84
  function dispatch(cmd, args) {
85
85
  switch(cmd) {
86
86
  case "ping":
87
- send_response({"ok": true, "version": "1.10.3"});
87
+ send_response({"ok": true, "version": "1.10.4"});
88
88
  break;
89
89
  case "get_params":
90
90
  cmd_get_params(args);
package/manifest.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "manifest_version": "0.3",
3
3
  "name": "livepilot",
4
4
  "display_name": "LivePilot — AI for Ableton Live",
5
- "version": "1.10.3",
5
+ "version": "1.10.4",
6
6
  "description": "Agentic production system for Ableton Live 12. Make beats, mix tracks, design sounds, and arrange songs with 317 AI-powered tools.",
7
7
  "long_description": "LivePilot is an agentic production system for Ableton Live 12. 317 tools across 43 domains — device atlas (1305 devices), sample intelligence (Splice + browser + filesystem), auto-composition, spectral perception, technique memory, and 12 creative engines.\n\n**What it does:**\n- Creates MIDI clips with notes, chords, and rhythms\n- Loads instruments and effects via Device Atlas (1305 devices indexed)\n- Searches samples across Splice, Ableton browser, and filesystem\n- Plans compositions from text prompts with genre-aware layering\n- Slices samples with intent-based MIDI generation\n- Mixes with volume, panning, sends, and automation\n- Analyzes your mix with real-time spectral data (M4L bridge)\n- Diagnoses stuck sessions and generates creative rescue variants\n- Remembers your production style across sessions\n\n**How it works:**\nLivePilot installs a Remote Script in Ableton that communicates with the AI over a local TCP connection. Everything runs on your machine — no audio leaves your computer.",
8
8
  "author": {
@@ -1,2 +1,2 @@
1
1
  """LivePilot MCP Server — bridges MCP protocol to Ableton Live."""
2
- __version__ = "1.10.3"
2
+ __version__ = "1.10.4"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "livepilot",
3
- "version": "1.10.3",
3
+ "version": "1.10.4",
4
4
  "mcpName": "io.github.dreamrec/livepilot",
5
5
  "description": "Agentic production system for Ableton Live 12 — 317 tools, 43 domains. Device atlas (1305 devices), sample engine (Splice + browser + filesystem), auto-composition, spectral perception, technique memory, creative intelligence (12 engines)",
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.10.3"
8
+ __version__ = "1.10.4"
9
9
 
10
10
  from _Framework.ControlSurface import ControlSurface
11
11
  from .server import LivePilotServer