livepilot 1.26.0 → 1.26.1
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.
- package/CHANGELOG.md +24 -0
- package/README.md +1 -1
- package/installer/codex.js +87 -9
- package/livepilot/.Codex-plugin/plugin.json +8 -0
- package/livepilot/.claude-plugin/plugin.json +8 -0
- package/livepilot/.mcp.json +8 -0
- package/livepilot/agents/livepilot-producer/AGENT.md +314 -0
- package/livepilot/commands/arrange.md +47 -0
- package/livepilot/commands/beat.md +81 -0
- package/livepilot/commands/evaluate.md +49 -0
- package/livepilot/commands/memory.md +22 -0
- package/livepilot/commands/mix.md +47 -0
- package/livepilot/commands/perform.md +42 -0
- package/livepilot/commands/session.md +13 -0
- package/livepilot/commands/sounddesign.md +58 -0
- package/livepilot/rubrics/default_preset_check.md +82 -0
- package/livepilot/rubrics/layer_accumulation.md +79 -0
- package/livepilot/rubrics/layer_precision.md +79 -0
- package/livepilot/rubrics/modulation_presence.md +63 -0
- package/livepilot/rubrics/sound_design_depth.md +40 -0
- package/livepilot/skills/livepilot-arrangement/SKILL.md +164 -0
- package/livepilot/skills/livepilot-composition-engine/SKILL.md +151 -0
- package/livepilot/skills/livepilot-composition-engine/references/form-patterns.md +97 -0
- package/livepilot/skills/livepilot-composition-engine/references/transition-archetypes.md +102 -0
- package/livepilot/skills/livepilot-core/SKILL.md +261 -0
- package/livepilot/skills/livepilot-core/references/ableton-workflow-patterns.md +831 -0
- package/livepilot/skills/livepilot-core/references/affordances/_schema.md +160 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/auto-filter.yaml +133 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/chorus-ensemble.yaml +91 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/compressor.yaml +98 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/convolution-reverb.yaml +113 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/corpus.yaml +84 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/drift.yaml +105 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/echo.yaml +108 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/eq-eight.yaml +95 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/glue-compressor.yaml +88 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/granulator-iii.yaml +104 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/hybrid-reverb.yaml +83 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/operator.yaml +98 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/ping-pong-delay.yaml +104 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/poli.yaml +98 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/saturator.yaml +98 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/shifter.yaml +77 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/simpler.yaml +113 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/utility.yaml +95 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/vinyl-distortion.yaml +92 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/wavetable.yaml +98 -0
- package/livepilot/skills/livepilot-core/references/artist-vocabularies.md +389 -0
- package/livepilot/skills/livepilot-core/references/automation-atlas.md +272 -0
- package/livepilot/skills/livepilot-core/references/concepts/_schema.md +158 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/akufen.yaml +116 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/aphex-twin.yaml +133 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/arca-sophie.yaml +131 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/autechre.yaml +130 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/basic-channel.yaml +140 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/basinski.yaml +126 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/boards-of-canada.yaml +124 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/burial.yaml +127 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/com-truise-tycho.yaml +121 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/daft-punk.yaml +117 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/dj-premier-rza.yaml +119 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/gas.yaml +134 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/hawtin.yaml +127 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/isolee-luomo.yaml +130 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/j-dilla.yaml +133 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/jeff-mills.yaml +120 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/johannsson-richter.yaml +132 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/madlib.yaml +124 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/moodymann-theo-parrish.yaml +121 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/oneohtrix-point-never.yaml +126 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/photek-source-direct.yaml +120 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/rashad-spinn-traxman.yaml +122 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/robert-henke.yaml +113 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/shackleton.yaml +124 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/skream-mala.yaml +119 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/stars-of-the-lid.yaml +119 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/tim-hecker.yaml +122 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/villalobos.yaml +135 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/ambient.yaml +137 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/boom_bap.yaml +124 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/deep-minimal.yaml +130 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/deep_house.yaml +130 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/detroit_techno.yaml +116 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/disco.yaml +123 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/downtempo.yaml +129 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/drone.yaml +133 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/drum-and-bass.yaml +119 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/dub-techno.yaml +132 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/dub.yaml +129 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/dubstep.yaml +120 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/experimental.yaml +136 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/footwork.yaml +119 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/hip-hop.yaml +132 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/house.yaml +126 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/hyperpop.yaml +128 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/idm.yaml +134 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/lo_fi.yaml +129 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/microhouse.yaml +138 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/minimal-techno.yaml +116 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/modern-classical.yaml +123 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/soul.yaml +125 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/synthwave.yaml +123 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/techno.yaml +123 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/trap.yaml +120 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/uk-garage.yaml +121 -0
- package/livepilot/skills/livepilot-core/references/device-atlas/00-index.md +110 -0
- package/livepilot/skills/livepilot-core/references/device-atlas/distortion-and-character.md +687 -0
- package/livepilot/skills/livepilot-core/references/device-atlas/drums-and-percussion.md +753 -0
- package/livepilot/skills/livepilot-core/references/device-atlas/dynamics-and-punch.md +525 -0
- package/livepilot/skills/livepilot-core/references/device-atlas/eq-and-filtering.md +402 -0
- package/livepilot/skills/livepilot-core/references/device-atlas/midi-tools.md +963 -0
- package/livepilot/skills/livepilot-core/references/device-atlas/movement-and-modulation.md +874 -0
- package/livepilot/skills/livepilot-core/references/device-atlas/space-and-depth.md +571 -0
- package/livepilot/skills/livepilot-core/references/device-atlas/spectral-and-weird.md +714 -0
- package/livepilot/skills/livepilot-core/references/device-atlas/synths-native.md +953 -0
- package/livepilot/skills/livepilot-core/references/device-knowledge/00-index.md +34 -0
- package/livepilot/skills/livepilot-core/references/device-knowledge/automation-as-music.md +204 -0
- package/livepilot/skills/livepilot-core/references/device-knowledge/chains-genre.md +173 -0
- package/livepilot/skills/livepilot-core/references/device-knowledge/creative-thinking.md +211 -0
- package/livepilot/skills/livepilot-core/references/device-knowledge/effects-distortion.md +188 -0
- package/livepilot/skills/livepilot-core/references/device-knowledge/effects-space.md +162 -0
- package/livepilot/skills/livepilot-core/references/device-knowledge/effects-spectral.md +229 -0
- package/livepilot/skills/livepilot-core/references/device-knowledge/instruments-synths.md +243 -0
- package/livepilot/skills/livepilot-core/references/genre-vocabularies.md +382 -0
- package/livepilot/skills/livepilot-core/references/m4l-devices.md +352 -0
- package/livepilot/skills/livepilot-core/references/memory-guide.md +178 -0
- package/livepilot/skills/livepilot-core/references/midi-recipes.md +402 -0
- package/livepilot/skills/livepilot-core/references/mixing-patterns.md +578 -0
- package/livepilot/skills/livepilot-core/references/overview.md +300 -0
- package/livepilot/skills/livepilot-core/references/pack-knowledge.md +319 -0
- package/livepilot/skills/livepilot-core/references/sample-manipulation.md +724 -0
- package/livepilot/skills/livepilot-core/references/sound-design-deep.md +140 -0
- package/livepilot/skills/livepilot-core/references/sound-design.md +393 -0
- package/livepilot/skills/livepilot-corpus-builder/SKILL.md +379 -0
- package/livepilot/skills/livepilot-creative-director/SKILL.md +455 -0
- package/livepilot/skills/livepilot-creative-director/references/anti-repetition-rules.md +214 -0
- package/livepilot/skills/livepilot-creative-director/references/creative-brief-template.md +222 -0
- package/livepilot/skills/livepilot-creative-director/references/hybrid-compilation.md +185 -0
- package/livepilot/skills/livepilot-creative-director/references/move-family-diversity-rule.md +258 -0
- package/livepilot/skills/livepilot-creative-director/references/phase-6-execution.md +409 -0
- package/livepilot/skills/livepilot-creative-director/references/the-four-move-rule.md +192 -0
- package/livepilot/skills/livepilot-devices/SKILL.md +213 -0
- package/livepilot/skills/livepilot-devices/references/load_browser_item-uri-grammar.md +82 -0
- package/livepilot/skills/livepilot-evaluation/SKILL.md +195 -0
- package/livepilot/skills/livepilot-evaluation/references/capability-modes.md +176 -0
- package/livepilot/skills/livepilot-evaluation/references/evaluation-contracts.md +121 -0
- package/livepilot/skills/livepilot-evaluation/references/memory-promotion.md +110 -0
- package/livepilot/skills/livepilot-mix-engine/SKILL.md +136 -0
- package/livepilot/skills/livepilot-mix-engine/references/mix-critics.md +143 -0
- package/livepilot/skills/livepilot-mix-engine/references/mix-moves.md +105 -0
- package/livepilot/skills/livepilot-mixing/SKILL.md +157 -0
- package/livepilot/skills/livepilot-notes/SKILL.md +130 -0
- package/livepilot/skills/livepilot-performance-engine/SKILL.md +122 -0
- package/livepilot/skills/livepilot-performance-engine/references/performance-safety.md +98 -0
- package/livepilot/skills/livepilot-release/SKILL.md +151 -0
- package/livepilot/skills/livepilot-sample-engine/SKILL.md +117 -0
- package/livepilot/skills/livepilot-sample-engine/references/sample-critics.md +87 -0
- package/livepilot/skills/livepilot-sample-engine/references/sample-philosophy.md +51 -0
- package/livepilot/skills/livepilot-sample-engine/references/sample-techniques.md +131 -0
- package/livepilot/skills/livepilot-sound-design-engine/SKILL.md +225 -0
- package/livepilot/skills/livepilot-sound-design-engine/references/patch-model.md +119 -0
- package/livepilot/skills/livepilot-sound-design-engine/references/sound-design-critics.md +118 -0
- package/livepilot/skills/livepilot-wonder/SKILL.md +143 -0
- package/m4l_device/LivePilot_Analyzer.amxd +0 -0
- package/m4l_device/LivePilot_Elektron.amxd +0 -0
- package/m4l_device/LivePilot_Elektron.maxpat +758 -0
- package/m4l_device/livepilot_bridge.js +1 -1
- package/m4l_device/livepilot_elektron_bridge.js +82 -0
- package/mcp_server/__init__.py +1 -1
- package/mcp_server/composer/develop/apply.py +1 -1
- package/mcp_server/composer/full/apply.py +32 -6
- package/mcp_server/m4l_bridge.py +5 -0
- package/mcp_server/runtime/execution_router.py +6 -0
- package/mcp_server/runtime/mcp_dispatch.py +18 -0
- package/mcp_server/runtime/remote_commands.py +2 -0
- package/mcp_server/server.py +11 -7
- package/package.json +20 -5
- package/remote_script/LivePilot/__init__.py +1 -1
- package/remote_script/LivePilot/server.py +63 -2
- package/requirements.txt +3 -3
- package/server.json +3 -3
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
id: house
|
|
2
|
+
name: House / Deep House
|
|
3
|
+
type: genre
|
|
4
|
+
aliases:
|
|
5
|
+
- "house"
|
|
6
|
+
- "deep house"
|
|
7
|
+
- "soulful house"
|
|
8
|
+
|
|
9
|
+
sonic_identity:
|
|
10
|
+
- 120-126 BPM straight 4/4
|
|
11
|
+
- full-bodied kick ~60 Hz
|
|
12
|
+
- open hat on off-beat
|
|
13
|
+
- chord pads (7th / 9th chords)
|
|
14
|
+
- Rhodes-style keys
|
|
15
|
+
- vocal samples
|
|
16
|
+
|
|
17
|
+
reach_for:
|
|
18
|
+
instruments:
|
|
19
|
+
- Poli # pad
|
|
20
|
+
- Drift
|
|
21
|
+
- Electric Keyboards # Rhodes
|
|
22
|
+
- Bass
|
|
23
|
+
- Simpler
|
|
24
|
+
effects:
|
|
25
|
+
- Compressor # sidechained via Envelope Follower
|
|
26
|
+
- Auto Filter
|
|
27
|
+
- Reverb
|
|
28
|
+
- Chorus-Ensemble
|
|
29
|
+
packs:
|
|
30
|
+
- Synth Essentials
|
|
31
|
+
- Electric Keyboards
|
|
32
|
+
- Core Library
|
|
33
|
+
utilities:
|
|
34
|
+
- EQ Eight
|
|
35
|
+
|
|
36
|
+
avoid:
|
|
37
|
+
- minor 7th dominance (unless jazz-house)
|
|
38
|
+
- dry production
|
|
39
|
+
- modern trap aesthetics
|
|
40
|
+
|
|
41
|
+
rhythm_idioms:
|
|
42
|
+
- steady 4/4 house kick
|
|
43
|
+
- hi-hat on off-beat
|
|
44
|
+
- clap on 2+4
|
|
45
|
+
- shakers
|
|
46
|
+
|
|
47
|
+
harmony_idioms:
|
|
48
|
+
- major/minor 7th chord pads
|
|
49
|
+
- 9th extensions
|
|
50
|
+
- Rhodes-style keys
|
|
51
|
+
- vocal samples as hook
|
|
52
|
+
|
|
53
|
+
arrangement_idioms:
|
|
54
|
+
- long intro (32 bars)
|
|
55
|
+
- drop at bar 32 or 64
|
|
56
|
+
- 7-9 minute tracks
|
|
57
|
+
- breakdown + return
|
|
58
|
+
|
|
59
|
+
texture_idioms:
|
|
60
|
+
- clean digital or occasional vinyl samples
|
|
61
|
+
- chorus on pads
|
|
62
|
+
- sidechain pumping
|
|
63
|
+
|
|
64
|
+
sample_roles:
|
|
65
|
+
- melodic_source
|
|
66
|
+
- vocal_accent
|
|
67
|
+
- pad_layer
|
|
68
|
+
|
|
69
|
+
key_techniques:
|
|
70
|
+
- name: "Classic Rhodes"
|
|
71
|
+
source: atlas
|
|
72
|
+
device: Electric Keyboards
|
|
73
|
+
- name: "Juno-style detuned chord"
|
|
74
|
+
source: atlas
|
|
75
|
+
device: Poli
|
|
76
|
+
- name: sidechain compression on pad triggered by kick
|
|
77
|
+
source: sample-techniques.md
|
|
78
|
+
|
|
79
|
+
evaluation_bias:
|
|
80
|
+
target_dimensions:
|
|
81
|
+
groove: 0.22
|
|
82
|
+
motion: 0.18
|
|
83
|
+
cohesion: 0.16
|
|
84
|
+
depth: 0.14
|
|
85
|
+
novelty: 0.10
|
|
86
|
+
contrast: 0.10
|
|
87
|
+
clarity: 0.10
|
|
88
|
+
protect:
|
|
89
|
+
clarity: 0.65
|
|
90
|
+
cohesion: 0.75
|
|
91
|
+
low_end: 0.72
|
|
92
|
+
|
|
93
|
+
move_family_bias:
|
|
94
|
+
favor:
|
|
95
|
+
- sound_design
|
|
96
|
+
- mix
|
|
97
|
+
- arrangement
|
|
98
|
+
deprioritize:
|
|
99
|
+
- performance
|
|
100
|
+
|
|
101
|
+
dimensions_in_scope:
|
|
102
|
+
- rhythmic
|
|
103
|
+
- timbral
|
|
104
|
+
- structural
|
|
105
|
+
- spatial
|
|
106
|
+
dimensions_deprioritized: []
|
|
107
|
+
|
|
108
|
+
novelty_budget_default: 0.45
|
|
109
|
+
|
|
110
|
+
tempo_hint:
|
|
111
|
+
min: 120
|
|
112
|
+
max: 126
|
|
113
|
+
time_signature: "4/4"
|
|
114
|
+
|
|
115
|
+
canonical_artists:
|
|
116
|
+
- moodymann-theo-parrish
|
|
117
|
+
- isolee-luomo
|
|
118
|
+
- daft-punk
|
|
119
|
+
|
|
120
|
+
canonical_genres: []
|
|
121
|
+
|
|
122
|
+
notes: |
|
|
123
|
+
House is the baseline 120-126 BPM 4/4 genre. Plans should include
|
|
124
|
+
sidechain work, Rhodes/keys programming, and structural long-form
|
|
125
|
+
arrangement (32-bar sections). Deep House variant leans more on
|
|
126
|
+
chord extensions and jazz/soul influence.
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
id: hyperpop
|
|
2
|
+
name: Hyperpop
|
|
3
|
+
type: genre
|
|
4
|
+
aliases:
|
|
5
|
+
- "hyperpop"
|
|
6
|
+
- "pc music"
|
|
7
|
+
- "deconstructed club"
|
|
8
|
+
|
|
9
|
+
sonic_identity:
|
|
10
|
+
- extreme pitch-shifted vocals (up AND down)
|
|
11
|
+
- metallic physical-modeling percussion
|
|
12
|
+
- impossible-sounding textures
|
|
13
|
+
- rapid timbral shifts (SOPHIE lineage)
|
|
14
|
+
- chaotic energy with pop-adjacent structure
|
|
15
|
+
|
|
16
|
+
reach_for:
|
|
17
|
+
instruments:
|
|
18
|
+
- Corpus # physical modeling
|
|
19
|
+
- Collision # metal/glass percussion
|
|
20
|
+
- Tension # plucked prepared strings
|
|
21
|
+
- Vector FM
|
|
22
|
+
- Wavetable
|
|
23
|
+
effects:
|
|
24
|
+
- Pitch Hack # extreme shifts
|
|
25
|
+
- Vocoder
|
|
26
|
+
- Snipper # chops
|
|
27
|
+
- Spectral Resonator
|
|
28
|
+
- Pitch Shift
|
|
29
|
+
packs:
|
|
30
|
+
- Building Max Devices # Snipper
|
|
31
|
+
- Inspired by Nature
|
|
32
|
+
utilities:
|
|
33
|
+
- EQ Eight
|
|
34
|
+
|
|
35
|
+
avoid:
|
|
36
|
+
- acoustic percussion realism
|
|
37
|
+
- sampled drums (use physical models)
|
|
38
|
+
- conservative mixing
|
|
39
|
+
- natural-sounding reverb
|
|
40
|
+
|
|
41
|
+
rhythm_idioms:
|
|
42
|
+
- hyper-detailed micro-programming
|
|
43
|
+
- metal-on-glass percussion timbre
|
|
44
|
+
- physical-impact hits via Collision
|
|
45
|
+
- trap-adjacent hat patterns
|
|
46
|
+
|
|
47
|
+
harmony_idioms:
|
|
48
|
+
- pitch extremes on vocals
|
|
49
|
+
- harmonic content from physical-model resonance
|
|
50
|
+
- pop chord progressions (rarely jazz extensions)
|
|
51
|
+
|
|
52
|
+
arrangement_idioms:
|
|
53
|
+
- traditional pop form (verse/chorus/bridge)
|
|
54
|
+
- rapid timbral shifts within sections
|
|
55
|
+
- physical-impact punctuation at transitions
|
|
56
|
+
|
|
57
|
+
texture_idioms:
|
|
58
|
+
- metallic / glass / stone via Collision
|
|
59
|
+
- impossible acoustic spaces via Corpus
|
|
60
|
+
- vocal timbres from vocoder + extreme pitch shift
|
|
61
|
+
|
|
62
|
+
sample_roles:
|
|
63
|
+
- vocal_source
|
|
64
|
+
- percussive_ghost
|
|
65
|
+
- transient_accent
|
|
66
|
+
|
|
67
|
+
key_techniques:
|
|
68
|
+
- name: "Inharmonic bell drone"
|
|
69
|
+
source: atlas
|
|
70
|
+
device: Collision
|
|
71
|
+
- name: "Metal-string drone"
|
|
72
|
+
source: atlas
|
|
73
|
+
device: Tension
|
|
74
|
+
- name: "Noise Bow"
|
|
75
|
+
source: atlas
|
|
76
|
+
device: Corpus
|
|
77
|
+
- name: extreme pitch shift on vocals
|
|
78
|
+
source: atlas
|
|
79
|
+
device: Pitch Hack
|
|
80
|
+
|
|
81
|
+
evaluation_bias:
|
|
82
|
+
target_dimensions:
|
|
83
|
+
novelty: 0.22
|
|
84
|
+
contrast: 0.18
|
|
85
|
+
motion: 0.14
|
|
86
|
+
groove: 0.14
|
|
87
|
+
depth: 0.12
|
|
88
|
+
cohesion: 0.10
|
|
89
|
+
clarity: 0.10
|
|
90
|
+
protect:
|
|
91
|
+
clarity: 0.50
|
|
92
|
+
cohesion: 0.55
|
|
93
|
+
low_end: 0.65
|
|
94
|
+
|
|
95
|
+
move_family_bias:
|
|
96
|
+
favor:
|
|
97
|
+
- sound_design
|
|
98
|
+
- device_creation
|
|
99
|
+
- arrangement
|
|
100
|
+
deprioritize:
|
|
101
|
+
- mix
|
|
102
|
+
- performance
|
|
103
|
+
|
|
104
|
+
dimensions_in_scope:
|
|
105
|
+
- rhythmic
|
|
106
|
+
- timbral
|
|
107
|
+
- structural
|
|
108
|
+
dimensions_deprioritized:
|
|
109
|
+
- spatial
|
|
110
|
+
|
|
111
|
+
novelty_budget_default: 0.75
|
|
112
|
+
|
|
113
|
+
tempo_hint:
|
|
114
|
+
min: 100
|
|
115
|
+
max: 160
|
|
116
|
+
time_signature: "4/4"
|
|
117
|
+
|
|
118
|
+
canonical_artists:
|
|
119
|
+
- arca-sophie
|
|
120
|
+
|
|
121
|
+
canonical_genres: []
|
|
122
|
+
|
|
123
|
+
notes: |
|
|
124
|
+
Hyperpop is the SOPHIE/Arca/100-gecs lineage — extreme pitch shifting,
|
|
125
|
+
physical-modeling synthesis, pop structure with experimental sound
|
|
126
|
+
palette. Plans should prefer Corpus/Collision/Tension over traditional
|
|
127
|
+
synths, and embrace Pitch Hack for vocal extremes. Unusual novelty
|
|
128
|
+
budget default (0.75) — hyperpop IS the extreme-novelty zone.
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
id: idm
|
|
2
|
+
name: IDM
|
|
3
|
+
type: genre
|
|
4
|
+
aliases:
|
|
5
|
+
- "idm"
|
|
6
|
+
- "intelligent dance music"
|
|
7
|
+
- "braindance"
|
|
8
|
+
|
|
9
|
+
sonic_identity:
|
|
10
|
+
- 80-150 BPM with complex rhythms (quintuplets, polyrhythms, non-4/4 common)
|
|
11
|
+
- heavy low-end
|
|
12
|
+
- FM-generated bass common
|
|
13
|
+
- hyper-detailed non-quantized micro-percussion
|
|
14
|
+
- atonal or microtonal common
|
|
15
|
+
- digital artifacts embraced
|
|
16
|
+
|
|
17
|
+
reach_for:
|
|
18
|
+
instruments:
|
|
19
|
+
- Operator # FM
|
|
20
|
+
- Vector FM
|
|
21
|
+
- Wavetable
|
|
22
|
+
- Emit
|
|
23
|
+
- Vector Grain
|
|
24
|
+
- Simpler
|
|
25
|
+
- Tension
|
|
26
|
+
- Collision
|
|
27
|
+
effects:
|
|
28
|
+
- Erosion
|
|
29
|
+
- Pitch Hack
|
|
30
|
+
- Roar
|
|
31
|
+
- Spectral Blur
|
|
32
|
+
- Grain Delay
|
|
33
|
+
packs:
|
|
34
|
+
- Inspired by Nature
|
|
35
|
+
- Performance Pack # Variations
|
|
36
|
+
- MIDI Tools # Polyrhythm, Phase Pattern
|
|
37
|
+
utilities:
|
|
38
|
+
- EQ Eight
|
|
39
|
+
|
|
40
|
+
avoid:
|
|
41
|
+
- clean production
|
|
42
|
+
- simple 4/4
|
|
43
|
+
- traditional harmony
|
|
44
|
+
|
|
45
|
+
rhythm_idioms:
|
|
46
|
+
- quintuplets, polyrhythms
|
|
47
|
+
- non-quantized micro-timing
|
|
48
|
+
- metal/glass percussion samples
|
|
49
|
+
|
|
50
|
+
harmony_idioms:
|
|
51
|
+
- atonal or microtonal
|
|
52
|
+
- melodic fragments rather than sustained melody
|
|
53
|
+
- FM bell clusters as harmonic content
|
|
54
|
+
|
|
55
|
+
arrangement_idioms:
|
|
56
|
+
- generative-adjacent evolution
|
|
57
|
+
- rapid timbral shifts
|
|
58
|
+
- non-traditional section structure
|
|
59
|
+
|
|
60
|
+
texture_idioms:
|
|
61
|
+
- granular, glitchy
|
|
62
|
+
- digital artifacts embraced
|
|
63
|
+
- harmonic saturation on every bus
|
|
64
|
+
|
|
65
|
+
sample_roles:
|
|
66
|
+
- rhythmic_chop
|
|
67
|
+
- percussive_ghost
|
|
68
|
+
- texture_bed
|
|
69
|
+
|
|
70
|
+
key_techniques:
|
|
71
|
+
- name: "Aphex ambient FM pad"
|
|
72
|
+
source: atlas
|
|
73
|
+
device: Operator
|
|
74
|
+
- name: "Modulated bell cluster"
|
|
75
|
+
source: atlas
|
|
76
|
+
device: Vector FM
|
|
77
|
+
- name: "Chaotic lock-in"
|
|
78
|
+
source: atlas
|
|
79
|
+
device: Vector Map
|
|
80
|
+
- name: "granular_scatter"
|
|
81
|
+
source: sample-techniques.md
|
|
82
|
+
- name: "euclidean_slice_trigger"
|
|
83
|
+
source: sample-techniques.md
|
|
84
|
+
|
|
85
|
+
evaluation_bias:
|
|
86
|
+
target_dimensions:
|
|
87
|
+
novelty: 0.20
|
|
88
|
+
groove: 0.18
|
|
89
|
+
motion: 0.16
|
|
90
|
+
contrast: 0.14
|
|
91
|
+
depth: 0.12
|
|
92
|
+
cohesion: 0.10
|
|
93
|
+
clarity: 0.10
|
|
94
|
+
protect:
|
|
95
|
+
clarity: 0.50
|
|
96
|
+
cohesion: 0.55
|
|
97
|
+
low_end: 0.65
|
|
98
|
+
|
|
99
|
+
move_family_bias:
|
|
100
|
+
favor:
|
|
101
|
+
- sound_design
|
|
102
|
+
- arrangement
|
|
103
|
+
- device_creation
|
|
104
|
+
deprioritize:
|
|
105
|
+
- mix
|
|
106
|
+
- performance
|
|
107
|
+
|
|
108
|
+
dimensions_in_scope:
|
|
109
|
+
- rhythmic
|
|
110
|
+
- timbral
|
|
111
|
+
- structural
|
|
112
|
+
- spatial
|
|
113
|
+
dimensions_deprioritized: []
|
|
114
|
+
|
|
115
|
+
novelty_budget_default: 0.7
|
|
116
|
+
|
|
117
|
+
tempo_hint:
|
|
118
|
+
min: 80
|
|
119
|
+
max: 150
|
|
120
|
+
time_signature: "4/4" # or complex
|
|
121
|
+
|
|
122
|
+
canonical_artists:
|
|
123
|
+
- aphex-twin
|
|
124
|
+
- autechre
|
|
125
|
+
- boards-of-canada
|
|
126
|
+
- oneohtrix-point-never
|
|
127
|
+
|
|
128
|
+
canonical_genres: []
|
|
129
|
+
|
|
130
|
+
notes: |
|
|
131
|
+
IDM asks are genuinely full-dimensional — all four dimensions in
|
|
132
|
+
play, high novelty tolerance. Plans should favor complex rhythmic
|
|
133
|
+
programming (Euclidean + Phase Pattern), FM / granular sound design,
|
|
134
|
+
and embrace digital artifacts as aesthetic.
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
id: lo_fi
|
|
2
|
+
name: Lo-Fi
|
|
3
|
+
type: genre
|
|
4
|
+
aliases:
|
|
5
|
+
- "lo-fi"
|
|
6
|
+
- "lofi"
|
|
7
|
+
- "lo fi"
|
|
8
|
+
- "lo-fi hip hop"
|
|
9
|
+
- "study beats"
|
|
10
|
+
|
|
11
|
+
sonic_identity:
|
|
12
|
+
- slow boom-bap-adjacent beats (70-90 BPM)
|
|
13
|
+
- dusty sample-flip aesthetic
|
|
14
|
+
- Rhodes / Wurly chords from vinyl
|
|
15
|
+
- tape hiss and vinyl crackle as permanent subtext
|
|
16
|
+
- warm saturation on every bus
|
|
17
|
+
|
|
18
|
+
reach_for:
|
|
19
|
+
instruments:
|
|
20
|
+
- Simpler # sample slicing + chopping
|
|
21
|
+
- Electric Keyboards # Rhodes/Wurly
|
|
22
|
+
- Bass
|
|
23
|
+
effects:
|
|
24
|
+
- Saturator
|
|
25
|
+
- Vinyl Distortion
|
|
26
|
+
- Erosion
|
|
27
|
+
- Dynamic Tube
|
|
28
|
+
- Grain Delay
|
|
29
|
+
packs:
|
|
30
|
+
- Chop and Swing
|
|
31
|
+
- Electric Keyboards
|
|
32
|
+
- Drum Booth
|
|
33
|
+
- Golden Era Hip-Hop Drums
|
|
34
|
+
utilities:
|
|
35
|
+
- EQ Eight
|
|
36
|
+
|
|
37
|
+
avoid:
|
|
38
|
+
- pristine digital synthesis
|
|
39
|
+
- quantized drums
|
|
40
|
+
- modern trap hats
|
|
41
|
+
- bright mixes
|
|
42
|
+
- clean signal chains
|
|
43
|
+
|
|
44
|
+
rhythm_idioms:
|
|
45
|
+
- off-grid boom-bap drums
|
|
46
|
+
- swung 60-70% (manual micro-timing)
|
|
47
|
+
- occasional vocal-chop accents
|
|
48
|
+
|
|
49
|
+
harmony_idioms:
|
|
50
|
+
- sampled Rhodes/Wurly chords
|
|
51
|
+
- jazz-extended voicings (9th, 11th, 13th)
|
|
52
|
+
- unintentional key clashes embraced
|
|
53
|
+
|
|
54
|
+
arrangement_idioms:
|
|
55
|
+
- loop-based with sample-flip variations
|
|
56
|
+
- 2-3 minute tracks (study-beats format)
|
|
57
|
+
- vocal interjections
|
|
58
|
+
|
|
59
|
+
texture_idioms:
|
|
60
|
+
- vinyl crackle at -36 dB under track
|
|
61
|
+
- tape hiss
|
|
62
|
+
- saturator on every bus
|
|
63
|
+
|
|
64
|
+
sample_roles:
|
|
65
|
+
- melodic_source
|
|
66
|
+
- rhythmic_chop
|
|
67
|
+
- vocal_accent
|
|
68
|
+
- texture_bed
|
|
69
|
+
|
|
70
|
+
key_techniques:
|
|
71
|
+
- name: "Tape-warped EP"
|
|
72
|
+
source: atlas
|
|
73
|
+
device: Electric Keyboards
|
|
74
|
+
- name: "J Dilla micro-timed kit"
|
|
75
|
+
source: atlas
|
|
76
|
+
device: Simpler
|
|
77
|
+
- name: "slice_and_sequence"
|
|
78
|
+
source: sample-techniques.md
|
|
79
|
+
- name: "stab_isolation"
|
|
80
|
+
source: sample-techniques.md
|
|
81
|
+
|
|
82
|
+
evaluation_bias:
|
|
83
|
+
target_dimensions:
|
|
84
|
+
groove: 0.22
|
|
85
|
+
depth: 0.16
|
|
86
|
+
cohesion: 0.14
|
|
87
|
+
contrast: 0.12
|
|
88
|
+
motion: 0.12
|
|
89
|
+
novelty: 0.12
|
|
90
|
+
clarity: 0.12
|
|
91
|
+
protect:
|
|
92
|
+
clarity: 0.55
|
|
93
|
+
cohesion: 0.68
|
|
94
|
+
low_end: 0.70
|
|
95
|
+
|
|
96
|
+
move_family_bias:
|
|
97
|
+
favor:
|
|
98
|
+
- sound_design
|
|
99
|
+
- arrangement
|
|
100
|
+
- device_creation
|
|
101
|
+
deprioritize:
|
|
102
|
+
- performance
|
|
103
|
+
|
|
104
|
+
dimensions_in_scope:
|
|
105
|
+
- rhythmic
|
|
106
|
+
- timbral
|
|
107
|
+
- structural
|
|
108
|
+
dimensions_deprioritized:
|
|
109
|
+
- spatial
|
|
110
|
+
|
|
111
|
+
novelty_budget_default: 0.40
|
|
112
|
+
|
|
113
|
+
tempo_hint:
|
|
114
|
+
min: 70
|
|
115
|
+
max: 90
|
|
116
|
+
time_signature: "4/4"
|
|
117
|
+
|
|
118
|
+
canonical_artists:
|
|
119
|
+
- j-dilla
|
|
120
|
+
- madlib
|
|
121
|
+
- boards-of-canada
|
|
122
|
+
|
|
123
|
+
canonical_genres: []
|
|
124
|
+
|
|
125
|
+
notes: |
|
|
126
|
+
Lo-fi overlaps heavily with hip-hop (boom-bap lineage) and downtempo
|
|
127
|
+
(tempo range). The distinguishing feature is the SATURATION aesthetic —
|
|
128
|
+
everything goes through vinyl/tape simulation. Spatial dimension is
|
|
129
|
+
deprioritized (dry intimacy is the aesthetic, not reverb).
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
id: microhouse
|
|
2
|
+
name: Microhouse
|
|
3
|
+
type: genre
|
|
4
|
+
aliases:
|
|
5
|
+
- "micro house"
|
|
6
|
+
- "micro-house"
|
|
7
|
+
|
|
8
|
+
sonic_identity:
|
|
9
|
+
- hyper-chopped vocal snippets as percussion AND melody
|
|
10
|
+
- constant micro-variation across bars
|
|
11
|
+
- filtered mid-bass warmth
|
|
12
|
+
- reverb tails hidden at -20 to -30 dB under main elements
|
|
13
|
+
- the percussion IS the genre — the kick is minimal
|
|
14
|
+
|
|
15
|
+
reach_for:
|
|
16
|
+
instruments:
|
|
17
|
+
- Simpler # slicing mode for vocals + one-shot for pitched chops
|
|
18
|
+
- Drift
|
|
19
|
+
- Poli
|
|
20
|
+
- Granulator III
|
|
21
|
+
effects:
|
|
22
|
+
- Snipper
|
|
23
|
+
- PitchLoop89
|
|
24
|
+
- Auto Filter # band-pass sweeps
|
|
25
|
+
- Convolution Reverb
|
|
26
|
+
- Gated Delay
|
|
27
|
+
- Variations # stab morphing
|
|
28
|
+
packs:
|
|
29
|
+
- Voice Box
|
|
30
|
+
- Chop and Swing
|
|
31
|
+
- Latin Percussion
|
|
32
|
+
- Lost and Found
|
|
33
|
+
- Mood Reel
|
|
34
|
+
utilities:
|
|
35
|
+
- Utility
|
|
36
|
+
- EQ Eight
|
|
37
|
+
|
|
38
|
+
avoid:
|
|
39
|
+
- loud kicks
|
|
40
|
+
- sidechain compression
|
|
41
|
+
- long-sustain melody
|
|
42
|
+
- bright overtones
|
|
43
|
+
- repeated 8-bar loops
|
|
44
|
+
- quantized 4/4 drums
|
|
45
|
+
|
|
46
|
+
rhythm_idioms:
|
|
47
|
+
- chopped-vocal micro-percussion
|
|
48
|
+
- glass/metal percussion
|
|
49
|
+
- shakers and conga/cuica hits
|
|
50
|
+
- off-grid micro-timing on most hits
|
|
51
|
+
|
|
52
|
+
harmony_idioms:
|
|
53
|
+
- filtered chord stabs
|
|
54
|
+
- pitched vocal fragments as hooks
|
|
55
|
+
- D minor / A minor / F minor common
|
|
56
|
+
|
|
57
|
+
arrangement_idioms:
|
|
58
|
+
- constant variation, no repeated loops
|
|
59
|
+
- subtraction over addition
|
|
60
|
+
- filter movement as arrangement
|
|
61
|
+
|
|
62
|
+
texture_idioms:
|
|
63
|
+
- field recordings
|
|
64
|
+
- vinyl crackle
|
|
65
|
+
- reverb tails hidden under main elements
|
|
66
|
+
|
|
67
|
+
sample_roles:
|
|
68
|
+
- melodic_chop
|
|
69
|
+
- rhythmic_chop
|
|
70
|
+
- transient_ghost
|
|
71
|
+
- texture_bed
|
|
72
|
+
|
|
73
|
+
key_techniques:
|
|
74
|
+
- name: "Vocal micro-chop (Akufen)"
|
|
75
|
+
source: atlas
|
|
76
|
+
device: Simpler
|
|
77
|
+
- name: "micro_chop"
|
|
78
|
+
source: sample-techniques.md
|
|
79
|
+
- name: "dub_throw"
|
|
80
|
+
source: sample-techniques.md
|
|
81
|
+
- name: "Hat replay pitch drift"
|
|
82
|
+
source: atlas
|
|
83
|
+
device: Snipper
|
|
84
|
+
|
|
85
|
+
evaluation_bias:
|
|
86
|
+
target_dimensions:
|
|
87
|
+
groove: 0.22
|
|
88
|
+
depth: 0.18
|
|
89
|
+
motion: 0.16
|
|
90
|
+
novelty: 0.14
|
|
91
|
+
contrast: 0.12
|
|
92
|
+
cohesion: 0.10
|
|
93
|
+
clarity: 0.08
|
|
94
|
+
protect:
|
|
95
|
+
clarity: 0.55
|
|
96
|
+
cohesion: 0.65
|
|
97
|
+
low_end: 0.70
|
|
98
|
+
|
|
99
|
+
move_family_bias:
|
|
100
|
+
favor:
|
|
101
|
+
- arrangement
|
|
102
|
+
- sound_design
|
|
103
|
+
- device_creation
|
|
104
|
+
deprioritize:
|
|
105
|
+
- mix
|
|
106
|
+
- performance
|
|
107
|
+
|
|
108
|
+
dimensions_in_scope:
|
|
109
|
+
- rhythmic
|
|
110
|
+
- timbral
|
|
111
|
+
- structural
|
|
112
|
+
dimensions_deprioritized:
|
|
113
|
+
- spatial # secondary — filter movement matters more than reverb space
|
|
114
|
+
|
|
115
|
+
novelty_budget_default: 0.55
|
|
116
|
+
|
|
117
|
+
tempo_hint:
|
|
118
|
+
min: 122
|
|
119
|
+
max: 128
|
|
120
|
+
time_signature: "4/4"
|
|
121
|
+
|
|
122
|
+
canonical_artists:
|
|
123
|
+
- villalobos
|
|
124
|
+
- akufen
|
|
125
|
+
- isolee-luomo
|
|
126
|
+
|
|
127
|
+
canonical_genres: [] # genre packet
|
|
128
|
+
|
|
129
|
+
notes: |
|
|
130
|
+
Microhouse asks almost always want three plans across rhythmic
|
|
131
|
+
(clip-level vocal chop edits, arrangement-family with
|
|
132
|
+
dimension_hint="rhythmic"), timbral (Simpler slicing parameters,
|
|
133
|
+
sound_design), and structural (filter-arc over 16-bar phrase,
|
|
134
|
+
transition-family or an arrangement-family long-form edit).
|
|
135
|
+
|
|
136
|
+
The genre's hallmark "no loop sounds the same" requires variation
|
|
137
|
+
generation at the sample level, not just parameter level. Reach for
|
|
138
|
+
Variations pack or probability fields before reaching for LFOs.
|