livepilot 1.9.23 → 1.10.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 (191) hide show
  1. package/.claude-plugin/marketplace.json +3 -3
  2. package/AGENTS.md +3 -3
  3. package/CHANGELOG.md +119 -0
  4. package/CONTRIBUTING.md +1 -1
  5. package/README.md +144 -13
  6. package/bin/livepilot.js +87 -0
  7. package/installer/codex.js +147 -0
  8. package/livepilot/.Codex-plugin/plugin.json +2 -2
  9. package/livepilot/.claude-plugin/plugin.json +2 -2
  10. package/livepilot/skills/livepilot-core/SKILL.md +21 -4
  11. package/livepilot/skills/livepilot-core/references/device-knowledge/00-index.md +34 -0
  12. package/livepilot/skills/livepilot-core/references/device-knowledge/automation-as-music.md +204 -0
  13. package/livepilot/skills/livepilot-core/references/device-knowledge/chains-genre.md +173 -0
  14. package/livepilot/skills/livepilot-core/references/device-knowledge/creative-thinking.md +211 -0
  15. package/livepilot/skills/livepilot-core/references/device-knowledge/effects-distortion.md +188 -0
  16. package/livepilot/skills/livepilot-core/references/device-knowledge/effects-space.md +162 -0
  17. package/livepilot/skills/livepilot-core/references/device-knowledge/effects-spectral.md +229 -0
  18. package/livepilot/skills/livepilot-core/references/device-knowledge/instruments-synths.md +243 -0
  19. package/livepilot/skills/livepilot-core/references/overview.md +13 -9
  20. package/livepilot/skills/livepilot-core/references/sample-manipulation.md +724 -0
  21. package/livepilot/skills/livepilot-core/references/sound-design-deep.md +140 -0
  22. package/livepilot/skills/livepilot-devices/SKILL.md +16 -2
  23. package/livepilot/skills/livepilot-evaluation/references/capability-modes.md +1 -1
  24. package/livepilot/skills/livepilot-release/SKILL.md +19 -5
  25. package/livepilot/skills/livepilot-sample-engine/SKILL.md +104 -0
  26. package/livepilot/skills/livepilot-sample-engine/references/sample-critics.md +87 -0
  27. package/livepilot/skills/livepilot-sample-engine/references/sample-philosophy.md +51 -0
  28. package/livepilot/skills/livepilot-sample-engine/references/sample-techniques.md +131 -0
  29. package/livepilot/skills/livepilot-sound-design-engine/SKILL.md +45 -0
  30. package/livepilot/skills/livepilot-wonder/SKILL.md +15 -0
  31. package/livepilot.mcpb +0 -0
  32. package/m4l_device/livepilot_bridge.js +1 -1
  33. package/manifest.json +2 -2
  34. package/mcp_server/__init__.py +1 -1
  35. package/mcp_server/atlas/__init__.py +357 -0
  36. package/mcp_server/atlas/device_atlas.json +44067 -0
  37. package/mcp_server/atlas/enrichments/__init__.py +111 -0
  38. package/mcp_server/atlas/enrichments/audio_effects/auto_filter.yaml +162 -0
  39. package/mcp_server/atlas/enrichments/audio_effects/beat_repeat.yaml +183 -0
  40. package/mcp_server/atlas/enrichments/audio_effects/channel_eq.yaml +126 -0
  41. package/mcp_server/atlas/enrichments/audio_effects/chorus_ensemble.yaml +149 -0
  42. package/mcp_server/atlas/enrichments/audio_effects/color_limiter.yaml +109 -0
  43. package/mcp_server/atlas/enrichments/audio_effects/compressor.yaml +159 -0
  44. package/mcp_server/atlas/enrichments/audio_effects/convolution_reverb.yaml +143 -0
  45. package/mcp_server/atlas/enrichments/audio_effects/convolution_reverb_pro.yaml +178 -0
  46. package/mcp_server/atlas/enrichments/audio_effects/delay.yaml +151 -0
  47. package/mcp_server/atlas/enrichments/audio_effects/drum_buss.yaml +142 -0
  48. package/mcp_server/atlas/enrichments/audio_effects/dynamic_tube.yaml +147 -0
  49. package/mcp_server/atlas/enrichments/audio_effects/echo.yaml +167 -0
  50. package/mcp_server/atlas/enrichments/audio_effects/eq_eight.yaml +148 -0
  51. package/mcp_server/atlas/enrichments/audio_effects/eq_three.yaml +121 -0
  52. package/mcp_server/atlas/enrichments/audio_effects/erosion.yaml +103 -0
  53. package/mcp_server/atlas/enrichments/audio_effects/filter_delay.yaml +173 -0
  54. package/mcp_server/atlas/enrichments/audio_effects/gate.yaml +130 -0
  55. package/mcp_server/atlas/enrichments/audio_effects/gated_delay.yaml +133 -0
  56. package/mcp_server/atlas/enrichments/audio_effects/glue_compressor.yaml +142 -0
  57. package/mcp_server/atlas/enrichments/audio_effects/grain_delay.yaml +141 -0
  58. package/mcp_server/atlas/enrichments/audio_effects/hybrid_reverb.yaml +160 -0
  59. package/mcp_server/atlas/enrichments/audio_effects/limiter.yaml +97 -0
  60. package/mcp_server/atlas/enrichments/audio_effects/multiband_dynamics.yaml +174 -0
  61. package/mcp_server/atlas/enrichments/audio_effects/overdrive.yaml +119 -0
  62. package/mcp_server/atlas/enrichments/audio_effects/pedal.yaml +145 -0
  63. package/mcp_server/atlas/enrichments/audio_effects/phaser_flanger.yaml +161 -0
  64. package/mcp_server/atlas/enrichments/audio_effects/redux.yaml +114 -0
  65. package/mcp_server/atlas/enrichments/audio_effects/reverb.yaml +190 -0
  66. package/mcp_server/atlas/enrichments/audio_effects/roar.yaml +159 -0
  67. package/mcp_server/atlas/enrichments/audio_effects/saturator.yaml +146 -0
  68. package/mcp_server/atlas/enrichments/audio_effects/shifter.yaml +154 -0
  69. package/mcp_server/atlas/enrichments/audio_effects/spectral_resonator.yaml +141 -0
  70. package/mcp_server/atlas/enrichments/audio_effects/spectral_time.yaml +164 -0
  71. package/mcp_server/atlas/enrichments/audio_effects/vector_delay.yaml +140 -0
  72. package/mcp_server/atlas/enrichments/audio_effects/vinyl_distortion.yaml +141 -0
  73. package/mcp_server/atlas/enrichments/instruments/analog.yaml +222 -0
  74. package/mcp_server/atlas/enrichments/instruments/bass.yaml +202 -0
  75. package/mcp_server/atlas/enrichments/instruments/collision.yaml +150 -0
  76. package/mcp_server/atlas/enrichments/instruments/drift.yaml +167 -0
  77. package/mcp_server/atlas/enrichments/instruments/electric.yaml +137 -0
  78. package/mcp_server/atlas/enrichments/instruments/emit.yaml +163 -0
  79. package/mcp_server/atlas/enrichments/instruments/meld.yaml +164 -0
  80. package/mcp_server/atlas/enrichments/instruments/operator.yaml +197 -0
  81. package/mcp_server/atlas/enrichments/instruments/poli.yaml +192 -0
  82. package/mcp_server/atlas/enrichments/instruments/sampler.yaml +218 -0
  83. package/mcp_server/atlas/enrichments/instruments/simpler.yaml +217 -0
  84. package/mcp_server/atlas/enrichments/instruments/tension.yaml +156 -0
  85. package/mcp_server/atlas/enrichments/instruments/tree_tone.yaml +162 -0
  86. package/mcp_server/atlas/enrichments/instruments/vector_fm.yaml +165 -0
  87. package/mcp_server/atlas/enrichments/instruments/vector_grain.yaml +166 -0
  88. package/mcp_server/atlas/enrichments/instruments/wavetable.yaml +162 -0
  89. package/mcp_server/atlas/enrichments/midi_effects/arpeggiator.yaml +156 -0
  90. package/mcp_server/atlas/enrichments/midi_effects/bouncy_notes.yaml +93 -0
  91. package/mcp_server/atlas/enrichments/midi_effects/chord.yaml +147 -0
  92. package/mcp_server/atlas/enrichments/midi_effects/melodic_steps.yaml +97 -0
  93. package/mcp_server/atlas/enrichments/midi_effects/note_echo.yaml +108 -0
  94. package/mcp_server/atlas/enrichments/midi_effects/note_length.yaml +97 -0
  95. package/mcp_server/atlas/enrichments/midi_effects/pitch.yaml +76 -0
  96. package/mcp_server/atlas/enrichments/midi_effects/random.yaml +117 -0
  97. package/mcp_server/atlas/enrichments/midi_effects/rhythmic_steps.yaml +103 -0
  98. package/mcp_server/atlas/enrichments/midi_effects/scale.yaml +83 -0
  99. package/mcp_server/atlas/enrichments/midi_effects/step_arp.yaml +112 -0
  100. package/mcp_server/atlas/enrichments/midi_effects/velocity.yaml +119 -0
  101. package/mcp_server/atlas/enrichments/utility/amp.yaml +159 -0
  102. package/mcp_server/atlas/enrichments/utility/cabinet.yaml +109 -0
  103. package/mcp_server/atlas/enrichments/utility/corpus.yaml +150 -0
  104. package/mcp_server/atlas/enrichments/utility/resonators.yaml +131 -0
  105. package/mcp_server/atlas/enrichments/utility/spectrum.yaml +63 -0
  106. package/mcp_server/atlas/enrichments/utility/tuner.yaml +51 -0
  107. package/mcp_server/atlas/enrichments/utility/utility.yaml +136 -0
  108. package/mcp_server/atlas/enrichments/utility/vocoder.yaml +160 -0
  109. package/mcp_server/atlas/scanner.py +236 -0
  110. package/mcp_server/atlas/tools.py +224 -0
  111. package/mcp_server/composer/__init__.py +1 -0
  112. package/mcp_server/composer/engine.py +452 -0
  113. package/mcp_server/composer/layer_planner.py +427 -0
  114. package/mcp_server/composer/prompt_parser.py +329 -0
  115. package/mcp_server/composer/tools.py +201 -0
  116. package/mcp_server/connection.py +53 -8
  117. package/mcp_server/corpus/__init__.py +377 -0
  118. package/mcp_server/device_forge/__init__.py +1 -0
  119. package/mcp_server/device_forge/builder.py +377 -0
  120. package/mcp_server/device_forge/models.py +142 -0
  121. package/mcp_server/device_forge/templates.py +483 -0
  122. package/mcp_server/device_forge/tools.py +162 -0
  123. package/mcp_server/hook_hunter/analyzer.py +23 -0
  124. package/mcp_server/hook_hunter/models.py +1 -0
  125. package/mcp_server/hook_hunter/tools.py +4 -2
  126. package/mcp_server/m4l_bridge.py +1 -0
  127. package/mcp_server/memory/taste_graph.py +68 -1
  128. package/mcp_server/memory/tools.py +15 -4
  129. package/mcp_server/musical_intelligence/detectors.py +14 -1
  130. package/mcp_server/musical_intelligence/tools.py +11 -8
  131. package/mcp_server/persistence/__init__.py +1 -0
  132. package/mcp_server/persistence/base_store.py +82 -0
  133. package/mcp_server/persistence/project_store.py +106 -0
  134. package/mcp_server/persistence/taste_store.py +122 -0
  135. package/mcp_server/preview_studio/models.py +1 -0
  136. package/mcp_server/preview_studio/tools.py +56 -13
  137. package/mcp_server/runtime/capability.py +66 -0
  138. package/mcp_server/runtime/capability_probe.py +137 -0
  139. package/mcp_server/runtime/execution_router.py +143 -0
  140. package/mcp_server/runtime/live_version.py +102 -0
  141. package/mcp_server/runtime/remote_commands.py +87 -0
  142. package/mcp_server/runtime/tools.py +18 -4
  143. package/mcp_server/sample_engine/__init__.py +1 -0
  144. package/mcp_server/sample_engine/analyzer.py +216 -0
  145. package/mcp_server/sample_engine/critics.py +390 -0
  146. package/mcp_server/sample_engine/models.py +193 -0
  147. package/mcp_server/sample_engine/moves.py +127 -0
  148. package/mcp_server/sample_engine/planner.py +186 -0
  149. package/mcp_server/sample_engine/sources.py +540 -0
  150. package/mcp_server/sample_engine/techniques.py +908 -0
  151. package/mcp_server/sample_engine/tools.py +442 -0
  152. package/mcp_server/semantic_moves/__init__.py +3 -0
  153. package/mcp_server/semantic_moves/device_creation_moves.py +237 -0
  154. package/mcp_server/semantic_moves/mix_moves.py +41 -41
  155. package/mcp_server/semantic_moves/performance_moves.py +13 -13
  156. package/mcp_server/semantic_moves/sample_compilers.py +372 -0
  157. package/mcp_server/semantic_moves/sound_design_moves.py +15 -15
  158. package/mcp_server/semantic_moves/tools.py +18 -17
  159. package/mcp_server/semantic_moves/transition_moves.py +16 -16
  160. package/mcp_server/server.py +51 -0
  161. package/mcp_server/services/__init__.py +1 -0
  162. package/mcp_server/services/motif_service.py +67 -0
  163. package/mcp_server/session_continuity/tracker.py +29 -1
  164. package/mcp_server/song_brain/builder.py +28 -1
  165. package/mcp_server/song_brain/models.py +4 -0
  166. package/mcp_server/song_brain/tools.py +20 -2
  167. package/mcp_server/sound_design/critics.py +89 -1
  168. package/mcp_server/splice_client/__init__.py +1 -0
  169. package/mcp_server/splice_client/client.py +347 -0
  170. package/mcp_server/splice_client/models.py +96 -0
  171. package/mcp_server/splice_client/protos/__init__.py +1 -0
  172. package/mcp_server/splice_client/protos/app_pb2.py +319 -0
  173. package/mcp_server/splice_client/protos/app_pb2.pyi +1153 -0
  174. package/mcp_server/splice_client/protos/app_pb2_grpc.py +1946 -0
  175. package/mcp_server/tools/arrangement.py +69 -0
  176. package/mcp_server/tools/automation.py +15 -2
  177. package/mcp_server/tools/devices.py +117 -6
  178. package/mcp_server/tools/notes.py +37 -4
  179. package/mcp_server/wonder_mode/diagnosis.py +5 -0
  180. package/mcp_server/wonder_mode/engine.py +85 -1
  181. package/mcp_server/wonder_mode/tools.py +6 -1
  182. package/package.json +12 -2
  183. package/remote_script/LivePilot/__init__.py +8 -1
  184. package/remote_script/LivePilot/arrangement.py +114 -0
  185. package/remote_script/LivePilot/browser.py +56 -1
  186. package/remote_script/LivePilot/devices.py +236 -6
  187. package/remote_script/LivePilot/mixing.py +8 -3
  188. package/remote_script/LivePilot/server.py +5 -1
  189. package/remote_script/LivePilot/transport.py +3 -0
  190. package/remote_script/LivePilot/version_detect.py +78 -0
  191. package/scripts/sync_metadata.py +132 -0
