livepilot 1.0.0

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 (64) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/LICENSE +21 -0
  3. package/README.md +409 -0
  4. package/bin/livepilot.js +390 -0
  5. package/installer/install.js +95 -0
  6. package/installer/paths.js +79 -0
  7. package/mcp_server/__init__.py +2 -0
  8. package/mcp_server/__main__.py +5 -0
  9. package/mcp_server/connection.py +210 -0
  10. package/mcp_server/memory/__init__.py +5 -0
  11. package/mcp_server/memory/technique_store.py +296 -0
  12. package/mcp_server/server.py +87 -0
  13. package/mcp_server/tools/__init__.py +1 -0
  14. package/mcp_server/tools/arrangement.py +407 -0
  15. package/mcp_server/tools/browser.py +86 -0
  16. package/mcp_server/tools/clips.py +218 -0
  17. package/mcp_server/tools/devices.py +256 -0
  18. package/mcp_server/tools/memory.py +198 -0
  19. package/mcp_server/tools/mixing.py +121 -0
  20. package/mcp_server/tools/notes.py +269 -0
  21. package/mcp_server/tools/scenes.py +89 -0
  22. package/mcp_server/tools/tracks.py +175 -0
  23. package/mcp_server/tools/transport.py +117 -0
  24. package/package.json +37 -0
  25. package/plugin/agents/livepilot-producer/AGENT.md +62 -0
  26. package/plugin/commands/beat.md +18 -0
  27. package/plugin/commands/memory.md +22 -0
  28. package/plugin/commands/mix.md +15 -0
  29. package/plugin/commands/session.md +13 -0
  30. package/plugin/commands/sounddesign.md +16 -0
  31. package/plugin/plugin.json +19 -0
  32. package/plugin/skills/livepilot-core/SKILL.md +208 -0
  33. package/plugin/skills/livepilot-core/references/ableton-workflow-patterns.md +831 -0
  34. package/plugin/skills/livepilot-core/references/device-atlas/00-index.md +110 -0
  35. package/plugin/skills/livepilot-core/references/device-atlas/distortion-and-character.md +687 -0
  36. package/plugin/skills/livepilot-core/references/device-atlas/drums-and-percussion.md +753 -0
  37. package/plugin/skills/livepilot-core/references/device-atlas/dynamics-and-punch.md +525 -0
  38. package/plugin/skills/livepilot-core/references/device-atlas/eq-and-filtering.md +402 -0
  39. package/plugin/skills/livepilot-core/references/device-atlas/midi-tools.md +963 -0
  40. package/plugin/skills/livepilot-core/references/device-atlas/movement-and-modulation.md +874 -0
  41. package/plugin/skills/livepilot-core/references/device-atlas/space-and-depth.md +571 -0
  42. package/plugin/skills/livepilot-core/references/device-atlas/spectral-and-weird.md +714 -0
  43. package/plugin/skills/livepilot-core/references/device-atlas/synths-native.md +953 -0
  44. package/plugin/skills/livepilot-core/references/m4l-devices.md +352 -0
  45. package/plugin/skills/livepilot-core/references/memory-guide.md +107 -0
  46. package/plugin/skills/livepilot-core/references/midi-recipes.md +402 -0
  47. package/plugin/skills/livepilot-core/references/mixing-patterns.md +578 -0
  48. package/plugin/skills/livepilot-core/references/overview.md +209 -0
  49. package/plugin/skills/livepilot-core/references/sound-design.md +392 -0
  50. package/remote_script/LivePilot/__init__.py +42 -0
  51. package/remote_script/LivePilot/arrangement.py +693 -0
  52. package/remote_script/LivePilot/browser.py +424 -0
  53. package/remote_script/LivePilot/clips.py +211 -0
  54. package/remote_script/LivePilot/devices.py +596 -0
  55. package/remote_script/LivePilot/diagnostics.py +198 -0
  56. package/remote_script/LivePilot/mixing.py +194 -0
  57. package/remote_script/LivePilot/notes.py +339 -0
  58. package/remote_script/LivePilot/router.py +74 -0
  59. package/remote_script/LivePilot/scenes.py +99 -0
  60. package/remote_script/LivePilot/server.py +293 -0
  61. package/remote_script/LivePilot/tracks.py +268 -0
  62. package/remote_script/LivePilot/transport.py +151 -0
  63. package/remote_script/LivePilot/utils.py +123 -0
  64. package/requirements.txt +2 -0
