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,173 @@
1
+ id: filter_delay
2
+ name: Filter Delay
3
+ sonic_description: >
4
+ Three-tap delay with independent filters and panning per tap, routed to Left, Right,
5
+ and Center outputs. Each tap has its own delay time, feedback, filter frequency, and
6
+ pan position, enabling complex spatial echo patterns with frequency movement.
7
+ effect_type: delay
8
+ character_tags: [spatial, filtered, wide, complex, dub]
9
+ use_cases: [filtered_dub, stereo_movement, rhythmic_delay, spatial_effects, creative_echo]
10
+ genre_affinity:
11
+ primary: [dub, electronic, ambient]
12
+ secondary: [idm, techno, experimental]
13
+ complexity: intermediate
14
+ signal_type: audio
15
+ introduced_in: "1.0"
16
+
17
+ key_parameters:
18
+ - name: "L Delay Time"
19
+ description: "Delay time for the Left tap"
20
+ range: ["1/16", "1/8T", "1/8", "3/16", "1/4T", "1/4", "3/8", "1/2", "1"]
21
+ type: enum
22
+ sweet_spots:
23
+ eighth: "1/8"
24
+ dotted_eighth: "3/16"
25
+
26
+ - name: "L Filter Freq"
27
+ description: "Filter cutoff frequency for the Left tap"
28
+ range: [20.0, 20000.0]
29
+ unit: Hz
30
+ type: float
31
+ sweet_spots:
32
+ dark: 1000.0
33
+ warm: 3000.0
34
+ bright: 8000.0
35
+
36
+ - name: "L Feedback"
37
+ description: "Feedback amount for the Left tap"
38
+ range: [0.0, 100.0]
39
+ unit: "%"
40
+ type: float
41
+ sweet_spots:
42
+ few: 25.0
43
+ moderate: 50.0
44
+ dub: 70.0
45
+
46
+ - name: "L Pan"
47
+ description: "Stereo position for the Left tap"
48
+ range: [-100.0, 100.0]
49
+ type: float
50
+ sweet_spots:
51
+ hard_left: -100.0
52
+ center: 0.0
53
+
54
+ - name: "R Delay Time"
55
+ description: "Delay time for the Right tap"
56
+ range: ["1/16", "1/8T", "1/8", "3/16", "1/4T", "1/4", "3/8", "1/2", "1"]
57
+ type: enum
58
+ sweet_spots:
59
+ quarter: "1/4"
60
+ dotted_eighth: "3/16"
61
+
62
+ - name: "R Filter Freq"
63
+ description: "Filter cutoff frequency for the Right tap"
64
+ range: [20.0, 20000.0]
65
+ unit: Hz
66
+ type: float
67
+ sweet_spots:
68
+ dark: 1500.0
69
+ warm: 4000.0
70
+
71
+ - name: "R Feedback"
72
+ description: "Feedback amount for the Right tap"
73
+ range: [0.0, 100.0]
74
+ unit: "%"
75
+ type: float
76
+ sweet_spots:
77
+ few: 25.0
78
+ moderate: 50.0
79
+
80
+ - name: "R Pan"
81
+ description: "Stereo position for the Right tap"
82
+ range: [-100.0, 100.0]
83
+ type: float
84
+ sweet_spots:
85
+ hard_right: 100.0
86
+ center: 0.0
87
+
88
+ - name: "C Delay Time"
89
+ description: "Delay time for the Center tap"
90
+ range: ["1/16", "1/8T", "1/8", "3/16", "1/4T", "1/4", "3/8", "1/2", "1"]
91
+ type: enum
92
+ sweet_spots:
93
+ sixteenth: "1/16"
94
+ eighth: "1/8"
95
+
96
+ - name: "C Filter Freq"
97
+ description: "Filter cutoff frequency for the Center tap"
98
+ range: [20.0, 20000.0]
99
+ unit: Hz
100
+ type: float
101
+ sweet_spots:
102
+ mid: 2000.0
103
+ bright: 6000.0
104
+
105
+ - name: "Dry/Wet"
106
+ description: "Overall mix between dry and delayed signals"
107
+ range: [0.0, 100.0]
108
+ unit: "%"
109
+ type: float
110
+ sweet_spots:
111
+ subtle: 20.0
112
+ moderate: 35.0
113
+ heavy: 50.0
114
+
115
+ pairs_well_with:
116
+ - device: "Reverb"
117
+ reason: "Reverb after Filter Delay creates deep, evolving spatial effects"
118
+ - device: "Auto Filter"
119
+ reason: "Additional dynamic filtering on the delay output"
120
+ - device: "Saturator"
121
+ reason: "Warm saturation on the filtered echoes for analog character"
122
+
123
+ starter_recipes:
124
+ - name: "Filtered Dub"
125
+ description: "Classic dub-style delay with darkening echoes that pan across the stereo field"
126
+ genre: dub
127
+ params:
128
+ "L Delay Time": "3/16"
129
+ "L Filter Freq": 2000.0
130
+ "L Feedback": 50.0
131
+ "L Pan": -80.0
132
+ "R Delay Time": "1/4"
133
+ "R Filter Freq": 3000.0
134
+ "R Feedback": 40.0
135
+ "R Pan": 80.0
136
+ "Dry/Wet": 30.0
137
+
138
+ - name: "Stereo Movement"
139
+ description: "Wide stereo echoes at different rhythmic divisions for movement"
140
+ genre: electronic
141
+ params:
142
+ "L Delay Time": "1/8"
143
+ "L Filter Freq": 4000.0
144
+ "L Feedback": 30.0
145
+ "L Pan": -100.0
146
+ "R Delay Time": "3/16"
147
+ "R Filter Freq": 5000.0
148
+ "R Feedback": 30.0
149
+ "R Pan": 100.0
150
+ "C Delay Time": "1/16"
151
+ "C Filter Freq": 2000.0
152
+ "Dry/Wet": 25.0
153
+
154
+ - name: "Rhythmic Filter Delay"
155
+ description: "Polyrhythmic echoes with different filter colors per tap"
156
+ genre: idm
157
+ params:
158
+ "L Delay Time": "1/8"
159
+ "L Filter Freq": 1000.0
160
+ "L Feedback": 40.0
161
+ "R Delay Time": "1/4T"
162
+ "R Filter Freq": 6000.0
163
+ "R Feedback": 35.0
164
+ "C Delay Time": "1/16"
165
+ "C Filter Freq": 3000.0
166
+ "Dry/Wet": 35.0
167
+
168
+ gotchas:
169
+ - "Each tap can be independently enabled/disabled — check that the taps you want are active"
170
+ - "Different filter frequencies per tap make echoes progressively brighter or darker — use intentionally"
171
+ - "More complex than Delay but less feature-rich than Echo for modulation and ducking"
172
+ - "High feedback on multiple taps simultaneously can build up quickly — watch output levels"
173
+ - "Input can be routed to individual taps via L/R split or all three — check the input routing"
@@ -0,0 +1,130 @@
1
+ id: gate
2
+ name: Gate
3
+ sonic_description: >
4
+ Noise gate that silences audio below a threshold level. Tightens drums by removing
5
+ bleed, cleans up noisy recordings, and creates rhythmic chopping effects. The return
6
+ (hysteresis) parameter prevents rapid on/off chattering at the threshold.
7
+ effect_type: dynamics
8
+ character_tags: [clean, tight, surgical, rhythmic]
9
+ use_cases: [noise_removal, drum_tightening, bleed_reduction, creative_gating]
10
+ genre_affinity:
11
+ primary: [all]
12
+ secondary: []
13
+ complexity: beginner
14
+ signal_type: audio
15
+ introduced_in: "1.0"
16
+
17
+ key_parameters:
18
+ - name: "Threshold"
19
+ description: "Level below which the gate closes and mutes audio"
20
+ range: [-inf, 0.0]
21
+ unit: dB
22
+ type: float
23
+ sweet_spots:
24
+ gentle: -30.0
25
+ moderate: -20.0
26
+ aggressive: -12.0
27
+
28
+ - name: "Return"
29
+ description: "Hysteresis — how far below threshold the signal must drop to close the gate"
30
+ range: [-inf, 0.0]
31
+ unit: dB
32
+ type: float
33
+ sweet_spots:
34
+ tight: -2.0
35
+ moderate: -6.0
36
+ loose: -12.0
37
+
38
+ - name: "Attack"
39
+ description: "How fast the gate opens when signal exceeds threshold"
40
+ range: [0.01, 100.0]
41
+ unit: ms
42
+ type: float
43
+ sweet_spots:
44
+ instant: 0.01
45
+ natural: 0.5
46
+ soft: 5.0
47
+
48
+ - name: "Hold"
49
+ description: "Minimum time the gate stays open after signal drops below threshold"
50
+ range: [0.0, 500.0]
51
+ unit: ms
52
+ type: float
53
+ sweet_spots:
54
+ tight: 10.0
55
+ moderate: 50.0
56
+ long: 200.0
57
+
58
+ - name: "Release"
59
+ description: "How fast the gate closes after Hold time expires"
60
+ range: [1.0, 3000.0]
61
+ unit: ms
62
+ type: float
63
+ sweet_spots:
64
+ fast: 10.0
65
+ natural: 50.0
66
+ smooth: 200.0
67
+
68
+ - name: "Floor"
69
+ description: "Level of attenuation when gate is closed — full silence or partial reduction"
70
+ range: [-inf, 0.0]
71
+ unit: dB
72
+ type: float
73
+ sweet_spots:
74
+ full_gate: -inf
75
+ partial: -20.0
76
+ subtle: -10.0
77
+
78
+ - name: "Sidechain"
79
+ description: "External sidechain input for triggering the gate from another source"
80
+ type: toggle
81
+ range: [0, 1]
82
+
83
+ pairs_well_with:
84
+ - device: "Compressor"
85
+ reason: "Gate first to clean noise, then compress — avoids compressing noise floor"
86
+ - device: "EQ Eight"
87
+ reason: "Filter the sidechain or input to focus the gate on specific frequency ranges"
88
+ - device: "Drum Buss"
89
+ reason: "Gate for tightness, then Drum Buss for character"
90
+
91
+ starter_recipes:
92
+ - name: "Drum Tightening"
93
+ description: "Clean up drum bleed — keep only the direct hits"
94
+ genre: all
95
+ params:
96
+ Threshold: -20.0
97
+ Return: -6.0
98
+ Attack: 0.01
99
+ Hold: 20.0
100
+ Release: 30.0
101
+ Floor: -inf
102
+
103
+ - name: "Noise Removal"
104
+ description: "Remove background noise between vocal or instrument phrases"
105
+ genre: all
106
+ params:
107
+ Threshold: -35.0
108
+ Return: -10.0
109
+ Attack: 0.5
110
+ Hold: 50.0
111
+ Release: 100.0
112
+ Floor: -inf
113
+
114
+ - name: "Creative Gating"
115
+ description: "Rhythmic gating effect using sidechain from a rhythmic source"
116
+ genre: electronic
117
+ params:
118
+ Threshold: -15.0
119
+ Attack: 0.01
120
+ Hold: 10.0
121
+ Release: 10.0
122
+ Floor: -inf
123
+ Sidechain: 1
124
+
125
+ gotchas:
126
+ - "Set Return (hysteresis) at least -3 dB below Threshold to prevent rapid chattering"
127
+ - "Very fast attack can cause clicks — use 0.5ms minimum for natural-sounding transients"
128
+ - "Floor at -inf is complete silence; use -20 dB for more natural results on vocals"
129
+ - "Hold time is critical for drums — too short and the tail gets chopped, too long and bleed returns"
130
+ - "Sidechain gating with a rhythmic source (hi-hat pattern) creates trance-gate effects"
@@ -0,0 +1,133 @@
1
+ id: gated_delay
2
+ name: Gated Delay
3
+ sonic_description: >
4
+ Delay effect with a built-in rhythmic gate that chops the echo trail into patterned
5
+ bursts. Creates stuttered, rhythmically sculpted echoes that go beyond simple
6
+ repetition — from gated reverb-like effects to complex trance-gate delay textures.
7
+ effect_type: delay
8
+ character_tags: [rhythmic, gated, stuttered, patterned, creative]
9
+ use_cases: [rhythmic_stutter, gated_reverb_effect, trance_gate, creative_delay, transition_effects]
10
+ genre_affinity:
11
+ primary: [trance, electronic, house, techno]
12
+ secondary: [pop, edm, experimental]
13
+ complexity: intermediate
14
+ signal_type: audio
15
+ introduced_in: "12.0"
16
+ m4l_device: true
17
+
18
+ key_parameters:
19
+ - name: "Delay Time"
20
+ description: "Base delay time — synced to tempo"
21
+ range: ["1/16", "1/8T", "1/8", "3/16", "1/4T", "1/4", "3/8", "1/2", "1"]
22
+ type: enum
23
+ sweet_spots:
24
+ eighth: "1/8"
25
+ quarter: "1/4"
26
+
27
+ - name: "Feedback"
28
+ description: "Amount of delayed signal fed back into the delay"
29
+ range: [0.0, 100.0]
30
+ unit: "%"
31
+ type: float
32
+ sweet_spots:
33
+ few: 25.0
34
+ moderate: 45.0
35
+ dense: 70.0
36
+
37
+ - name: "Gate Rate"
38
+ description: "Speed of the rhythmic gate applied to the delay trail"
39
+ range: ["1/32", "1/16", "1/8", "1/4"]
40
+ type: enum
41
+ sweet_spots:
42
+ fast_stutter: "1/32"
43
+ sixteenth: "1/16"
44
+ eighth: "1/8"
45
+
46
+ - name: "Gate Amount"
47
+ description: "Depth of the gate effect — 0% = no gating, 100% = full silence between pulses"
48
+ range: [0.0, 100.0]
49
+ unit: "%"
50
+ type: float
51
+ sweet_spots:
52
+ subtle: 30.0
53
+ moderate: 60.0
54
+ full: 100.0
55
+
56
+ - name: "Gate Shape"
57
+ description: "Shape of the gate envelope — affects the character of the chopping"
58
+ range: [0.0, 100.0]
59
+ unit: "%"
60
+ type: float
61
+ sweet_spots:
62
+ sharp: 10.0
63
+ smooth: 50.0
64
+ soft: 80.0
65
+
66
+ - name: "Filter"
67
+ description: "Feedback filter frequency"
68
+ range: [20.0, 20000.0]
69
+ unit: Hz
70
+ type: float
71
+ sweet_spots:
72
+ dark: 2000.0
73
+ warm: 4000.0
74
+ bright: 8000.0
75
+
76
+ - name: "Dry/Wet"
77
+ description: "Mix between dry and gated delay signal"
78
+ range: [0.0, 100.0]
79
+ unit: "%"
80
+ type: float
81
+ sweet_spots:
82
+ subtle: 20.0
83
+ moderate: 35.0
84
+ heavy: 50.0
85
+
86
+ pairs_well_with:
87
+ - device: "Reverb"
88
+ reason: "Reverb after gated delay smears the stuttered echoes into a wash"
89
+ - device: "EQ Eight"
90
+ reason: "Shape the frequency content of the gated echoes"
91
+ - device: "Compressor"
92
+ reason: "Even out the dynamics of the gated delay on return tracks"
93
+
94
+ starter_recipes:
95
+ - name: "Rhythmic Stutter"
96
+ description: "Fast-gated delay for stuttered echo textures"
97
+ genre: electronic
98
+ params:
99
+ "Delay Time": "1/8"
100
+ Feedback: 40.0
101
+ "Gate Rate": "1/16"
102
+ "Gate Amount": 80.0
103
+ "Gate Shape": 30.0
104
+ "Dry/Wet": 30.0
105
+
106
+ - name: "Gated Reverb-Like"
107
+ description: "Simulates gated reverb using delay with fast gate"
108
+ genre: pop
109
+ params:
110
+ "Delay Time": "1/16"
111
+ Feedback: 60.0
112
+ "Gate Rate": "1/8"
113
+ "Gate Amount": 100.0
114
+ "Gate Shape": 20.0
115
+ "Dry/Wet": 35.0
116
+
117
+ - name: "Trance Gate Delay"
118
+ description: "Pulsing, rhythmic delay for trance buildups"
119
+ genre: trance
120
+ params:
121
+ "Delay Time": "1/4"
122
+ Feedback: 50.0
123
+ "Gate Rate": "1/16"
124
+ "Gate Amount": 90.0
125
+ "Gate Shape": 40.0
126
+ "Dry/Wet": 40.0
127
+
128
+ gotchas:
129
+ - "This is a Max for Live device — requires Suite or M4L license"
130
+ - "Gate Rate interacts with Delay Time — choose complementary subdivisions for musical results"
131
+ - "High Feedback + high Gate Amount can create very rhythmic but potentially loud buildup"
132
+ - "Gate Shape at 0% creates hard, clicky cuts — increase for smoother transitions"
133
+ - "Best used on a return track for parallel processing control"
@@ -0,0 +1,142 @@
1
+ id: glue_compressor
2
+ name: Glue Compressor
3
+ sonic_description: >
4
+ SSL-style bus compressor modeled on the classic analog mix bus compressor. Adds cohesion
5
+ and punch with musical timing characteristics. Fixed ratio options and a Range control
6
+ give it a distinct, glue-like character that bonds mix elements together.
7
+ effect_type: dynamics
8
+ character_tags: [punchy, warm, musical, cohesive, analog]
9
+ use_cases: [bus_glue, drum_bus, mix_bus, parallel_compression, mastering]
10
+ genre_affinity:
11
+ primary: [all]
12
+ secondary: []
13
+ complexity: beginner
14
+ signal_type: audio
15
+ introduced_in: "9.0"
16
+
17
+ key_parameters:
18
+ - name: "Threshold"
19
+ description: "Level above which compression engages"
20
+ range: [-inf, 0.0]
21
+ unit: dB
22
+ type: float
23
+ sweet_spots:
24
+ gentle: -15.0
25
+ moderate: -25.0
26
+ heavy: -35.0
27
+
28
+ - name: "Ratio"
29
+ description: "Fixed compression ratios matching classic SSL design"
30
+ range: [2, 4, 10]
31
+ type: enum
32
+ sweet_spots:
33
+ bus_glue: 2
34
+ drum_punch: 4
35
+ parallel_crush: 10
36
+
37
+ - name: "Attack"
38
+ description: "Attack time — fast attacks clamp transients, slow attacks let punch through"
39
+ range: [0.01, 30.0]
40
+ unit: ms
41
+ type: float
42
+ sweet_spots:
43
+ fast_clamp: 0.1
44
+ punch: 1.0
45
+ slow_natural: 10.0
46
+ slowest: 30.0
47
+
48
+ - name: "Release"
49
+ description: "Release time — Auto mode tracks program material"
50
+ range: [0.1, 1.2]
51
+ unit: s
52
+ type: float
53
+ sweet_spots:
54
+ fast: 0.1
55
+ medium: 0.4
56
+ slow: 1.2
57
+ auto: -1
58
+
59
+ - name: "Range"
60
+ description: "Limits maximum gain reduction — prevents over-compression"
61
+ range: [-inf, 0.0]
62
+ unit: dB
63
+ type: float
64
+ sweet_spots:
65
+ subtle: -6.0
66
+ moderate: -12.0
67
+ unlimited: -inf
68
+
69
+ - name: "Makeup"
70
+ description: "Output gain compensation"
71
+ range: [-inf, 15.0]
72
+ unit: dB
73
+ type: float
74
+ sweet_spots:
75
+ compensate: 4.0
76
+
77
+ - name: "Dry/Wet"
78
+ description: "Parallel compression blend — mix dry signal with compressed"
79
+ range: [0.0, 100.0]
80
+ unit: "%"
81
+ type: float
82
+ sweet_spots:
83
+ full: 100.0
84
+ parallel: 50.0
85
+ subtle_parallel: 30.0
86
+
87
+ - name: "Soft Clip"
88
+ description: "Applies gentle saturation clipping on output for analog warmth"
89
+ type: toggle
90
+ range: [0, 1]
91
+ sweet_spots:
92
+ off: 0
93
+ warm: 1
94
+
95
+ pairs_well_with:
96
+ - device: "EQ Eight"
97
+ reason: "Surgical EQ before the bus compressor to tame problematic frequencies"
98
+ - device: "Saturator"
99
+ reason: "Subtle saturation after Glue for extra analog warmth"
100
+ - device: "Limiter"
101
+ reason: "Final peak protection after bus compression"
102
+ - device: "Utility"
103
+ reason: "Level trim and width control after bus processing"
104
+
105
+ starter_recipes:
106
+ - name: "Mix Bus Glue"
107
+ description: "Classic SSL mix bus treatment — subtle cohesion without squash"
108
+ genre: all
109
+ params:
110
+ Threshold: -18.0
111
+ Ratio: 2
112
+ Attack: 10.0
113
+ Release: -1
114
+ Range: -6.0
115
+ Soft Clip: 1
116
+
117
+ - name: "Drum Bus Punch"
118
+ description: "Punchy drum bus with transient preservation and controlled sustain"
119
+ genre: all
120
+ params:
121
+ Threshold: -25.0
122
+ Ratio: 4
123
+ Attack: 1.0
124
+ Release: 0.1
125
+ Range: -12.0
126
+
127
+ - name: "Parallel Crush"
128
+ description: "Aggressive compression blended in for power and density"
129
+ genre: rock
130
+ params:
131
+ Threshold: -35.0
132
+ Ratio: 10
133
+ Attack: 0.1
134
+ Release: 0.1
135
+ "Dry/Wet": 40.0
136
+
137
+ gotchas:
138
+ - "Only three fixed ratios (2, 4, 10) — no continuous ratio control like Compressor"
139
+ - "Range parameter is unique to Glue Compressor — it limits maximum gain reduction, great for preventing over-compression"
140
+ - "Auto Release mode is usually the best starting point for bus compression"
141
+ - "Soft Clip adds subtle harmonic content — good for warmth but can change the tonal balance"
142
+ - "At extreme settings the fixed ratios make it less flexible than Compressor for surgical work"