livepilot 1.10.7 → 1.10.9

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.
Files changed (135) hide show
  1. package/CHANGELOG.md +254 -0
  2. package/README.md +19 -17
  3. package/bin/livepilot.js +146 -28
  4. package/installer/install.js +117 -11
  5. package/m4l_device/LivePilot_Analyzer.amxd +0 -0
  6. package/m4l_device/livepilot_bridge.js +1 -1
  7. package/mcp_server/__init__.py +1 -1
  8. package/mcp_server/atlas/__init__.py +39 -7
  9. package/mcp_server/atlas/tools.py +56 -15
  10. package/mcp_server/composer/layer_planner.py +27 -0
  11. package/mcp_server/composer/prompt_parser.py +15 -6
  12. package/mcp_server/connection.py +11 -3
  13. package/mcp_server/corpus/__init__.py +14 -4
  14. package/mcp_server/evaluation/fabric.py +62 -1
  15. package/mcp_server/m4l_bridge.py +63 -12
  16. package/mcp_server/project_brain/automation_graph.py +23 -1
  17. package/mcp_server/project_brain/builder.py +2 -0
  18. package/mcp_server/project_brain/models.py +20 -1
  19. package/mcp_server/project_brain/tools.py +10 -3
  20. package/mcp_server/runtime/execution_router.py +16 -2
  21. package/mcp_server/runtime/remote_commands.py +6 -0
  22. package/mcp_server/sample_engine/models.py +22 -3
  23. package/mcp_server/semantic_moves/__init__.py +1 -0
  24. package/mcp_server/semantic_moves/compiler.py +9 -1
  25. package/mcp_server/semantic_moves/device_creation_compilers.py +47 -0
  26. package/mcp_server/semantic_moves/mix_compilers.py +170 -0
  27. package/mcp_server/semantic_moves/mix_moves.py +1 -1
  28. package/mcp_server/semantic_moves/models.py +5 -0
  29. package/mcp_server/semantic_moves/tools.py +154 -35
  30. package/mcp_server/server.py +147 -17
  31. package/mcp_server/services/singletons.py +68 -0
  32. package/mcp_server/session_continuity/models.py +13 -0
  33. package/mcp_server/session_continuity/tools.py +2 -0
  34. package/mcp_server/session_continuity/tracker.py +93 -0
  35. package/mcp_server/splice_client/client.py +29 -8
  36. package/mcp_server/tools/_analyzer_engine/__init__.py +39 -0
  37. package/mcp_server/tools/_analyzer_engine/context.py +103 -0
  38. package/mcp_server/tools/_analyzer_engine/flucoma.py +23 -0
  39. package/mcp_server/tools/_analyzer_engine/sample.py +122 -0
  40. package/mcp_server/tools/_motif_engine.py +19 -4
  41. package/mcp_server/tools/analyzer.py +25 -180
  42. package/mcp_server/tools/clips.py +240 -2
  43. package/mcp_server/tools/midi_io.py +10 -0
  44. package/mcp_server/tools/tracks.py +1 -1
  45. package/mcp_server/tools/transport.py +59 -4
  46. package/mcp_server/translation_engine/tools.py +8 -4
  47. package/package.json +25 -3
  48. package/remote_script/LivePilot/__init__.py +36 -9
  49. package/remote_script/LivePilot/arrangement.py +12 -2
  50. package/remote_script/LivePilot/browser.py +16 -6
  51. package/remote_script/LivePilot/devices.py +10 -5
  52. package/remote_script/LivePilot/notes.py +13 -2
  53. package/remote_script/LivePilot/server.py +51 -13
  54. package/remote_script/LivePilot/version_detect.py +7 -4
  55. package/server.json +20 -0
  56. package/.claude-plugin/marketplace.json +0 -21
  57. package/.mcp.json.disabled +0 -9
  58. package/.mcpbignore +0 -60
  59. package/AGENTS.md +0 -46
  60. package/BUGS.md +0 -1570
  61. package/CODE_OF_CONDUCT.md +0 -27
  62. package/CONTRIBUTING.md +0 -131
  63. package/SECURITY.md +0 -48
  64. package/livepilot/.Codex-plugin/plugin.json +0 -8
  65. package/livepilot/.claude-plugin/plugin.json +0 -8
  66. package/livepilot/agents/livepilot-producer/AGENT.md +0 -313
  67. package/livepilot/commands/arrange.md +0 -47
  68. package/livepilot/commands/beat.md +0 -77
  69. package/livepilot/commands/evaluate.md +0 -49
  70. package/livepilot/commands/memory.md +0 -22
  71. package/livepilot/commands/mix.md +0 -44
  72. package/livepilot/commands/perform.md +0 -42
  73. package/livepilot/commands/session.md +0 -13
  74. package/livepilot/commands/sounddesign.md +0 -43
  75. package/livepilot/skills/livepilot-arrangement/SKILL.md +0 -155
  76. package/livepilot/skills/livepilot-composition-engine/SKILL.md +0 -107
  77. package/livepilot/skills/livepilot-composition-engine/references/form-patterns.md +0 -97
  78. package/livepilot/skills/livepilot-composition-engine/references/transition-archetypes.md +0 -102
  79. package/livepilot/skills/livepilot-core/SKILL.md +0 -184
  80. package/livepilot/skills/livepilot-core/references/ableton-workflow-patterns.md +0 -831
  81. package/livepilot/skills/livepilot-core/references/automation-atlas.md +0 -272
  82. package/livepilot/skills/livepilot-core/references/device-atlas/00-index.md +0 -110
  83. package/livepilot/skills/livepilot-core/references/device-atlas/distortion-and-character.md +0 -687
  84. package/livepilot/skills/livepilot-core/references/device-atlas/drums-and-percussion.md +0 -753
  85. package/livepilot/skills/livepilot-core/references/device-atlas/dynamics-and-punch.md +0 -525
  86. package/livepilot/skills/livepilot-core/references/device-atlas/eq-and-filtering.md +0 -402
  87. package/livepilot/skills/livepilot-core/references/device-atlas/midi-tools.md +0 -963
  88. package/livepilot/skills/livepilot-core/references/device-atlas/movement-and-modulation.md +0 -874
  89. package/livepilot/skills/livepilot-core/references/device-atlas/space-and-depth.md +0 -571
  90. package/livepilot/skills/livepilot-core/references/device-atlas/spectral-and-weird.md +0 -714
  91. package/livepilot/skills/livepilot-core/references/device-atlas/synths-native.md +0 -953
  92. package/livepilot/skills/livepilot-core/references/device-knowledge/00-index.md +0 -34
  93. package/livepilot/skills/livepilot-core/references/device-knowledge/automation-as-music.md +0 -204
  94. package/livepilot/skills/livepilot-core/references/device-knowledge/chains-genre.md +0 -173
  95. package/livepilot/skills/livepilot-core/references/device-knowledge/creative-thinking.md +0 -211
  96. package/livepilot/skills/livepilot-core/references/device-knowledge/effects-distortion.md +0 -188
  97. package/livepilot/skills/livepilot-core/references/device-knowledge/effects-space.md +0 -162
  98. package/livepilot/skills/livepilot-core/references/device-knowledge/effects-spectral.md +0 -229
  99. package/livepilot/skills/livepilot-core/references/device-knowledge/instruments-synths.md +0 -243
  100. package/livepilot/skills/livepilot-core/references/m4l-devices.md +0 -352
  101. package/livepilot/skills/livepilot-core/references/memory-guide.md +0 -107
  102. package/livepilot/skills/livepilot-core/references/midi-recipes.md +0 -402
  103. package/livepilot/skills/livepilot-core/references/mixing-patterns.md +0 -578
  104. package/livepilot/skills/livepilot-core/references/overview.md +0 -290
  105. package/livepilot/skills/livepilot-core/references/sample-manipulation.md +0 -724
  106. package/livepilot/skills/livepilot-core/references/sound-design-deep.md +0 -140
  107. package/livepilot/skills/livepilot-core/references/sound-design.md +0 -393
  108. package/livepilot/skills/livepilot-devices/SKILL.md +0 -169
  109. package/livepilot/skills/livepilot-evaluation/SKILL.md +0 -156
  110. package/livepilot/skills/livepilot-evaluation/references/capability-modes.md +0 -118
  111. package/livepilot/skills/livepilot-evaluation/references/evaluation-contracts.md +0 -121
  112. package/livepilot/skills/livepilot-evaluation/references/memory-promotion.md +0 -110
  113. package/livepilot/skills/livepilot-mix-engine/SKILL.md +0 -123
  114. package/livepilot/skills/livepilot-mix-engine/references/mix-critics.md +0 -143
  115. package/livepilot/skills/livepilot-mix-engine/references/mix-moves.md +0 -105
  116. package/livepilot/skills/livepilot-mixing/SKILL.md +0 -157
  117. package/livepilot/skills/livepilot-notes/SKILL.md +0 -130
  118. package/livepilot/skills/livepilot-performance-engine/SKILL.md +0 -122
  119. package/livepilot/skills/livepilot-performance-engine/references/performance-safety.md +0 -98
  120. package/livepilot/skills/livepilot-release/SKILL.md +0 -130
  121. package/livepilot/skills/livepilot-sample-engine/SKILL.md +0 -105
  122. package/livepilot/skills/livepilot-sample-engine/references/sample-critics.md +0 -87
  123. package/livepilot/skills/livepilot-sample-engine/references/sample-philosophy.md +0 -51
  124. package/livepilot/skills/livepilot-sample-engine/references/sample-techniques.md +0 -131
  125. package/livepilot/skills/livepilot-sound-design-engine/SKILL.md +0 -168
  126. package/livepilot/skills/livepilot-sound-design-engine/references/patch-model.md +0 -119
  127. package/livepilot/skills/livepilot-sound-design-engine/references/sound-design-critics.md +0 -118
  128. package/livepilot/skills/livepilot-wonder/SKILL.md +0 -79
  129. package/m4l_device/LivePilot_Analyzer.amxd.pre-presentation-backup +0 -0
  130. package/m4l_device/LivePilot_Analyzer.maxpat +0 -2705
  131. package/m4l_device/LivePilot_Analyzer.maxproj +0 -53
  132. package/manifest.json +0 -91
  133. package/mcp_server/splice_client/protos/app_pb2.pyi +0 -1153
  134. package/scripts/generate_tool_catalog.py +0 -106
  135. package/scripts/sync_metadata.py +0 -349