@@ -0,0 +1,110 @@
1
+ # Device Atlas — Master Index
2
+
3
+ > Last updated: 2026-03-18 | 10,600+ lines | 330+ devices | 139 drum kits | 350+ IRs | 1,850+ presets mapped
4
+
5
+ ## How to Use This Atlas
6
+
7
+ **Agent loading strategy:**
8
+ 1. Read this index first to understand what's available
9
+ 2. Based on the user's request, load only the relevant 1-2 category files
10
+ 3. For compound requests ("add compression and reverb"), load both relevant files
11
+ 4. For vibe-based requests ("make it darker"), load `presets-by-vibe.md`
12
+ 5. Always verify device existence via `search_browser` before loading — the atlas tells you WHAT and WHY, the browser confirms it EXISTS
13
+
14
+ ## Atlas Files
15
+
16
+ ### Sound Processing
17
+
18
+ | File | Scope | Devices | Lines |
19
+ |------|-------|---------|-------|
20
+ | [dynamics-and-punch.md](dynamics-and-punch.md) | Compressors, limiters, gates, transient shapers | 21 (6 native + 15 M4L) | 525 |
21
+ | [distortion-and-character.md](distortion-and-character.md) | Saturators, fuzz, amp sims, tape, IRs | 17 + 350 IRs | 687 |
22
+ | [space-and-depth.md](space-and-depth.md) | Reverbs, delays, diffusion, spatial | 19 (12 native + 7 M4L) | 571 |
23
+ | [movement-and-modulation.md](movement-and-modulation.md) | Chorus, phaser, LFOs, tremolo, auto-pan | 21 (5 native + 16 M4L) | 874 |
24
+ | [spectral-and-weird.md](spectral-and-weird.md) | Granular, glitch, spectral, experimental | 40 (5 native + 35 M4L) | 714 |
25
+ | [eq-and-filtering.md](eq-and-filtering.md) | EQs, filters, resonators, vocoder | 13 (8 native + 5 M4L) | 402 |
26
+
27
+ ### Sound Generation
28
+
29
+ | File | Scope | Devices | Lines |
30
+ |------|-------|---------|-------|
31
+ | [synths-native.md](synths-native.md) | All 11 Ableton instruments in depth | 11 native | 953 |
32
+ | [synths-m4l.md](synths-m4l.md) | Fors, Mutable Instruments, Sonus Dept, Spektro, etc. | 34 M4L | 730 |
33
+ | [plugins-synths.md](plugins-synths.md) | AU/VST plugin synths, samplers, drum machines, effects, MIDI tools | 49 entries (85+ plugins) | 1,300+ |
34
+ | [drums-and-percussion.md](drums-and-percussion.md) | Drum Rack, DS synths, kits by genre, M4L drum tools | 18 + 139 kits | 753 |
35
+
36
+ ### MIDI & Composition
37
+
38
+ | File | Scope | Devices | Lines |
39
+ |------|-------|---------|-------|
40
+ | [midi-tools.md](midi-tools.md) | Arpeggiators, chord tools, sequencers, generative | 45 (13 native + 32 M4L) | 963 |
41
+
42
+ ### Workflow & Utility
43
+
44
+ | File | Scope | Devices | Lines |
45
+ |------|-------|---------|-------|
46
+ | [utility-and-workflow.md](utility-and-workflow.md) | Meters, mapping, routing, QOL tools | 42 (3 native + 39 M4L) | 843 |
47
+
48
+ ### Cross-References
49
+
50
+ | File | Scope | Lines |
51
+ |------|-------|-------|
52
+ | [samples-and-irs.md](samples-and-irs.md) | 3,889 samples + Encoder Audio Mojo IR guide | 597 |
53
+ | [presets-by-vibe.md](presets-by-vibe.md) | 14 vibe categories mapping natural language → devices/presets | 727 |
54
+
55
+ ## Quick Routing Guide
56
+
57
+ **User says something about...** → **Load this file:**
58
+
59
+ | Request Pattern | Primary File | Secondary File |
60
+ |----------------|-------------|----------------|
61
+ | "make it punchier / harder / tighter" | dynamics-and-punch | distortion-and-character |
62
+ | "add warmth / grit / saturation / fuzz" | distortion-and-character | dynamics-and-punch |
63
+ | "more space / depth / reverb / delay / echo" | space-and-depth | — |
64
+ | "add movement / modulation / wobble / pulse" | movement-and-modulation | — |
65
+ | "glitch / granular / freeze / spectral / weird" | spectral-and-weird | — |
66
+ | "EQ / filter / tone / brighten / darken" | eq-and-filtering | — |
67
+ | "I need a synth / bass / pad / lead" | synths-native | synths-m4l, plugins-synths |
68
+ | "Moog / Drambo / granular / modular / DX7 / sampler plugin" | plugins-synths | — |
69
+ | "drums / beats / kick / snare / hat" | drums-and-percussion | — |
70
+ | "arpeggio / chord / sequence / generative / random" | midi-tools | — |
71
+ | "meter / gain / routing / utility / organize" | utility-and-workflow | — |
72
+ | "dark / ethereal / aggressive / lo-fi / cinematic" | presets-by-vibe | (then load the relevant device file) |
73
+ | "sample / one-shot / loop / IR / convolution" | samples-and-irs | — |
74
+ | "what M4L devices do I have for X" | (search relevant category) | utility-and-workflow |
75
+
76
+ ## Scope Notes
77
+
78
+ - **[universal]** files: synths-native, eq-and-filtering (native sections), dynamics-and-punch (native sections), space-and-depth (native sections), movement-and-modulation (native sections)
79
+ - **[user-library]** files: All M4L device entries, drums-and-percussion (kit guide), samples-and-irs, presets-by-vibe, utility-and-workflow (M4L sections), synths-m4l, spectral-and-weird (M4L sections)
80
+ - Always `search_browser` to verify M4L device availability before attempting to load
81
+ - The atlas is a strong hint system, not a guarantee — when in doubt, discover via `get_device_parameters`
82
+
83
+ ## M4L Collection Mapping
84
+
85
+ | Collection | Location in User Library | Atlas Coverage |
86
+ |-----------|------------------------|----------------|
87
+ | CLX_01 (QOL GUI) | MAX MONTY/_CLX_01 | utility-and-workflow |
88
+ | CLX_02 (FX) | MAX MONTY/_CLX_02 | dynamics, distortion, space, eq, movement |
89
+ | CLX_03 (MIDI) | MAX MONTY/_CLX_03 | midi-tools |
90
+ | CLX_04 (GEN) | MAX MONTY/_CLX_04 | spectral-and-weird, synths-m4l |
91
+ | CLX_05 (MOD) | MAX MONTY/_CLX_05 | movement-and-modulation |
92
+ | Fors | MAX MONTY/M4L_fors | synths-m4l, space-and-depth |
93
+ | Mutable Instruments | MAX MONTY/M4L_Mutable Instruments | synths-m4l, midi-tools |
94
+ | Sonus Dept | MAX MONTY/M4L_Sonus Dept | synths-m4l, spectral-and-weird |
95
+ | Confetti | MAX MONTY/M4L_Confetti | spectral-and-weird |
96
+ | J74 | MAX MONTY/M4L_J74 | midi-tools |
97
+ | Isotonik | MAX MONTY/M4L_Isotonik Studios | spectral-and-weird |
98
+ | Altar of Wisdom | MAX MONTY/M4L_Altar of Wisdom | spectral-and-weird |
99
+ | Oscilloscopemusic | MAX MONTY/M4L_Oscilloscopemusic | spectral-and-weird |
100
+ | Soundmanufacture | MAX MONTY/M4L_Soundmanufacture | midi-tools |
101
+ | Robert Henke | MAX MONTY/Robert Henke | utility-and-workflow, spectral-and-weird |
102
+ | Suzuki Kentaro | MAX MONTY/M4L_Suzuki Kentaro | utility-and-workflow |
103
+ | trnr | MAX MONTY/m4l_2024/_CLX_02/trnr | drums-and-percussion, distortion-and-character |
104
+ | pATCHES | MAX MONTY/M4L_pATCHES | utility-and-workflow |
105
+ | S8JFOU | MAX MONTY/M4L_S8JFOU | utility-and-workflow |
106
+ | alexkid | MAX MONTY/M4L_alexkid | utility-and-workflow |
107
+ | Slink | MAX MONTY/M4L_Slink Devices | movement-and-modulation |
108
+ | Iris | MAX MONTY/rem4llives | movement-and-modulation |
109
+ | All MIDI Tools | MAX MONTY/2024_august | midi-tools |
110
+ | Encoder Audio Mojo | MAX MONTY/_CLX_02/Encoder Audio Mojo | distortion-and-character, samples-and-irs |