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,131 @@
|
|
|
1
|
+
id: experimental__arca_sophie
|
|
2
|
+
name: Arca / SOPHIE
|
|
3
|
+
type: artist
|
|
4
|
+
aliases:
|
|
5
|
+
- "arca"
|
|
6
|
+
- "sophie"
|
|
7
|
+
- "alejandra ghersi"
|
|
8
|
+
|
|
9
|
+
sonic_identity:
|
|
10
|
+
- hyper-detailed rhythmic programming
|
|
11
|
+
- metallic percussion
|
|
12
|
+
- vocal pitch extremes
|
|
13
|
+
- physical-sounding hits
|
|
14
|
+
- impossible textures — sounds that could not exist acoustically
|
|
15
|
+
|
|
16
|
+
reach_for:
|
|
17
|
+
instruments:
|
|
18
|
+
- Collision # mallet + metal percussion
|
|
19
|
+
- Tension # plucked prepared string
|
|
20
|
+
- Corpus # physical modeling on non-pitched sources
|
|
21
|
+
- Vector FM
|
|
22
|
+
effects:
|
|
23
|
+
- Vocoder
|
|
24
|
+
- Pitch Hack
|
|
25
|
+
- Snipper
|
|
26
|
+
- Spectral Resonator
|
|
27
|
+
packs:
|
|
28
|
+
- Inspired by Nature
|
|
29
|
+
- Building Max Devices # Snipper
|
|
30
|
+
utilities:
|
|
31
|
+
- EQ Eight
|
|
32
|
+
|
|
33
|
+
avoid:
|
|
34
|
+
- sampled drums
|
|
35
|
+
- acoustic percussion realism
|
|
36
|
+
- conservative mixing
|
|
37
|
+
- stock kits
|
|
38
|
+
- natural-sounding reverb
|
|
39
|
+
|
|
40
|
+
rhythm_idioms:
|
|
41
|
+
- hyper-detailed micro-programming
|
|
42
|
+
- metal-on-glass percussion timbre
|
|
43
|
+
- physical-impact hits via Collision/Corpus
|
|
44
|
+
|
|
45
|
+
harmony_idioms:
|
|
46
|
+
- pitch-extremes on vocals (up AND down shifts)
|
|
47
|
+
- harmonic content from physical-model resonance
|
|
48
|
+
- inharmonic partials embraced
|
|
49
|
+
|
|
50
|
+
arrangement_idioms:
|
|
51
|
+
- rapid timbral shifts
|
|
52
|
+
- physical-impact punctuation
|
|
53
|
+
- vocal fragments as harmonic color
|
|
54
|
+
|
|
55
|
+
texture_idioms:
|
|
56
|
+
- metallic / glass / stone textures via Collision
|
|
57
|
+
- impossible-sounding acoustic spaces via Corpus
|
|
58
|
+
- vocal timbres from vocoder + extreme pitch shift
|
|
59
|
+
|
|
60
|
+
sample_roles:
|
|
61
|
+
- percussive_ghost
|
|
62
|
+
- vocal_source
|
|
63
|
+
- transient_accent
|
|
64
|
+
|
|
65
|
+
key_techniques:
|
|
66
|
+
- name: "Inharmonic bell drone"
|
|
67
|
+
source: atlas
|
|
68
|
+
device: Collision
|
|
69
|
+
- name: "Metal-string drone"
|
|
70
|
+
source: atlas
|
|
71
|
+
device: Tension
|
|
72
|
+
- name: "Noise Bow"
|
|
73
|
+
source: atlas
|
|
74
|
+
device: Corpus
|
|
75
|
+
- name: extreme pitch shift on vocals
|
|
76
|
+
source: atlas
|
|
77
|
+
device: Pitch Hack
|
|
78
|
+
|
|
79
|
+
evaluation_bias:
|
|
80
|
+
target_dimensions:
|
|
81
|
+
novelty: 0.22
|
|
82
|
+
contrast: 0.18
|
|
83
|
+
motion: 0.14
|
|
84
|
+
groove: 0.14
|
|
85
|
+
depth: 0.12
|
|
86
|
+
cohesion: 0.10
|
|
87
|
+
clarity: 0.10
|
|
88
|
+
protect:
|
|
89
|
+
clarity: 0.50
|
|
90
|
+
cohesion: 0.55
|
|
91
|
+
low_end: 0.65
|
|
92
|
+
|
|
93
|
+
move_family_bias:
|
|
94
|
+
favor:
|
|
95
|
+
- sound_design
|
|
96
|
+
- device_creation
|
|
97
|
+
- arrangement
|
|
98
|
+
deprioritize:
|
|
99
|
+
- mix
|
|
100
|
+
- performance
|
|
101
|
+
|
|
102
|
+
dimensions_in_scope:
|
|
103
|
+
- rhythmic
|
|
104
|
+
- timbral
|
|
105
|
+
- structural
|
|
106
|
+
dimensions_deprioritized:
|
|
107
|
+
- spatial # the spatial work IS the source, not a send
|
|
108
|
+
|
|
109
|
+
novelty_budget_default: 0.75
|
|
110
|
+
|
|
111
|
+
tempo_hint:
|
|
112
|
+
min: 70
|
|
113
|
+
max: 160
|
|
114
|
+
time_signature: "4/4" # or broken
|
|
115
|
+
|
|
116
|
+
canonical_artists: []
|
|
117
|
+
canonical_genres:
|
|
118
|
+
- experimental
|
|
119
|
+
- hyperpop
|
|
120
|
+
|
|
121
|
+
notes: |
|
|
122
|
+
Arca/SOPHIE asks emphasize physical-modeling synthesis and pitch
|
|
123
|
+
extremes. Plans should prefer Corpus, Collision, and Tension over
|
|
124
|
+
traditional synths. Three plans often land: sound_design (Corpus
|
|
125
|
+
on a percussion source for impossible resonance), device_creation
|
|
126
|
+
(Collision + Tension chain for metallic percussion), arrangement
|
|
127
|
+
(rhythmic — probability + Pitch Hack stutter on vocal chops,
|
|
128
|
+
dimension_hint="rhythmic").
|
|
129
|
+
|
|
130
|
+
Spatial work is typically internal to the source (Corpus/Collision
|
|
131
|
+
have their own space), not send-based.
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
id: idm__autechre
|
|
2
|
+
name: Autechre
|
|
3
|
+
type: artist
|
|
4
|
+
aliases:
|
|
5
|
+
- "autechre"
|
|
6
|
+
- "ae"
|
|
7
|
+
|
|
8
|
+
sonic_identity:
|
|
9
|
+
- abstract rhythmic programming
|
|
10
|
+
- non-quantized micro-timing
|
|
11
|
+
- granular textures
|
|
12
|
+
- generative processes — track evolves by computation not composition
|
|
13
|
+
|
|
14
|
+
reach_for:
|
|
15
|
+
instruments:
|
|
16
|
+
- Vector FM
|
|
17
|
+
- Vector Grain
|
|
18
|
+
- Operator
|
|
19
|
+
effects:
|
|
20
|
+
- Euclidean Rhythm # Sequencers pack
|
|
21
|
+
- Phase Pattern
|
|
22
|
+
- Slice Shuffler
|
|
23
|
+
- Microtuner # 19-TET or larger
|
|
24
|
+
- Bouncy Notes # Inspired by Nature
|
|
25
|
+
- Performer # Performance Pack — macro morphing
|
|
26
|
+
packs:
|
|
27
|
+
- Sequencers
|
|
28
|
+
- MIDI Tools
|
|
29
|
+
- Inspired by Nature
|
|
30
|
+
- Performance Pack
|
|
31
|
+
utilities:
|
|
32
|
+
- EQ Eight
|
|
33
|
+
|
|
34
|
+
avoid:
|
|
35
|
+
- quantized beats
|
|
36
|
+
- equal temperament
|
|
37
|
+
- straightforward arrangement
|
|
38
|
+
- preset chains
|
|
39
|
+
|
|
40
|
+
rhythm_idioms:
|
|
41
|
+
- Euclidean rhythms
|
|
42
|
+
- polyrhythmic layering
|
|
43
|
+
- asymmetric polymeter
|
|
44
|
+
- phase-shifted patterns
|
|
45
|
+
|
|
46
|
+
harmony_idioms:
|
|
47
|
+
- microtonal tuning (19-TET common)
|
|
48
|
+
- abstract pitch relationships
|
|
49
|
+
- melodic content as artefact of process
|
|
50
|
+
|
|
51
|
+
arrangement_idioms:
|
|
52
|
+
- generative evolution
|
|
53
|
+
- no traditional sections — patterns morph continuously
|
|
54
|
+
- performer-driven macro changes
|
|
55
|
+
|
|
56
|
+
texture_idioms:
|
|
57
|
+
- granular textures
|
|
58
|
+
- FM bell clusters
|
|
59
|
+
- chaotic-lock-in timbres
|
|
60
|
+
|
|
61
|
+
sample_roles:
|
|
62
|
+
- texture_bed
|
|
63
|
+
- rhythmic_chop
|
|
64
|
+
- percussive_ghost
|
|
65
|
+
|
|
66
|
+
key_techniques:
|
|
67
|
+
- name: "euclidean_slice_trigger"
|
|
68
|
+
source: sample-techniques.md
|
|
69
|
+
- name: "Chaotic lock-in"
|
|
70
|
+
source: atlas
|
|
71
|
+
device: Vector Map
|
|
72
|
+
- name: "Modulated bell cluster"
|
|
73
|
+
source: atlas
|
|
74
|
+
device: Vector FM
|
|
75
|
+
- name: asymmetric polymeter
|
|
76
|
+
source: sample-techniques.md
|
|
77
|
+
|
|
78
|
+
evaluation_bias:
|
|
79
|
+
target_dimensions:
|
|
80
|
+
novelty: 0.22
|
|
81
|
+
groove: 0.18
|
|
82
|
+
motion: 0.16
|
|
83
|
+
contrast: 0.14
|
|
84
|
+
depth: 0.12
|
|
85
|
+
cohesion: 0.10
|
|
86
|
+
clarity: 0.08
|
|
87
|
+
protect:
|
|
88
|
+
clarity: 0.45
|
|
89
|
+
cohesion: 0.55
|
|
90
|
+
low_end: 0.60
|
|
91
|
+
|
|
92
|
+
move_family_bias:
|
|
93
|
+
favor:
|
|
94
|
+
- arrangement
|
|
95
|
+
- sound_design
|
|
96
|
+
- device_creation
|
|
97
|
+
deprioritize:
|
|
98
|
+
- mix
|
|
99
|
+
- performance
|
|
100
|
+
|
|
101
|
+
dimensions_in_scope:
|
|
102
|
+
- rhythmic
|
|
103
|
+
- timbral
|
|
104
|
+
- structural
|
|
105
|
+
dimensions_deprioritized:
|
|
106
|
+
- spatial
|
|
107
|
+
|
|
108
|
+
novelty_budget_default: 0.75
|
|
109
|
+
|
|
110
|
+
tempo_hint:
|
|
111
|
+
min: 80
|
|
112
|
+
max: 170
|
|
113
|
+
time_signature: "4/4" # with internal polymeter
|
|
114
|
+
|
|
115
|
+
canonical_artists: []
|
|
116
|
+
canonical_genres:
|
|
117
|
+
- idm
|
|
118
|
+
- experimental
|
|
119
|
+
|
|
120
|
+
notes: |
|
|
121
|
+
Autechre asks reward process over decision. Plans should set up
|
|
122
|
+
generative machinery: Euclidean Rhythm with asymmetric parameters,
|
|
123
|
+
Phase Pattern on drum clips, Performer macros. Three plans often
|
|
124
|
+
land: rhythmic (Euclidean + Phase Pattern combinations,
|
|
125
|
+
arrangement-family with dimension_hint="rhythmic"), timbral (Vector
|
|
126
|
+
FM patch with chaotic modulation, sound_design), device_creation
|
|
127
|
+
(Performer + modulation-matrix chain for macro morphing).
|
|
128
|
+
|
|
129
|
+
Spatial dimension deprioritized — Autechre's space is usually in
|
|
130
|
+
the source material's internal behavior, not in send chains.
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
id: dub_techno__basic_channel
|
|
2
|
+
name: Basic Channel / Rhythm & Sound
|
|
3
|
+
type: artist
|
|
4
|
+
aliases:
|
|
5
|
+
- "basic channel"
|
|
6
|
+
- "rhythm and sound"
|
|
7
|
+
- "rhythm & sound"
|
|
8
|
+
- "moritz von oswald"
|
|
9
|
+
- "mark ernestus"
|
|
10
|
+
|
|
11
|
+
sonic_identity:
|
|
12
|
+
- space IS the instrument
|
|
13
|
+
- chord stabs feeding long filtered delay and reverb tails
|
|
14
|
+
- the tails carry the harmonic and melodic content
|
|
15
|
+
- kick-snare 4/4 but swimming in cavernous space
|
|
16
|
+
- low-mid warmth, never bright top-end
|
|
17
|
+
|
|
18
|
+
reach_for:
|
|
19
|
+
instruments:
|
|
20
|
+
- Drift
|
|
21
|
+
- Poli
|
|
22
|
+
- Simpler # dub-sub samples
|
|
23
|
+
- Drone Lab # Harmonic Drone Generator
|
|
24
|
+
effects:
|
|
25
|
+
- Convolution Reverb # Farfisa Spring IR, Stocktronics RX-4000
|
|
26
|
+
- Ping Pong Delay
|
|
27
|
+
- Echo
|
|
28
|
+
- Auto Filter
|
|
29
|
+
packs:
|
|
30
|
+
- Drone Lab
|
|
31
|
+
- Chop and Swing
|
|
32
|
+
- Lost and Found
|
|
33
|
+
utilities:
|
|
34
|
+
- Utility # narrow-to-mono sub
|
|
35
|
+
- EQ Eight
|
|
36
|
+
|
|
37
|
+
avoid:
|
|
38
|
+
- dry signals
|
|
39
|
+
- short tails
|
|
40
|
+
- bright top-end
|
|
41
|
+
- pre-mixed "finished" presets
|
|
42
|
+
- crisp transients
|
|
43
|
+
- EDM brightness
|
|
44
|
+
|
|
45
|
+
rhythm_idioms:
|
|
46
|
+
- kick-snare 4/4 with ghost hits
|
|
47
|
+
- delayed off-beats from filtered delay
|
|
48
|
+
- percussion implied via tail interplay, not foreground
|
|
49
|
+
|
|
50
|
+
harmony_idioms:
|
|
51
|
+
- single chord stab as source
|
|
52
|
+
- reverb and delay tails BECOME the harmonic movement
|
|
53
|
+
- minor 7th or suspended voicings
|
|
54
|
+
- static harmonic center with color via filter movement
|
|
55
|
+
|
|
56
|
+
arrangement_idioms:
|
|
57
|
+
- slow reveal
|
|
58
|
+
- subtraction before addition
|
|
59
|
+
- return deeper, not louder
|
|
60
|
+
- 8-12 minute tracks standard
|
|
61
|
+
|
|
62
|
+
texture_idioms:
|
|
63
|
+
- long reverb tails at -10 to -20 dB
|
|
64
|
+
- vinyl crackle subtext
|
|
65
|
+
- rain/nature field recordings occasionally
|
|
66
|
+
|
|
67
|
+
sample_roles:
|
|
68
|
+
- dub_tail_source
|
|
69
|
+
- texture_bed
|
|
70
|
+
- transient_ghost
|
|
71
|
+
|
|
72
|
+
key_techniques:
|
|
73
|
+
- name: "The dub chord"
|
|
74
|
+
source: sound-design-deep.md
|
|
75
|
+
notes: chord → filtered delay → return-filter becomes the melody
|
|
76
|
+
- name: "Reverb as harmony"
|
|
77
|
+
source: sound-design-deep.md
|
|
78
|
+
- name: "Delay throws"
|
|
79
|
+
source: sound-design-deep.md
|
|
80
|
+
- name: "Dub sub-bass"
|
|
81
|
+
source: atlas
|
|
82
|
+
device: Bass
|
|
83
|
+
|
|
84
|
+
evaluation_bias:
|
|
85
|
+
target_dimensions:
|
|
86
|
+
depth: 0.24
|
|
87
|
+
motion: 0.18
|
|
88
|
+
cohesion: 0.16
|
|
89
|
+
groove: 0.12
|
|
90
|
+
contrast: 0.12
|
|
91
|
+
novelty: 0.10
|
|
92
|
+
clarity: 0.08
|
|
93
|
+
protect:
|
|
94
|
+
clarity: 0.50 # intentionally lower — dub-techno tolerates haze
|
|
95
|
+
cohesion: 0.72
|
|
96
|
+
low_end: 0.80
|
|
97
|
+
|
|
98
|
+
move_family_bias:
|
|
99
|
+
favor:
|
|
100
|
+
- sound_design
|
|
101
|
+
- device_creation # return chain setup is device_creation heavy
|
|
102
|
+
- mix # space via send is legitimate mix work here
|
|
103
|
+
deprioritize:
|
|
104
|
+
- transition # dub-techno evolves slowly, not through transitions
|
|
105
|
+
- performance
|
|
106
|
+
|
|
107
|
+
dimensions_in_scope:
|
|
108
|
+
- timbral
|
|
109
|
+
- spatial
|
|
110
|
+
- structural # optional — only if user expands scope
|
|
111
|
+
dimensions_deprioritized:
|
|
112
|
+
- rhythmic # percussion implied not stated
|
|
113
|
+
|
|
114
|
+
novelty_budget_default: 0.5 # mid — the idiom is conservative
|
|
115
|
+
|
|
116
|
+
tempo_hint:
|
|
117
|
+
min: 120
|
|
118
|
+
max: 130
|
|
119
|
+
time_signature: "4/4"
|
|
120
|
+
|
|
121
|
+
canonical_artists: []
|
|
122
|
+
canonical_genres:
|
|
123
|
+
- dub_techno
|
|
124
|
+
- dub
|
|
125
|
+
- deep_minimal
|
|
126
|
+
|
|
127
|
+
notes: |
|
|
128
|
+
Basic Channel asks reward the "return-track architecture" approach:
|
|
129
|
+
the main signal is dry-ish, and a return (Ping-Pong Delay with filter
|
|
130
|
+
+ Convolution Reverb with cathedral IR) carries the aesthetic. Three
|
|
131
|
+
plans typically land: (1) a device_creation plan that builds the
|
|
132
|
+
return chain, (2) a sound_design plan that opens Drift/Poli on the
|
|
133
|
+
chord stab, (3) a mix plan that narrows the sub to mono. Rhythmic
|
|
134
|
+
plans are idiomatic under-coverage — drop them honestly unless the
|
|
135
|
+
user specifically asks for swing.
|
|
136
|
+
|
|
137
|
+
If the user mixes Basic Channel with a rhythmically-emphatic
|
|
138
|
+
reference ("Basic Channel but with Dilla swing"), the rhythmic
|
|
139
|
+
dimension re-enters scope and an arrangement-family plan with
|
|
140
|
+
dimension_hint="rhythmic" should appear.
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
id: ambient__basinski
|
|
2
|
+
name: William Basinski
|
|
3
|
+
type: artist
|
|
4
|
+
aliases:
|
|
5
|
+
- "basinski"
|
|
6
|
+
- "william basinski"
|
|
7
|
+
|
|
8
|
+
sonic_identity:
|
|
9
|
+
- tape loops degrading across long durations
|
|
10
|
+
- the DECAY of the source IS the piece
|
|
11
|
+
- a single 2-8 second loop played for 30-60 minutes
|
|
12
|
+
- the tape physically eroding over the piece's length
|
|
13
|
+
|
|
14
|
+
reach_for:
|
|
15
|
+
instruments:
|
|
16
|
+
- Vector Grain # Inspired by Nature
|
|
17
|
+
- Looper
|
|
18
|
+
- Sampler
|
|
19
|
+
effects:
|
|
20
|
+
- Convolution Reverb # long decay
|
|
21
|
+
- Erosion
|
|
22
|
+
- Dynamic Tube
|
|
23
|
+
- Vinyl Distortion
|
|
24
|
+
- Grain Delay
|
|
25
|
+
packs:
|
|
26
|
+
- Inspired by Nature
|
|
27
|
+
- Mood Reel
|
|
28
|
+
utilities:
|
|
29
|
+
- EQ Eight
|
|
30
|
+
- Utility
|
|
31
|
+
|
|
32
|
+
avoid:
|
|
33
|
+
- crisp digital playback
|
|
34
|
+
- fresh samples (use degraded/compressed source)
|
|
35
|
+
- cuts between sections
|
|
36
|
+
- fast evolution
|
|
37
|
+
|
|
38
|
+
rhythm_idioms:
|
|
39
|
+
- no rhythm — sustained loop
|
|
40
|
+
- any pulse is incidental to the loop content
|
|
41
|
+
|
|
42
|
+
harmony_idioms:
|
|
43
|
+
- single loop's harmonic content sustained across entire piece
|
|
44
|
+
- decay alters perceived harmony as frequencies drop out
|
|
45
|
+
- no chord changes, only erosion
|
|
46
|
+
|
|
47
|
+
arrangement_idioms:
|
|
48
|
+
- single loop, long duration
|
|
49
|
+
- decay IS the arrangement
|
|
50
|
+
- Looper on a return for literal tape-loop emulation
|
|
51
|
+
|
|
52
|
+
texture_idioms:
|
|
53
|
+
- tape hiss embraced
|
|
54
|
+
- cassette-IR Convolution
|
|
55
|
+
- Erosion and Vinyl Distortion as character
|
|
56
|
+
|
|
57
|
+
sample_roles:
|
|
58
|
+
- texture_bed
|
|
59
|
+
- drone_source
|
|
60
|
+
- dub_tail_source
|
|
61
|
+
|
|
62
|
+
key_techniques:
|
|
63
|
+
- name: "Basinski tape degradation"
|
|
64
|
+
source: atlas
|
|
65
|
+
device: Vector Grain
|
|
66
|
+
- name: "tail_harvest"
|
|
67
|
+
source: sample-techniques.md
|
|
68
|
+
- name: "extreme_stretch"
|
|
69
|
+
source: sample-techniques.md
|
|
70
|
+
- name: "reverse_layer"
|
|
71
|
+
source: sample-techniques.md
|
|
72
|
+
|
|
73
|
+
evaluation_bias:
|
|
74
|
+
target_dimensions:
|
|
75
|
+
depth: 0.28
|
|
76
|
+
cohesion: 0.20
|
|
77
|
+
motion: 0.14
|
|
78
|
+
contrast: 0.12
|
|
79
|
+
novelty: 0.10
|
|
80
|
+
groove: 0.08
|
|
81
|
+
clarity: 0.08
|
|
82
|
+
protect:
|
|
83
|
+
clarity: 0.40
|
|
84
|
+
cohesion: 0.78
|
|
85
|
+
low_end: 0.60
|
|
86
|
+
|
|
87
|
+
move_family_bias:
|
|
88
|
+
favor:
|
|
89
|
+
- sound_design
|
|
90
|
+
- device_creation
|
|
91
|
+
deprioritize:
|
|
92
|
+
- mix
|
|
93
|
+
- arrangement
|
|
94
|
+
- transition
|
|
95
|
+
- performance
|
|
96
|
+
|
|
97
|
+
dimensions_in_scope:
|
|
98
|
+
- timbral
|
|
99
|
+
- spatial
|
|
100
|
+
dimensions_deprioritized:
|
|
101
|
+
- rhythmic
|
|
102
|
+
- structural
|
|
103
|
+
|
|
104
|
+
novelty_budget_default: 0.4
|
|
105
|
+
|
|
106
|
+
tempo_hint:
|
|
107
|
+
min: 0
|
|
108
|
+
max: 0 # no tempo — duration-based form
|
|
109
|
+
|
|
110
|
+
canonical_artists: []
|
|
111
|
+
canonical_genres:
|
|
112
|
+
- ambient
|
|
113
|
+
- drone
|
|
114
|
+
- modern_classical
|
|
115
|
+
|
|
116
|
+
notes: |
|
|
117
|
+
Basinski is the strongest 2-of-4 case in the artist catalog. Only
|
|
118
|
+
timbral and spatial dimensions are legitimately in scope. Two-plan
|
|
119
|
+
outputs are correct; forcing a third plan invents fabrication.
|
|
120
|
+
|
|
121
|
+
Typical plan distribution: (1) sound_design — Vector Grain with
|
|
122
|
+
degraded source samples, (2) device_creation — Looper on a return
|
|
123
|
+
+ Convolution Reverb + Erosion chain. If the current session is
|
|
124
|
+
missing a degraded source, a third sample_engine-adjacent plan
|
|
125
|
+
(device_creation — load Sampler with a compressed degraded source)
|
|
126
|
+
is acceptable.
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
id: downtempo__boards_of_canada
|
|
2
|
+
name: Boards of Canada
|
|
3
|
+
type: artist
|
|
4
|
+
aliases:
|
|
5
|
+
- "boards of canada"
|
|
6
|
+
- "boc"
|
|
7
|
+
|
|
8
|
+
sonic_identity:
|
|
9
|
+
- degraded-tape analog warmth
|
|
10
|
+
- detuned synthesizers
|
|
11
|
+
- child-voice samples
|
|
12
|
+
- 70s children's TV aesthetic
|
|
13
|
+
- slow tempos
|
|
14
|
+
- nostalgic melancholy
|
|
15
|
+
|
|
16
|
+
reach_for:
|
|
17
|
+
instruments:
|
|
18
|
+
- Drift # warm detune
|
|
19
|
+
- Simpler # degraded samples with Erosion
|
|
20
|
+
- Electric Keyboards # tape-warped
|
|
21
|
+
effects:
|
|
22
|
+
- Echo # tape-delay via
|
|
23
|
+
- Grain Delay
|
|
24
|
+
- Vinyl Distortion
|
|
25
|
+
- Erosion
|
|
26
|
+
packs:
|
|
27
|
+
- Chop and Swing
|
|
28
|
+
- Electric Keyboards
|
|
29
|
+
- Mood Reel
|
|
30
|
+
utilities:
|
|
31
|
+
- EQ Eight
|
|
32
|
+
|
|
33
|
+
avoid:
|
|
34
|
+
- pristine samples
|
|
35
|
+
- modern drum production
|
|
36
|
+
- bright mixes
|
|
37
|
+
- clean synthesis chains
|
|
38
|
+
- fast tempos
|
|
39
|
+
|
|
40
|
+
rhythm_idioms:
|
|
41
|
+
- slow downtempo beats
|
|
42
|
+
- lo-fi break programming
|
|
43
|
+
- soft hand-percussion
|
|
44
|
+
|
|
45
|
+
harmony_idioms:
|
|
46
|
+
- detuned analog pad chords
|
|
47
|
+
- minor-key melancholic melodic fragments
|
|
48
|
+
- child-voice samples as melodic motif
|
|
49
|
+
|
|
50
|
+
arrangement_idioms:
|
|
51
|
+
- long slow reveal
|
|
52
|
+
- 4-6 minute tracks
|
|
53
|
+
- single mood sustained throughout
|
|
54
|
+
|
|
55
|
+
texture_idioms:
|
|
56
|
+
- tape warmth (Erosion + Vinyl Distortion on everything)
|
|
57
|
+
- slight tuning instability
|
|
58
|
+
- nostalgic haze
|
|
59
|
+
|
|
60
|
+
sample_roles:
|
|
61
|
+
- vocal_source
|
|
62
|
+
- texture_bed
|
|
63
|
+
- melodic_source
|
|
64
|
+
|
|
65
|
+
key_techniques:
|
|
66
|
+
- name: "Tape-warped EP"
|
|
67
|
+
source: atlas
|
|
68
|
+
device: Electric Keyboards
|
|
69
|
+
- name: "reverse_layer"
|
|
70
|
+
source: sample-techniques.md
|
|
71
|
+
- name: "Dense grain cloud"
|
|
72
|
+
source: atlas
|
|
73
|
+
device: Vector Grain
|
|
74
|
+
notes: for vocal processing
|
|
75
|
+
|
|
76
|
+
evaluation_bias:
|
|
77
|
+
target_dimensions:
|
|
78
|
+
depth: 0.22
|
|
79
|
+
cohesion: 0.18
|
|
80
|
+
motion: 0.14
|
|
81
|
+
groove: 0.12
|
|
82
|
+
contrast: 0.12
|
|
83
|
+
novelty: 0.12
|
|
84
|
+
clarity: 0.10
|
|
85
|
+
protect:
|
|
86
|
+
clarity: 0.55
|
|
87
|
+
cohesion: 0.72
|
|
88
|
+
low_end: 0.65
|
|
89
|
+
|
|
90
|
+
move_family_bias:
|
|
91
|
+
favor:
|
|
92
|
+
- sound_design
|
|
93
|
+
- device_creation
|
|
94
|
+
- arrangement
|
|
95
|
+
deprioritize:
|
|
96
|
+
- mix
|
|
97
|
+
- performance
|
|
98
|
+
|
|
99
|
+
dimensions_in_scope:
|
|
100
|
+
- timbral
|
|
101
|
+
- structural
|
|
102
|
+
- spatial
|
|
103
|
+
- rhythmic
|
|
104
|
+
dimensions_deprioritized: []
|
|
105
|
+
|
|
106
|
+
novelty_budget_default: 0.4
|
|
107
|
+
|
|
108
|
+
tempo_hint:
|
|
109
|
+
min: 70
|
|
110
|
+
max: 95
|
|
111
|
+
time_signature: "4/4"
|
|
112
|
+
|
|
113
|
+
canonical_artists: []
|
|
114
|
+
canonical_genres:
|
|
115
|
+
- downtempo
|
|
116
|
+
- lo_fi
|
|
117
|
+
|
|
118
|
+
notes: |
|
|
119
|
+
BoC asks cluster around tape-warmth and detune. Plans often include:
|
|
120
|
+
sound_design (Drift with detune + filter drift), device_creation
|
|
121
|
+
(Vinyl Distortion + Erosion chain on drum bus, Grain Delay on pad),
|
|
122
|
+
arrangement (long slow reveal structure). Bass-laptop audibility
|
|
123
|
+
note (per memory): BoC bass is D1-D2 territory — ensure 150-200 Hz
|
|
124
|
+
harmonic boost for laptop playback.
|