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,167 @@
1
+ id: echo
2
+ name: Echo
3
+ sonic_description: >
4
+ Character-rich delay combining echo, modulation, reverb, ducking, and gate in one device.
5
+ More colorful than Delay — the built-in modulation adds chorus-like movement, the reverb
6
+ smears echoes, and ducking automatically lowers repeats when new audio arrives.
7
+ effect_type: delay
8
+ character_tags: [warm, modulated, characterful, musical, dub]
9
+ use_cases: [dub_echo, modulated_delay, ducking_delay, creative_echo, ambient]
10
+ genre_affinity:
11
+ primary: [dub, ambient, electronic, indie]
12
+ secondary: [pop, rock, shoegaze]
13
+ complexity: intermediate
14
+ signal_type: audio
15
+ introduced_in: "10.0"
16
+
17
+ key_parameters:
18
+ - name: "Left Time"
19
+ description: "Delay time for left channel — tempo-synced or free"
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
+ quarter: "1/4"
26
+
27
+ - name: "Right Time"
28
+ description: "Delay time for right channel"
29
+ range: ["1/16", "1/8T", "1/8", "3/16", "1/4T", "1/4", "3/8", "1/2", "1"]
30
+ type: enum
31
+ sweet_spots:
32
+ eighth: "1/8"
33
+ dotted_eighth: "3/16"
34
+ quarter: "1/4"
35
+
36
+ - name: "Feedback"
37
+ description: "Amount of echo fed back — controls repeat count and buildup"
38
+ range: [0.0, 110.0]
39
+ unit: "%"
40
+ type: float
41
+ sweet_spots:
42
+ few_taps: 30.0
43
+ dub: 60.0
44
+ self_oscillate: 100.0
45
+
46
+ - name: "Mod Rate"
47
+ description: "Speed of chorus/modulation on the delay taps"
48
+ range: [0.01, 20.0]
49
+ unit: Hz
50
+ type: float
51
+ sweet_spots:
52
+ slow: 0.5
53
+ moderate: 2.0
54
+ fast: 6.0
55
+
56
+ - name: "Mod Depth"
57
+ description: "Depth of pitch modulation on echoes"
58
+ range: [0.0, 100.0]
59
+ unit: "%"
60
+ type: float
61
+ sweet_spots:
62
+ subtle: 10.0
63
+ tape: 30.0
64
+ heavy: 60.0
65
+
66
+ - name: "Reverb Level"
67
+ description: "Built-in reverb amount on the echo signal"
68
+ range: [0.0, 100.0]
69
+ unit: "%"
70
+ type: float
71
+ sweet_spots:
72
+ off: 0.0
73
+ subtle: 20.0
74
+ washy: 50.0
75
+
76
+ - name: "Reverb Decay"
77
+ description: "Reverb tail length"
78
+ range: [0.1, 10.0]
79
+ unit: s
80
+ type: float
81
+ sweet_spots:
82
+ short: 0.5
83
+ medium: 1.5
84
+ long: 4.0
85
+
86
+ - name: "Duck Amount"
87
+ description: "How much the echo ducks when new input arrives — keeps echoes out of the way"
88
+ range: [0.0, 100.0]
89
+ unit: "%"
90
+ type: float
91
+ sweet_spots:
92
+ off: 0.0
93
+ subtle: 30.0
94
+ heavy: 70.0
95
+ full: 100.0
96
+
97
+ - name: "Gate"
98
+ description: "Gate threshold for rhythmic chopping of the echo tail"
99
+ range: [-inf, 0.0]
100
+ unit: dB
101
+ type: float
102
+ sweet_spots:
103
+ off: -inf
104
+ gate: -20.0
105
+
106
+ - name: "Dry/Wet"
107
+ description: "Mix between dry and echoed signal"
108
+ range: [0.0, 100.0]
109
+ unit: "%"
110
+ type: float
111
+ sweet_spots:
112
+ subtle: 15.0
113
+ moderate: 25.0
114
+ heavy: 40.0
115
+ return_track: 100.0
116
+
117
+ pairs_well_with:
118
+ - device: "EQ Eight"
119
+ reason: "Shape echo tone — cut lows before to prevent muddiness"
120
+ - device: "Saturator"
121
+ reason: "Warm saturation on Echo's output for tape-delay character"
122
+ - device: "Auto Filter"
123
+ reason: "Dynamic filtering of the echo trail for movement"
124
+ - device: "Compressor"
125
+ reason: "Tame echo dynamics on return tracks"
126
+
127
+ starter_recipes:
128
+ - name: "Dub Echo"
129
+ description: "Classic dub delay with modulation and reverb wash"
130
+ genre: dub
131
+ params:
132
+ "Left Time": "3/16"
133
+ "Right Time": "1/4"
134
+ Feedback: 55.0
135
+ "Mod Rate": 1.5
136
+ "Mod Depth": 25.0
137
+ "Reverb Level": 30.0
138
+ "Dry/Wet": 30.0
139
+
140
+ - name: "Modulated Tape"
141
+ description: "Warm, wobbly tape-delay character with pitch variation"
142
+ genre: indie
143
+ params:
144
+ "Left Time": "1/8"
145
+ "Right Time": "1/8"
146
+ Feedback: 40.0
147
+ "Mod Rate": 0.8
148
+ "Mod Depth": 45.0
149
+ "Dry/Wet": 25.0
150
+
151
+ - name: "Ducking Delay"
152
+ description: "Echo that stays out of the way during performance, fills gaps"
153
+ genre: pop
154
+ params:
155
+ "Left Time": "1/4"
156
+ "Right Time": "1/4"
157
+ Feedback: 35.0
158
+ "Duck Amount": 60.0
159
+ "Reverb Level": 15.0
160
+ "Dry/Wet": 30.0
161
+
162
+ gotchas:
163
+ - "Feedback above 100% causes intentional self-oscillation — use for buildup effects, reduce quickly"
164
+ - "Ducking is key for keeping echoes musical — set Duck Amount to 50-70% for clean performances"
165
+ - "Mod Depth at high values causes noticeable pitch wobble — can be a feature or a problem"
166
+ - "The built-in reverb is basic — for complex reverb tails, chain a dedicated Reverb after Echo"
167
+ - "Gate parameter is separate from the Gate device — it chops the echo tail rhythmically"
@@ -0,0 +1,148 @@
1
+ id: eq_eight
2
+ name: EQ Eight
3
+ sonic_description: >
4
+ Eight-band fully parametric equalizer — the workhorse of Ableton's mixing toolkit.
5
+ Each band offers selectable filter types with adjustable frequency, gain, and Q. Supports
6
+ oversampling for cleaner high-frequency processing and adaptive Q for natural-sounding boosts.
7
+ effect_type: eq
8
+ character_tags: [transparent, surgical, precise, clean, versatile]
9
+ use_cases: [mixing, mastering, surgical_eq, tonal_shaping, highpass, problem_solving]
10
+ genre_affinity:
11
+ primary: [all]
12
+ secondary: []
13
+ complexity: beginner
14
+ signal_type: audio
15
+ introduced_in: "8.0"
16
+
17
+ key_parameters:
18
+ - name: "Band 1 Type"
19
+ description: "Filter type for band 1"
20
+ range: ["HP 12", "HP 24", "HP 48", "Low Shelf", "Bell", "Notch", "High Shelf", "LP 12", "LP 24", "LP 48"]
21
+ type: enum
22
+ sweet_spots:
23
+ highpass: "HP 48"
24
+ low_shelf: "Low Shelf"
25
+
26
+ - name: "Band 1 Freq"
27
+ description: "Center/cutoff frequency for band 1"
28
+ range: [20.0, 20000.0]
29
+ unit: Hz
30
+ type: float
31
+ sweet_spots:
32
+ rumble_filter: 30.0
33
+ vocal_hp: 80.0
34
+ mud_cut: 300.0
35
+
36
+ - name: "Band 1 Gain"
37
+ description: "Gain for band 1 (bell/shelf types)"
38
+ range: [-15.0, 15.0]
39
+ unit: dB
40
+ type: float
41
+ sweet_spots:
42
+ subtle_cut: -3.0
43
+ moderate_boost: 3.0
44
+
45
+ - name: "Band 1 Q"
46
+ description: "Bandwidth/resonance — higher Q = narrower band"
47
+ range: [0.1, 18.0]
48
+ type: float
49
+ sweet_spots:
50
+ broad: 0.7
51
+ moderate: 1.4
52
+ surgical: 5.0
53
+ notch: 12.0
54
+
55
+ - name: "Band 4 Freq"
56
+ description: "Center frequency for band 4 — often used for presence"
57
+ range: [20.0, 20000.0]
58
+ unit: Hz
59
+ type: float
60
+ sweet_spots:
61
+ presence: 3000.0
62
+ vocal_clarity: 5000.0
63
+
64
+ - name: "Band 4 Gain"
65
+ description: "Gain for band 4"
66
+ range: [-15.0, 15.0]
67
+ unit: dB
68
+ type: float
69
+ sweet_spots:
70
+ presence_boost: 2.0
71
+ honk_cut: -3.0
72
+
73
+ - name: "Band 8 Type"
74
+ description: "Filter type for band 8 — commonly used as low-pass"
75
+ range: ["HP 12", "HP 24", "HP 48", "Low Shelf", "Bell", "Notch", "High Shelf", "LP 12", "LP 24", "LP 48"]
76
+ type: enum
77
+ sweet_spots:
78
+ lowpass: "LP 24"
79
+ high_shelf: "High Shelf"
80
+
81
+ - name: "Oversampling"
82
+ description: "Reduces aliasing at high frequencies — use for mastering"
83
+ type: toggle
84
+ range: [0, 1]
85
+ sweet_spots:
86
+ off: 0
87
+ mastering: 1
88
+
89
+ - name: "Scale"
90
+ description: "Scales all band gains proportionally — useful for A/B comparison"
91
+ range: [0.0, 100.0]
92
+ unit: "%"
93
+ type: float
94
+ sweet_spots:
95
+ full: 100.0
96
+ bypassed: 0.0
97
+
98
+ pairs_well_with:
99
+ - device: "Compressor"
100
+ reason: "EQ before compression to prevent low-end pumping"
101
+ - device: "Saturator"
102
+ reason: "Shape tone before saturation to control harmonic content"
103
+ - device: "Reverb"
104
+ reason: "Cut low-end before reverb to prevent muddy tails"
105
+ - device: "Utility"
106
+ reason: "EQ for tone, Utility for level — complete channel strip"
107
+
108
+ starter_recipes:
109
+ - name: "Surgical Mud Cut"
110
+ description: "Remove boxy mud frequencies to clean up any source"
111
+ genre: all
112
+ params:
113
+ "Band 1 Type": "Bell"
114
+ "Band 1 Freq": 400.0
115
+ "Band 1 Gain": -3.0
116
+ "Band 1 Q": 1.4
117
+
118
+ - name: "Presence Boost"
119
+ description: "Add clarity and presence to vocals or leads"
120
+ genre: all
121
+ params:
122
+ "Band 4 Type": "Bell"
123
+ "Band 4 Freq": 3000.0
124
+ "Band 4 Gain": 2.0
125
+ "Band 4 Q": 1.0
126
+
127
+ - name: "High-Pass Everything"
128
+ description: "Remove subsonic rumble from any non-bass track"
129
+ genre: all
130
+ params:
131
+ "Band 1 Type": "HP 48"
132
+ "Band 1 Freq": 30.0
133
+
134
+ - name: "Air Shelf"
135
+ description: "Add brightness and air to the top end"
136
+ genre: pop
137
+ params:
138
+ "Band 8 Type": "High Shelf"
139
+ "Band 8 Freq": 10000.0
140
+ "Band 8 Gain": 2.5
141
+
142
+ gotchas:
143
+ - "All 8 bands are off by default — enable each band individually with the power toggle"
144
+ - "Oversampling doubles CPU usage — use only when needed (mastering, high-frequency bell boosts)"
145
+ - "Cutting is almost always better than boosting — if something sounds dull, cut elsewhere rather than boosting"
146
+ - "The analyzer shows input (gray) and output (colored) — use it to verify your moves"
147
+ - "Very high Q values (>8) are for surgical notch cuts, not musical shaping"
148
+ - "HP filter on every non-bass track at 20-40 Hz is good practice to remove inaudible energy"
@@ -0,0 +1,121 @@
1
+ id: eq_three
2
+ name: EQ Three
3
+ sonic_description: >
4
+ Simple three-band EQ with low, mid, and high gain controls plus crossover frequency
5
+ adjustment and per-band kill switches. Designed for quick tonal adjustments and DJ-style
6
+ frequency isolation rather than surgical precision.
7
+ effect_type: eq
8
+ character_tags: [simple, quick, dj_style, performable]
9
+ use_cases: [dj_mixing, quick_eq, live_performance, frequency_kill]
10
+ genre_affinity:
11
+ primary: [house, techno, dj]
12
+ secondary: [all]
13
+ complexity: beginner
14
+ signal_type: audio
15
+ introduced_in: "1.0"
16
+
17
+ key_parameters:
18
+ - name: "GainLo"
19
+ description: "Low band gain"
20
+ range: [-inf, 6.0]
21
+ unit: dB
22
+ type: float
23
+ sweet_spots:
24
+ cut: -6.0
25
+ unity: 0.0
26
+ boost: 3.0
27
+
28
+ - name: "GainMid"
29
+ description: "Mid band gain"
30
+ range: [-inf, 6.0]
31
+ unit: dB
32
+ type: float
33
+ sweet_spots:
34
+ cut: -6.0
35
+ unity: 0.0
36
+ boost: 3.0
37
+
38
+ - name: "GainHi"
39
+ description: "High band gain"
40
+ range: [-inf, 6.0]
41
+ unit: dB
42
+ type: float
43
+ sweet_spots:
44
+ cut: -6.0
45
+ unity: 0.0
46
+ boost: 3.0
47
+
48
+ - name: "FreqLo"
49
+ description: "Low/Mid crossover frequency"
50
+ range: [20.0, 20000.0]
51
+ unit: Hz
52
+ type: float
53
+ sweet_spots:
54
+ standard: 250.0
55
+ deep: 120.0
56
+
57
+ - name: "FreqHi"
58
+ description: "Mid/High crossover frequency"
59
+ range: [20.0, 20000.0]
60
+ unit: Hz
61
+ type: float
62
+ sweet_spots:
63
+ standard: 2500.0
64
+ bright: 4000.0
65
+
66
+ - name: "LowOn"
67
+ description: "Low band kill switch — instantly mutes the low band"
68
+ type: toggle
69
+ range: [0, 1]
70
+
71
+ - name: "MidOn"
72
+ description: "Mid band kill switch — instantly mutes the mid band"
73
+ type: toggle
74
+ range: [0, 1]
75
+
76
+ - name: "HighOn"
77
+ description: "High band kill switch — instantly mutes the high band"
78
+ type: toggle
79
+ range: [0, 1]
80
+
81
+ pairs_well_with:
82
+ - device: "Utility"
83
+ reason: "Volume trim after EQ adjustments"
84
+ - device: "Auto Filter"
85
+ reason: "EQ Three for static shaping, Auto Filter for dynamic movement"
86
+ - device: "Beat Repeat"
87
+ reason: "EQ before Beat Repeat to control which frequencies get repeated"
88
+
89
+ starter_recipes:
90
+ - name: "DJ-Style EQ"
91
+ description: "Standard DJ isolator setup — ready for live frequency kills"
92
+ genre: dj
93
+ params:
94
+ GainLo: 0.0
95
+ GainMid: 0.0
96
+ GainHi: 0.0
97
+ FreqLo: 250.0
98
+ FreqHi: 2500.0
99
+
100
+ - name: "Quick Mix Adjustment"
101
+ description: "Warm up a thin mix or thin out a boomy one"
102
+ genre: all
103
+ params:
104
+ GainLo: 2.0
105
+ GainMid: -1.5
106
+ GainHi: 1.0
107
+
108
+ - name: "Bass Kill Transition"
109
+ description: "Remove low end for build-up tension — automate LowOn"
110
+ genre: electronic
111
+ params:
112
+ LowOn: 0
113
+ GainMid: 0.0
114
+ GainHi: 0.0
115
+
116
+ gotchas:
117
+ - "Kill switches create abrupt frequency changes — use gain knobs for smoother transitions"
118
+ - "Less precise than EQ Eight — use for quick adjustments, not surgical work"
119
+ - "The crossover slopes are relatively gentle — frequencies bleed between bands"
120
+ - "No Q control — each band has a fixed bandwidth"
121
+ - "Good for performance mapping to MIDI controllers due to simple parameter set"
@@ -0,0 +1,103 @@
1
+ id: erosion
2
+ name: Erosion
3
+ sonic_description: >
4
+ Frequency-dependent degradation effect that modulates the input signal with a sine wave
5
+ or noise to create aliasing, digital artifacts, and spectral erosion. Produces digital
6
+ dirt, metallic textures, and lo-fi degradation that sounds distinctly different from
7
+ analog-style distortion.
8
+ effect_type: distortion
9
+ character_tags: [digital, gritty, metallic, lo_fi, degraded]
10
+ use_cases: [digital_dirt, lo_fi_texture, aliasing, metallic_effects, subtle_degradation]
11
+ genre_affinity:
12
+ primary: [electronic, glitch, lo_fi, experimental]
13
+ secondary: [idm, industrial, sound_design]
14
+ complexity: beginner
15
+ signal_type: audio
16
+ introduced_in: "1.0"
17
+
18
+ key_parameters:
19
+ - name: "Amount"
20
+ description: "Intensity of the erosion effect — how much degradation is applied"
21
+ range: [0.0, 100.0]
22
+ unit: "%"
23
+ type: float
24
+ sweet_spots:
25
+ subtle: 10.0
26
+ moderate: 30.0
27
+ heavy: 60.0
28
+ extreme: 100.0
29
+
30
+ - name: "Frequency"
31
+ description: "Frequency of the modulation source — targets where the degradation occurs"
32
+ range: [20.0, 20000.0]
33
+ unit: Hz
34
+ type: float
35
+ sweet_spots:
36
+ low_rumble: 200.0
37
+ mid_grit: 2000.0
38
+ high_fizz: 8000.0
39
+ ultra_high: 15000.0
40
+
41
+ - name: "Mode"
42
+ description: "Type of modulation — Sine (tonal), Noise (broadband), Wide Noise (stereo)"
43
+ range: ["Sine", "Noise", "Wide Noise"]
44
+ type: enum
45
+ sweet_spots:
46
+ tonal_alias: "Sine"
47
+ broadband: "Noise"
48
+ stereo_noise: "Wide Noise"
49
+
50
+ - name: "Width"
51
+ description: "Bandwidth of the noise modulation (Noise modes only)"
52
+ range: [0.0, 100.0]
53
+ unit: "%"
54
+ type: float
55
+ sweet_spots:
56
+ narrow: 20.0
57
+ moderate: 50.0
58
+ wide: 80.0
59
+
60
+ pairs_well_with:
61
+ - device: "Saturator"
62
+ reason: "Layer digital erosion with analog saturation for complex texture"
63
+ - device: "Redux"
64
+ reason: "Combine with bit reduction for full lo-fi destruction"
65
+ - device: "EQ Eight"
66
+ reason: "Shape which frequencies reach the erosion for targeted degradation"
67
+ - device: "Auto Filter"
68
+ reason: "Dynamic filtering after erosion to control harsh artifacts"
69
+
70
+ starter_recipes:
71
+ - name: "Subtle Digital Dirt"
72
+ description: "Light digital texture that adds edge without obvious distortion"
73
+ genre: electronic
74
+ params:
75
+ Amount: 12.0
76
+ Frequency: 5000.0
77
+ Mode: "Noise"
78
+ Width: 40.0
79
+
80
+ - name: "Harsh Noise"
81
+ description: "Aggressive noise erosion for industrial or experimental textures"
82
+ genre: industrial
83
+ params:
84
+ Amount: 60.0
85
+ Frequency: 3000.0
86
+ Mode: "Wide Noise"
87
+ Width: 80.0
88
+
89
+ - name: "Aliasing Effect"
90
+ description: "Sine-wave modulation for metallic, aliased textures"
91
+ genre: glitch
92
+ params:
93
+ Amount: 40.0
94
+ Frequency: 7000.0
95
+ Mode: "Sine"
96
+
97
+ gotchas:
98
+ - "Sine mode creates tonal artifacts at the set Frequency — these can clash with musical content"
99
+ - "Very different from analog distortion — produces digital artifacts, not warm harmonics"
100
+ - "Amount at high values with high Frequency can be extremely harsh — start low"
101
+ - "Wide Noise mode creates stereo-decorrelated noise modulation — good for width but can sound phasey"
102
+ - "Works best as a subtle texture layer — a little goes a long way"
103
+ - "Frequency parameter determines the character more than Amount in many cases"