@@ -0,0 +1,192 @@
1
+ id: poli
2
+ name: Poli
3
+ sonic_description: >
4
+ Warm polyphonic synthesizer inspired by classic analog polysynths of the late 1970s
5
+ and early 1980s, with modern MPE expression support. Delivers lush chord pads, thick
6
+ stacked sounds, and expressive leads with the immediate playability and warm character
7
+ of vintage Roland and Sequential Circuits hardware.
8
+ synthesis_type: analog_modeling
9
+ character_tags: [warm, polyphonic, vintage, lush, expressive]
10
+ use_cases: [pads, chords, leads, stabs, keys]
11
+ genre_affinity:
12
+ primary: [synthwave, pop, ambient]
13
+ secondary: [house, lo_fi, new_wave, indie_electronic]
14
+ complexity: intermediate
15
+ self_contained: true
16
+ introduced_in: "12.0"
17
+
18
+ key_parameters:
19
+ - name: "Osc Shape"
20
+ description: "Oscillator waveform shape with continuous morphing"
21
+ range: [0.0, 1.0]
22
+ type: float
23
+ sweet_spots:
24
+ saw: 0.0
25
+ hybrid: 0.5
26
+ square: 1.0
27
+
28
+ - name: "Osc Detune"
29
+ description: "Detuning between oscillator copies for analog-style thickness"
30
+ range: [0.0, 1.0]
31
+ type: float
32
+ sweet_spots:
33
+ clean: 0.0
34
+ subtle_chorus: 0.15
35
+ thick_vintage: 0.35
36
+ extreme: 0.6
37
+
38
+ - name: "Filter Freq"
39
+ description: "Low-pass filter cutoff frequency"
40
+ range: [20.0, 20000.0]
41
+ unit: "Hz"
42
+ type: float
43
+ sweet_spots:
44
+ warm_pad: 1500.0
45
+ bright: 8000.0
46
+ closed: 400.0
47
+
48
+ - name: "Filter Res"
49
+ description: "Filter resonance with vintage-style self-oscillation character"
50
+ range: [0.0, 1.0]
51
+ type: float
52
+ sweet_spots:
53
+ clean: 0.0
54
+ warm: 0.2
55
+ squelchy: 0.55
56
+
57
+ - name: "Filter Env"
58
+ description: "Filter envelope amount — how much the envelope opens the filter"
59
+ range: [-1.0, 1.0]
60
+ type: float
61
+ sweet_spots:
62
+ pluck: 0.6
63
+ subtle: 0.2
64
+ negative_sweep: -0.3
65
+
66
+ - name: "Chorus"
67
+ description: "Built-in vintage-style chorus effect for instant width and warmth"
68
+ range: [0.0, 1.0]
69
+ type: float
70
+ sweet_spots:
71
+ off: 0.0
72
+ subtle: 0.3
73
+ full_juno: 0.7
74
+ extreme: 1.0
75
+
76
+ - name: "Attack"
77
+ description: "Amplitude envelope attack"
78
+ range: [0.0, 10000.0]
79
+ unit: "ms"
80
+ type: float
81
+ sweet_spots:
82
+ percussive: 0.0
83
+ soft: 100.0
84
+ pad: 500.0
85
+
86
+ - name: "Decay"
87
+ description: "Amplitude envelope decay"
88
+ range: [0.0, 10000.0]
89
+ unit: "ms"
90
+ type: float
91
+ sweet_spots:
92
+ stab: 150.0
93
+ natural: 500.0
94
+
95
+ - name: "Sustain"
96
+ description: "Amplitude envelope sustain level"
97
+ range: [0.0, 1.0]
98
+ type: float
99
+ sweet_spots:
100
+ stab: 0.0
101
+ held: 0.7
102
+ pad: 1.0
103
+
104
+ - name: "Release"
105
+ description: "Amplitude envelope release"
106
+ range: [0.0, 10000.0]
107
+ unit: "ms"
108
+ type: float
109
+ sweet_spots:
110
+ tight: 50.0
111
+ natural: 300.0
112
+ pad: 1500.0
113
+
114
+ - name: "MPE Press"
115
+ description: "MPE pressure response amount — how aftertouch affects sound"
116
+ range: [0.0, 1.0]
117
+ type: float
118
+ sweet_spots:
119
+ subtle: 0.2
120
+ responsive: 0.6
121
+
122
+ - name: "Voices"
123
+ description: "Polyphony count"
124
+ range: [1, 16]
125
+ type: int
126
+ sweet_spots:
127
+ mono: 1
128
+ standard: 6
129
+ full: 12
130
+
131
+ pairs_well_with:
132
+ - device: "Reverb"
133
+ reason: "Lush pads benefit from plate or hall reverb for depth"
134
+ - device: "Delay"
135
+ reason: "Rhythmic delays on chord stabs create movement and space"
136
+ - device: "Phaser-Flanger"
137
+ reason: "Classic 80s polysynth processing — phaser sweeps on pads"
138
+ - device: "Compressor"
139
+ reason: "Evens out dynamics for consistent chord pads in a mix"
140
+ - device: "EQ Eight"
141
+ reason: "Roll off low-end mud from thick detuned poly patches"
142
+
143
+ starter_recipes:
144
+ - name: "Vintage Poly Pad"
145
+ description: "Classic Juno-style warm pad with chorus and gentle filter"
146
+ genre: synthwave
147
+ params:
148
+ "Osc Shape": 0.0
149
+ "Osc Detune": 0.25
150
+ "Filter Freq": 2500.0
151
+ "Filter Res": 0.15
152
+ "Chorus": 0.65
153
+ "Attack": 300.0
154
+ "Sustain": 1.0
155
+ "Release": 1200.0
156
+
157
+ - name: "Stacked Chord"
158
+ description: "Thick, detuned polysynth chord stab with fast envelope"
159
+ genre: house
160
+ params:
161
+ "Osc Shape": 0.0
162
+ "Osc Detune": 0.3
163
+ "Filter Freq": 4000.0
164
+ "Filter Res": 0.1
165
+ "Filter Env": 0.3
166
+ "Chorus": 0.4
167
+ "Attack": 2.0
168
+ "Decay": 200.0
169
+ "Sustain": 0.5
170
+ "Release": 200.0
171
+
172
+ - name: "Expression Lead"
173
+ description: "Monophonic lead with MPE expression for live performance"
174
+ genre: pop
175
+ params:
176
+ "Osc Shape": 0.5
177
+ "Osc Detune": 0.1
178
+ "Filter Freq": 5000.0
179
+ "Filter Res": 0.3
180
+ "MPE Press": 0.6
181
+ "Voices": 1
182
+ "Attack": 5.0
183
+ "Decay": 300.0
184
+ "Sustain": 0.7
185
+ "Release": 200.0
186
+
187
+ gotchas:
188
+ - "New in Live 12 — exact parameter names may differ. Use get_device_parameters to discover the actual parameters"
189
+ - "The built-in Chorus is key to the vintage polysynth sound — enable it before reaching for external chorus"
190
+ - "Osc Detune interacts with voice count — higher voice counts with detune can phase-cancel at certain settings"
191
+ - "MPE features require an MPE controller to take full advantage — without one it still works as a great polysynth"
192
+ - "Filter self-oscillation behavior is modeled after vintage analog circuits — character varies with note pitch"
@@ -0,0 +1,218 @@
1
+ id: sampler
2
+ name: Sampler
3
+ sonic_description: >
4
+ Full-featured multi-zone sampler with velocity layers, key zones, round-robin
5
+ selection, and a deep modulation matrix. The most powerful sampling instrument
6
+ in Live, designed for building realistic multi-sampled instruments with complex
7
+ modulation routing, multiple filter types, and three LFOs.
8
+ synthesis_type: sampling
9
+ character_tags: [deep, powerful, realistic, multi_layered, professional]
10
+ use_cases: [multi_velocity_instruments, layered_pads, orchestral, chromatic_samples, realistic_instruments]
11
+ genre_affinity:
12
+ primary: [cinematic, orchestral, pop]
13
+ secondary: [electronic, hip_hop, ambient, jazz, all]
14
+ complexity: advanced
15
+ self_contained: false
16
+ introduced_in: "1.0"
17
+
18
+ key_parameters:
19
+ - name: "Filter Type"
20
+ description: "Filter topology — extensive selection of LP, HP, BP, Notch, and morphing filters"
21
+ range: ["LP12", "LP24", "HP12", "HP24", "BP", "Notch", "Morph"]
22
+ type: enum
23
+ sweet_spots:
24
+ warm: "LP12"
25
+ aggressive: "LP24"
26
+ morph: "Morph"
27
+
28
+ - name: "Filter Freq"
29
+ description: "Filter cutoff frequency"
30
+ range: [20.0, 20000.0]
31
+ unit: "Hz"
32
+ type: float
33
+ sweet_spots:
34
+ dark: 1000.0
35
+ warm: 4000.0
36
+ open: 18000.0
37
+
38
+ - name: "Filter Res"
39
+ description: "Filter resonance"
40
+ range: [0.0, 1.0]
41
+ type: float
42
+ sweet_spots:
43
+ clean: 0.0
44
+ subtle: 0.2
45
+ resonant: 0.5
46
+
47
+ - name: "Amp Attack"
48
+ description: "Amplitude envelope attack time"
49
+ range: [0.0, 10000.0]
50
+ unit: "ms"
51
+ type: float
52
+ sweet_spots:
53
+ instant: 0.0
54
+ natural: 10.0
55
+ pad: 500.0
56
+
57
+ - name: "Amp Decay"
58
+ description: "Amplitude envelope decay time"
59
+ range: [0.0, 10000.0]
60
+ unit: "ms"
61
+ type: float
62
+ sweet_spots:
63
+ short: 100.0
64
+ medium: 500.0
65
+
66
+ - name: "Amp Sustain"
67
+ description: "Amplitude envelope sustain level"
68
+ range: [0.0, 1.0]
69
+ type: float
70
+ sweet_spots:
71
+ percussive: 0.0
72
+ natural: 0.7
73
+ sustained: 1.0
74
+
75
+ - name: "Amp Release"
76
+ description: "Amplitude envelope release time"
77
+ range: [0.0, 10000.0]
78
+ unit: "ms"
79
+ type: float
80
+ sweet_spots:
81
+ tight: 30.0
82
+ natural: 300.0
83
+ ambient: 2000.0
84
+
85
+ - name: "Filter Env Amount"
86
+ description: "Filter envelope modulation depth"
87
+ range: [-1.0, 1.0]
88
+ type: float
89
+ sweet_spots:
90
+ subtle: 0.15
91
+ pluck: 0.5
92
+ dramatic: 0.8
93
+
94
+ - name: "Filter Attack"
95
+ description: "Filter envelope attack time"
96
+ range: [0.0, 10000.0]
97
+ unit: "ms"
98
+ type: float
99
+ sweet_spots:
100
+ instant: 0.0
101
+ medium: 200.0
102
+
103
+ - name: "Filter Decay"
104
+ description: "Filter envelope decay time"
105
+ range: [0.0, 10000.0]
106
+ unit: "ms"
107
+ type: float
108
+ sweet_spots:
109
+ short: 100.0
110
+ medium: 400.0
111
+
112
+ - name: "Pitch Env Amount"
113
+ description: "Pitch envelope modulation depth"
114
+ range: [-48.0, 48.0]
115
+ unit: "st"
116
+ type: float
117
+ sweet_spots:
118
+ none: 0.0
119
+ subtle: 2.0
120
+ kick_pitch: 12.0
121
+
122
+ - name: "LFO 1 Rate"
123
+ description: "LFO 1 speed"
124
+ range: [0.01, 30.0]
125
+ unit: "Hz"
126
+ type: float
127
+ sweet_spots:
128
+ slow: 0.2
129
+ vibrato: 5.5
130
+
131
+ - name: "LFO 1 Amount"
132
+ description: "LFO 1 modulation depth"
133
+ range: [0.0, 1.0]
134
+ type: float
135
+ sweet_spots:
136
+ subtle: 0.1
137
+ moderate: 0.3
138
+
139
+ - name: "Mod Matrix"
140
+ description: "Modulation matrix — route any source to any destination with scaled amount"
141
+ range: ["Matrix routing"]
142
+ type: enum
143
+
144
+ - name: "Vel > Filter"
145
+ description: "Velocity sensitivity of filter cutoff — higher velocity opens the filter"
146
+ range: [0.0, 1.0]
147
+ type: float
148
+ sweet_spots:
149
+ fixed: 0.0
150
+ subtle: 0.3
151
+ expressive: 0.7
152
+
153
+ - name: "Vel > Volume"
154
+ description: "Velocity sensitivity of output volume"
155
+ range: [0.0, 1.0]
156
+ type: float
157
+ sweet_spots:
158
+ fixed: 0.0
159
+ natural: 0.5
160
+ full_range: 1.0
161
+
162
+ pairs_well_with:
163
+ - device: "EQ Eight"
164
+ reason: "Surgical frequency shaping for multi-sampled instruments in a mix context"
165
+ - device: "Compressor"
166
+ reason: "Evens dynamics across velocity layers and key zones"
167
+ - device: "Reverb"
168
+ reason: "Places sampled instruments in a convincing acoustic space"
169
+ - device: "Saturator"
170
+ reason: "Adds warmth and harmonics to sterile or thin samples"
171
+ - device: "Utility"
172
+ reason: "Width and gain management for large multi-sample instruments"
173
+
174
+ starter_recipes:
175
+ - name: "Multi-Velocity Instrument"
176
+ description: "Expressive sampled instrument with velocity controlling both volume and brightness"
177
+ genre: cinematic
178
+ params:
179
+ "Filter Type": "LP12"
180
+ "Filter Freq": 8000.0
181
+ "Filter Res": 0.1
182
+ "Vel > Filter": 0.5
183
+ "Vel > Volume": 0.7
184
+ "Amp Attack": 5.0
185
+ "Amp Release": 400.0
186
+
187
+ - name: "Layered Pad"
188
+ description: "Thick pad from layered samples with slow envelopes and filtering"
189
+ genre: ambient
190
+ params:
191
+ "Filter Type": "LP12"
192
+ "Filter Freq": 3000.0
193
+ "Filter Res": 0.15
194
+ "Amp Attack": 800.0
195
+ "Amp Sustain": 1.0
196
+ "Amp Release": 2000.0
197
+ "LFO 1 Rate": 0.3
198
+ "LFO 1 Amount": 0.1
199
+
200
+ - name: "Chromatic Sample Spread"
201
+ description: "Sample spread across the keyboard with pitch tracking and natural dynamics"
202
+ genre: pop
203
+ params:
204
+ "Filter Type": "LP12"
205
+ "Filter Freq": 12000.0
206
+ "Vel > Volume": 0.6
207
+ "Amp Attack": 2.0
208
+ "Amp Decay": 500.0
209
+ "Amp Sustain": 0.7
210
+ "Amp Release": 300.0
211
+
212
+ gotchas:
213
+ - "Sampler requires samples loaded into zones — bare Sampler produces no sound. Always load a preset or configure zone maps"
214
+ - "Zone Map editing (key ranges, velocity layers) is GUI-only in Live — cannot be fully programmed via MCP"
215
+ - "Much more CPU-intensive than Simpler — use Simpler when you only need single-sample playback"
216
+ - "The modulation matrix is very deep — use get_device_parameters to discover all available routing options"
217
+ - "Round-robin and random sample selection are zone-level settings, not global — configure per zone"
218
+ - "Velocity layers should overlap slightly for smooth crossfading between dynamic levels"
@@ -0,0 +1,217 @@
1
+ id: simpler
2
+ name: Simpler
3
+ sonic_description: >
4
+ Streamlined sample-based instrument with three playback modes: Classic for chromatic
5
+ pitched playback, One-Shot for triggered samples, and Slicing for beat chopping.
6
+ The workhorse sampler for quick sample loading and manipulation with built-in filter,
7
+ envelope, and LFO — faster and simpler than Sampler for most tasks.
8
+ synthesis_type: sampling
9
+ character_tags: [versatile, immediate, sample_based, flexible, quick]
10
+ use_cases: [vocal_chops, drums, bass, pads, one_shots, sliced_beats]
11
+ genre_affinity:
12
+ primary: [hip_hop, electronic, pop, house]
13
+ secondary: [dnb, ambient, lo_fi, techno, trap]
14
+ complexity: beginner
15
+ self_contained: false
16
+ introduced_in: "1.0"
17
+
18
+ key_parameters:
19
+ - name: "Mode"
20
+ description: "Playback mode — Classic (pitched chromatic), One-Shot (triggered, ignores note-off), Slicing (auto-chop by transient/beat)"
21
+ range: ["Classic", "One-Shot", "Slicing"]
22
+ type: enum
23
+ sweet_spots:
24
+ pitched_instrument: "Classic"
25
+ drums_and_hits: "One-Shot"
26
+ beat_chopping: "Slicing"
27
+
28
+ - name: "Start"
29
+ description: "Sample playback start point"
30
+ range: [0.0, 1.0]
31
+ type: float
32
+ sweet_spots:
33
+ beginning: 0.0
34
+ skip_transient: 0.05
35
+
36
+ - name: "End"
37
+ description: "Sample playback end point"
38
+ range: [0.0, 1.0]
39
+ type: float
40
+ sweet_spots:
41
+ full_sample: 1.0
42
+ trimmed: 0.8
43
+
44
+ - name: "Loop On"
45
+ description: "Enable sample looping for sustained playback"
46
+ range: [0, 1]
47
+ type: int
48
+ sweet_spots:
49
+ one_shot: 0
50
+ sustained: 1
51
+
52
+ - name: "Loop Mode"
53
+ description: "Loop direction when looping is enabled"
54
+ range: ["Forward", "Back-Forth"]
55
+ type: enum
56
+ sweet_spots:
57
+ standard: "Forward"
58
+ smooth: "Back-Forth"
59
+
60
+ - name: "Filter Type"
61
+ description: "Filter topology for sample processing"
62
+ range: ["LP12", "LP24", "HP12", "HP24", "BP"]
63
+ type: enum
64
+ sweet_spots:
65
+ warmth: "LP12"
66
+ aggressive: "LP24"
67
+ thin: "HP12"
68
+
69
+ - name: "Filter Freq"
70
+ description: "Filter cutoff frequency"
71
+ range: [20.0, 20000.0]
72
+ unit: "Hz"
73
+ type: float
74
+ sweet_spots:
75
+ dark: 500.0
76
+ warm: 2000.0
77
+ bright: 12000.0
78
+
79
+ - name: "Filter Res"
80
+ description: "Filter resonance"
81
+ range: [0.0, 1.0]
82
+ type: float
83
+ sweet_spots:
84
+ clean: 0.0
85
+ colored: 0.3
86
+ resonant: 0.6
87
+
88
+ - name: "Amp Attack"
89
+ description: "Amplitude envelope attack time"
90
+ range: [0.0, 10000.0]
91
+ unit: "ms"
92
+ type: float
93
+ sweet_spots:
94
+ instant: 0.0
95
+ soft: 50.0
96
+ pad: 500.0
97
+
98
+ - name: "Amp Decay"
99
+ description: "Amplitude envelope decay time"
100
+ range: [0.0, 10000.0]
101
+ unit: "ms"
102
+ type: float
103
+ sweet_spots:
104
+ short_hit: 100.0
105
+ natural: 500.0
106
+
107
+ - name: "Amp Sustain"
108
+ description: "Amplitude envelope sustain level"
109
+ range: [0.0, 1.0]
110
+ type: float
111
+ sweet_spots:
112
+ percussive: 0.0
113
+ held: 0.8
114
+ full: 1.0
115
+
116
+ - name: "Amp Release"
117
+ description: "Amplitude envelope release time"
118
+ range: [0.0, 10000.0]
119
+ unit: "ms"
120
+ type: float
121
+ sweet_spots:
122
+ tight: 20.0
123
+ natural: 200.0
124
+ ambient: 1500.0
125
+
126
+ - name: "Warp"
127
+ description: "Enable time-stretching to lock sample to session tempo"
128
+ range: [0, 1]
129
+ type: int
130
+ sweet_spots:
131
+ off: 0
132
+ on: 1
133
+
134
+ - name: "Transpose"
135
+ description: "Sample pitch transposition"
136
+ range: [-48, 48]
137
+ unit: "st"
138
+ type: int
139
+ sweet_spots:
140
+ original: 0
141
+ octave_down: -12
142
+ octave_up: 12
143
+
144
+ - name: "Voices"
145
+ description: "Polyphony count — how many simultaneous notes"
146
+ range: [1, 32]
147
+ type: int
148
+ sweet_spots:
149
+ mono: 1
150
+ standard: 8
151
+ generous: 16
152
+
153
+ - name: "Spread"
154
+ description: "Stereo spread for polyphonic voices"
155
+ range: [0.0, 1.0]
156
+ type: float
157
+ sweet_spots:
158
+ mono: 0.0
159
+ subtle: 0.3
160
+ wide: 0.7
161
+
162
+ pairs_well_with:
163
+ - device: "Auto Filter"
164
+ reason: "Adds rhythmic filter movement and envelope following to sampled material"
165
+ - device: "Saturator"
166
+ reason: "Adds warmth and harmonics to thin or digital samples"
167
+ - device: "Reverb"
168
+ reason: "Places samples in a space — essential for one-shot vocals and atmospheric use"
169
+ - device: "Delay"
170
+ reason: "Creates rhythmic patterns from single one-shot samples"
171
+ - device: "Compressor"
172
+ reason: "Evens dynamics across the sample's playback range"
173
+ - device: "EQ Eight"
174
+ reason: "Shapes the sample's frequency content beyond what the built-in filter offers"
175
+
176
+ starter_recipes:
177
+ - name: "One-Shot Vocal Chop"
178
+ description: "Quick vocal chop triggered by MIDI with filter and reverb-ready output"
179
+ genre: pop
180
+ params:
181
+ "Mode": "One-Shot"
182
+ "Filter Type": "LP12"
183
+ "Filter Freq": 6000.0
184
+ "Filter Res": 0.1
185
+ "Amp Attack": 0.0
186
+ "Amp Release": 200.0
187
+
188
+ - name: "Looped Pad from Sample"
189
+ description: "Sustained pad created by looping a textural sample region"
190
+ genre: ambient
191
+ params:
192
+ "Mode": "Classic"
193
+ "Loop On": 1
194
+ "Loop Mode": "Back-Forth"
195
+ "Filter Type": "LP12"
196
+ "Filter Freq": 3000.0
197
+ "Amp Attack": 500.0
198
+ "Amp Sustain": 1.0
199
+ "Amp Release": 1500.0
200
+ "Voices": 8
201
+ "Spread": 0.5
202
+
203
+ - name: "Sliced Break"
204
+ description: "Drum break auto-sliced by transients for rearrangement and programming"
205
+ genre: dnb
206
+ params:
207
+ "Mode": "Slicing"
208
+ "Warp": 1
209
+
210
+ gotchas:
211
+ - "A bare Simpler (loaded empty) has NO sample — it produces silence. Always load a preset or use load_sample_to_simpler"
212
+ - "One-Shot mode ignores note-off — the sample always plays to the end (or until envelope release)"
213
+ - "Slicing mode changes the UI and parameter set significantly — some standard parameters are unavailable"
214
+ - "Warp must be ON for the sample to follow session tempo — off by default for pitched samples"
215
+ - "Transpose shifts pitch in semitones, not time — use Warp for time-stretching without pitch change"
216
+ - "crop_simpler and reverse_simpler are available as LivePilot tools for destructive sample editing"
217
+ - "replace_simpler_sample only works if a sample is already loaded — cannot replace an empty Simpler"