@@ -1,53 +0,0 @@
1
- {
2
- "name" : "LivePilot_Analyzer",
3
- "version" : 1,
4
- "creationdate" : 3923452800,
5
- "modificationdate" : 3923452800,
6
- "viewrect" : [ 100.0, 100.0, 300.0, 500.0 ],
7
- "autoorganize" : 0,
8
- "hideprojectwindow" : 0,
9
- "showdependencies" : 1,
10
- "autolocalize" : 0,
11
- "contents" : {
12
- "patchers" : {
13
- "LivePilot_Analyzer.maxpat" : {
14
- "kind" : "patcher",
15
- "local" : 1,
16
- "toplevel" : 1
17
- }
18
- },
19
- "code" : {
20
- "livepilot_bridge.js" : {
21
- "kind" : "javascript",
22
- "local" : 1
23
- }
24
- },
25
- "externals" : {
26
- "fluid.chroma~.mxo" : { "kind" : "maxext_darwin", "local" : 1 },
27
- "fluid.chroma~.mxe64" : { "kind" : "maxext_win_64", "local" : 1 },
28
- "fluid.loudness~.mxo" : { "kind" : "maxext_darwin", "local" : 1 },
29
- "fluid.loudness~.mxe64" : { "kind" : "maxext_win_64", "local" : 1 },
30
- "fluid.melbands~.mxo" : { "kind" : "maxext_darwin", "local" : 1 },
31
- "fluid.melbands~.mxe64" : { "kind" : "maxext_win_64", "local" : 1 },
32
- "fluid.noveltyfeature~.mxo" : { "kind" : "maxext_darwin", "local" : 1 },
33
- "fluid.noveltyfeature~.mxe64" : { "kind" : "maxext_win_64", "local" : 1 },
34
- "fluid.onsetfeature~.mxo" : { "kind" : "maxext_darwin", "local" : 1 },
35
- "fluid.onsetfeature~.mxe64" : { "kind" : "maxext_win_64", "local" : 1 },
36
- "fluid.spectralshape~.mxo" : { "kind" : "maxext_darwin", "local" : 1 },
37
- "fluid.spectralshape~.mxe64" : { "kind" : "maxext_win_64", "local" : 1 }
38
- }
39
- },
40
- "layout" : {
41
-
42
- },
43
- "searchpath" : {
44
-
45
- },
46
- "detailsvisible" : 0,
47
- "amxdtype" : 1627865200,
48
- "readonly" : 0,
49
- "devpathtype" : 0,
50
- "devpath" : ".",
51
- "sortmode" : 0,
52
- "viewmode" : 0
53
- }
package/manifest.json DELETED
@@ -1,91 +0,0 @@
1
- {
2
- "manifest_version": "0.3",
3
- "name": "livepilot",
4
- "display_name": "LivePilot — AI for Ableton Live",
5
- "version": "1.10.7",
6
- "description": "Agentic production system for Ableton Live 12. Make beats, mix tracks, design sounds, and arrange songs with 323 AI-powered tools.",
7
- "long_description": "LivePilot is an agentic production system for Ableton Live 12. 323 tools across 45 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
- "author": {
9
- "name": "Pilot Studio",
10
- "url": "https://github.com/dreamrec/LivePilot"
11
- },
12
- "license": "BSL-1.1",
13
- "repository": {
14
- "type": "git",
15
- "url": "https://github.com/dreamrec/LivePilot"
16
- },
17
- "homepage": "https://github.com/dreamrec/LivePilot",
18
- "documentation": "https://github.com/dreamrec/LivePilot#readme",
19
- "support": "https://github.com/dreamrec/LivePilot/issues",
20
-
21
- "server": {
22
- "type": "node",
23
- "entry_point": "bin/livepilot.js",
24
- "mcp_config": {
25
- "command": "node",
26
- "args": ["${__dirname}/bin/livepilot.js"],
27
- "env": {
28
- "LIVEPILOT_AUTO_INSTALL": "${user_config.auto_install_remote_script}",
29
- "LIVEPILOT_TCP_PORT": "${user_config.ableton_port}"
30
- }
31
- }
32
- },
33
-
34
- "user_config": {
35
- "auto_install_remote_script": {
36
- "type": "boolean",
37
- "title": "Auto-install Remote Script",
38
- "description": "Automatically install the LivePilot Remote Script into Ableton Live's Remote Scripts folder on first launch. You'll still need to select 'LivePilot' in Ableton's Preferences > Link, Tempo & MIDI > Control Surface.",
39
- "default": true
40
- },
41
- "ableton_port": {
42
- "type": "number",
43
- "title": "Ableton TCP Port",
44
- "description": "TCP port for communication with Ableton Live. Only change this if you have a port conflict. Default: 9878.",
45
- "default": 9878,
46
- "min": 1024,
47
- "max": 65535
48
- }
49
- },
50
-
51
- "tools_generated": true,
52
-
53
- "tools": [
54
- {"name": "get_session_info", "description": "Get comprehensive session state: tempo, tracks, scenes, transport"},
55
- {"name": "set_tempo", "description": "Set the song tempo (20-999 BPM)"},
56
- {"name": "create_midi_track", "description": "Create a new MIDI track with optional name and color"},
57
- {"name": "add_notes", "description": "Add MIDI notes to a clip with pitch, timing, velocity, probability"},
58
- {"name": "search_browser", "description": "Search Ableton's browser for instruments, effects, drums, samples"},
59
- {"name": "find_and_load_device", "description": "Find a device by name and load it onto a track"},
60
- {"name": "set_device_parameter", "description": "Set any device parameter by name with value verification"},
61
- {"name": "fire_scene", "description": "Launch a scene, triggering all its clips"},
62
- {"name": "analyze_harmony", "description": "Analyze chord progression with Roman numeral analysis"},
63
- {"name": "get_master_spectrum", "description": "Real-time 8-band frequency analysis of the master bus"},
64
- {"name": "memory_learn", "description": "Save a production technique for future recall"},
65
- {"name": "plan_arrangement", "description": "Generate a full arrangement blueprint with sections and transitions"}
66
- ],
67
-
68
- "keywords": [
69
- "ableton",
70
- "ableton-live",
71
- "music-production",
72
- "daw",
73
- "midi",
74
- "audio",
75
- "mixing",
76
- "mastering",
77
- "beat-making",
78
- "sound-design",
79
- "music-theory",
80
- "ai-music"
81
- ],
82
-
83
- "compatibility": {
84
- "platforms": ["darwin", "win32"],
85
- "runtimes": {
86
- "python": ">=3.9"
87
- }
88
- },
89
-
90
- "screenshots": []
91
- }