livepilot 1.25.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 +80 -0
- package/README.md +9 -9
- 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/atlas/tools.py +63 -12
- package/mcp_server/audit/checks.py +167 -6
- package/mcp_server/audit/state.py +88 -0
- package/mcp_server/audit/tools.py +6 -69
- package/mcp_server/composer/develop/apply.py +2 -2
- package/mcp_server/composer/full/apply.py +32 -6
- package/mcp_server/grader/__init__.py +17 -0
- package/mcp_server/grader/client.py +647 -0
- package/mcp_server/grader/iterator.py +57 -0
- package/mcp_server/grader/tools.py +263 -0
- 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 +12 -7
- package/mcp_server/tools/browser.py +68 -0
- package/package.json +20 -5
- package/remote_script/LivePilot/__init__.py +1 -1
- package/remote_script/LivePilot/server.py +63 -2
- package/requirements.txt +24 -3
- package/server.json +3 -3
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
id: minimal_techno
|
|
2
|
+
name: Minimal Techno
|
|
3
|
+
type: genre
|
|
4
|
+
aliases:
|
|
5
|
+
- "minimal techno"
|
|
6
|
+
- "min-techno"
|
|
7
|
+
|
|
8
|
+
sonic_identity:
|
|
9
|
+
- punchy-but-restrained kick at ~60 Hz
|
|
10
|
+
- single evolving source with filter automation as melody
|
|
11
|
+
- 909 hats with occasional hand percussion
|
|
12
|
+
- no clutter
|
|
13
|
+
|
|
14
|
+
reach_for:
|
|
15
|
+
instruments:
|
|
16
|
+
- Analog # Hawtin subtractive
|
|
17
|
+
- Drift
|
|
18
|
+
- Operator
|
|
19
|
+
- Simpler
|
|
20
|
+
effects:
|
|
21
|
+
- Auto Filter # slow LFO
|
|
22
|
+
- Convolution Reverb
|
|
23
|
+
- Echo
|
|
24
|
+
- Saturator
|
|
25
|
+
packs:
|
|
26
|
+
- Core Library synths
|
|
27
|
+
- Drone Lab
|
|
28
|
+
utilities:
|
|
29
|
+
- Utility
|
|
30
|
+
- EQ Eight
|
|
31
|
+
|
|
32
|
+
avoid:
|
|
33
|
+
- additive arrangement
|
|
34
|
+
- thick layering
|
|
35
|
+
- busy percussion
|
|
36
|
+
- preset chains
|
|
37
|
+
|
|
38
|
+
rhythm_idioms:
|
|
39
|
+
- punchy 4/4 kick
|
|
40
|
+
- 909 hats steady
|
|
41
|
+
- occasional hand percussion
|
|
42
|
+
|
|
43
|
+
harmony_idioms:
|
|
44
|
+
- single evolving harmonic source
|
|
45
|
+
- filter automation AS melody
|
|
46
|
+
- occasional stab
|
|
47
|
+
|
|
48
|
+
arrangement_idioms:
|
|
49
|
+
- long subtractive progression
|
|
50
|
+
- elements removed more often than added
|
|
51
|
+
- 8-12 minute tracks
|
|
52
|
+
|
|
53
|
+
texture_idioms:
|
|
54
|
+
- minimal texture
|
|
55
|
+
- one or two background elements
|
|
56
|
+
- subtle evolution
|
|
57
|
+
|
|
58
|
+
sample_roles:
|
|
59
|
+
- drone_source
|
|
60
|
+
- stab_source
|
|
61
|
+
|
|
62
|
+
key_techniques:
|
|
63
|
+
- name: "Hawtin subtractive pad"
|
|
64
|
+
source: atlas
|
|
65
|
+
device: Analog
|
|
66
|
+
- name: "Micro-Modulation"
|
|
67
|
+
source: sound-design-deep.md
|
|
68
|
+
- name: "Subtraction over addition"
|
|
69
|
+
source: sound-design-deep.md
|
|
70
|
+
|
|
71
|
+
evaluation_bias:
|
|
72
|
+
target_dimensions:
|
|
73
|
+
depth: 0.20
|
|
74
|
+
motion: 0.18
|
|
75
|
+
groove: 0.16
|
|
76
|
+
cohesion: 0.14
|
|
77
|
+
novelty: 0.12
|
|
78
|
+
contrast: 0.10
|
|
79
|
+
clarity: 0.10
|
|
80
|
+
protect:
|
|
81
|
+
clarity: 0.60
|
|
82
|
+
cohesion: 0.70
|
|
83
|
+
low_end: 0.75
|
|
84
|
+
|
|
85
|
+
move_family_bias:
|
|
86
|
+
favor:
|
|
87
|
+
- sound_design
|
|
88
|
+
- arrangement
|
|
89
|
+
- mix
|
|
90
|
+
deprioritize:
|
|
91
|
+
- device_creation # minimal genres punish additive device loading
|
|
92
|
+
- performance
|
|
93
|
+
|
|
94
|
+
dimensions_in_scope:
|
|
95
|
+
- timbral
|
|
96
|
+
- structural
|
|
97
|
+
- spatial
|
|
98
|
+
dimensions_deprioritized:
|
|
99
|
+
- rhythmic # percussion is conservative — no creative rhythmic work
|
|
100
|
+
|
|
101
|
+
novelty_budget_default: 0.45
|
|
102
|
+
|
|
103
|
+
tempo_hint:
|
|
104
|
+
min: 128
|
|
105
|
+
max: 132
|
|
106
|
+
time_signature: "4/4"
|
|
107
|
+
|
|
108
|
+
canonical_artists:
|
|
109
|
+
- hawtin
|
|
110
|
+
|
|
111
|
+
canonical_genres: []
|
|
112
|
+
|
|
113
|
+
notes: |
|
|
114
|
+
Minimal techno genre asks strongly favor subtractive work. Plans
|
|
115
|
+
that add new devices should be last-priority — the aesthetic is
|
|
116
|
+
built on what is NOT there.
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
id: modern_classical
|
|
2
|
+
name: Modern Classical / Cinematic
|
|
3
|
+
type: genre
|
|
4
|
+
aliases:
|
|
5
|
+
- "modern classical"
|
|
6
|
+
- "cinematic"
|
|
7
|
+
- "neo-classical"
|
|
8
|
+
|
|
9
|
+
sonic_identity:
|
|
10
|
+
- 60-90 BPM or rubato (no fixed tempo)
|
|
11
|
+
- sustained strings, piano fragments, occasional brass swells
|
|
12
|
+
- major/minor tonal with occasional chromatic motion
|
|
13
|
+
- natural hall acoustic
|
|
14
|
+
|
|
15
|
+
reach_for:
|
|
16
|
+
instruments:
|
|
17
|
+
- Sampler # multi-velocity orchestral libraries
|
|
18
|
+
- Tension # bowed cello
|
|
19
|
+
- Collision # mallets
|
|
20
|
+
- Upright Piano # Spitfire
|
|
21
|
+
effects:
|
|
22
|
+
- Convolution Reverb # hall / cathedral
|
|
23
|
+
- EQ Eight
|
|
24
|
+
- Compressor # string bus
|
|
25
|
+
packs:
|
|
26
|
+
- Spitfire Strings/Brass
|
|
27
|
+
- Orchestral Mallets
|
|
28
|
+
- Upright Piano
|
|
29
|
+
- SONiVOX Orchestral Strings
|
|
30
|
+
- SONiVOX Orchestral Brass # pp only
|
|
31
|
+
- SONiVOX Orchestral Woodwinds # pp only
|
|
32
|
+
utilities:
|
|
33
|
+
- EQ Eight
|
|
34
|
+
|
|
35
|
+
avoid:
|
|
36
|
+
- electronic drums
|
|
37
|
+
- synthesizers (unless sparse & atmospheric)
|
|
38
|
+
- compressed mix
|
|
39
|
+
- bright EQ
|
|
40
|
+
|
|
41
|
+
rhythm_idioms:
|
|
42
|
+
- rubato (no fixed tempo)
|
|
43
|
+
- timpani when rhythm exists
|
|
44
|
+
- no kit drums
|
|
45
|
+
|
|
46
|
+
harmony_idioms:
|
|
47
|
+
- major/minor tonal with chromatic motion
|
|
48
|
+
- suspensions and resolutions
|
|
49
|
+
- piano fragments as melodic anchor
|
|
50
|
+
|
|
51
|
+
arrangement_idioms:
|
|
52
|
+
- A-B-A' cinematic form
|
|
53
|
+
- piano statement → string bed entry → deeper return
|
|
54
|
+
- tension and release pacing
|
|
55
|
+
|
|
56
|
+
texture_idioms:
|
|
57
|
+
- natural hall acoustic
|
|
58
|
+
- breath and bow artifacts
|
|
59
|
+
- grand piano resonance
|
|
60
|
+
|
|
61
|
+
sample_roles:
|
|
62
|
+
- melodic_source
|
|
63
|
+
- texture_bed
|
|
64
|
+
|
|
65
|
+
key_techniques:
|
|
66
|
+
- name: "Orchestral multi-velocity"
|
|
67
|
+
source: atlas
|
|
68
|
+
device: Sampler
|
|
69
|
+
- name: "Bowed cello low register"
|
|
70
|
+
source: atlas
|
|
71
|
+
device: Tension
|
|
72
|
+
- name: "Single sustained note pedal-down"
|
|
73
|
+
source: pack-knowledge.md
|
|
74
|
+
device: Upright Piano
|
|
75
|
+
|
|
76
|
+
evaluation_bias:
|
|
77
|
+
target_dimensions:
|
|
78
|
+
depth: 0.22
|
|
79
|
+
cohesion: 0.20
|
|
80
|
+
motion: 0.16
|
|
81
|
+
contrast: 0.14
|
|
82
|
+
novelty: 0.10
|
|
83
|
+
groove: 0.08
|
|
84
|
+
clarity: 0.10
|
|
85
|
+
protect:
|
|
86
|
+
clarity: 0.65
|
|
87
|
+
cohesion: 0.78
|
|
88
|
+
low_end: 0.55
|
|
89
|
+
|
|
90
|
+
move_family_bias:
|
|
91
|
+
favor:
|
|
92
|
+
- sound_design
|
|
93
|
+
- device_creation
|
|
94
|
+
- arrangement
|
|
95
|
+
deprioritize:
|
|
96
|
+
- mix
|
|
97
|
+
- transition
|
|
98
|
+
- performance
|
|
99
|
+
|
|
100
|
+
dimensions_in_scope:
|
|
101
|
+
- timbral
|
|
102
|
+
- structural
|
|
103
|
+
- spatial
|
|
104
|
+
dimensions_deprioritized:
|
|
105
|
+
- rhythmic
|
|
106
|
+
|
|
107
|
+
novelty_budget_default: 0.4
|
|
108
|
+
|
|
109
|
+
tempo_hint:
|
|
110
|
+
min: 60
|
|
111
|
+
max: 90
|
|
112
|
+
time_signature: "4/4" # often rubato
|
|
113
|
+
|
|
114
|
+
canonical_artists:
|
|
115
|
+
- johannsson-richter
|
|
116
|
+
- stars-of-the-lid
|
|
117
|
+
|
|
118
|
+
canonical_genres: []
|
|
119
|
+
|
|
120
|
+
notes: |
|
|
121
|
+
Modern Classical differs from ambient by having ACTUAL section form
|
|
122
|
+
(A-B-A'), giving structural dimension real scope. Plans should
|
|
123
|
+
favor orchestral sources over synthesized substitutes.
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
id: soul
|
|
2
|
+
name: Soul
|
|
3
|
+
type: genre
|
|
4
|
+
aliases:
|
|
5
|
+
- "soul"
|
|
6
|
+
- "neo soul"
|
|
7
|
+
- "soulful"
|
|
8
|
+
|
|
9
|
+
sonic_identity:
|
|
10
|
+
- live-drummer boom-bap feel (around 85-95 BPM)
|
|
11
|
+
- warm Rhodes / Wurly keys as harmonic core
|
|
12
|
+
- electric bass (not synth)
|
|
13
|
+
- organic percussion (congas, shakers)
|
|
14
|
+
- rich 7th/9th chord voicings
|
|
15
|
+
|
|
16
|
+
reach_for:
|
|
17
|
+
instruments:
|
|
18
|
+
- Electric Keyboards # Rhodes/Wurly
|
|
19
|
+
- Bass
|
|
20
|
+
- Simpler # live drum samples
|
|
21
|
+
effects:
|
|
22
|
+
- Saturator
|
|
23
|
+
- Vinyl Distortion
|
|
24
|
+
- Erosion
|
|
25
|
+
packs:
|
|
26
|
+
- Electric Keyboards
|
|
27
|
+
- Chop and Swing
|
|
28
|
+
- Drum Booth
|
|
29
|
+
- Live Drums
|
|
30
|
+
- Core Library # horns etc
|
|
31
|
+
utilities:
|
|
32
|
+
- EQ Eight
|
|
33
|
+
|
|
34
|
+
avoid:
|
|
35
|
+
- pristine digital synthesis
|
|
36
|
+
- quantized drums
|
|
37
|
+
- synth bass
|
|
38
|
+
- modern trap production
|
|
39
|
+
|
|
40
|
+
rhythm_idioms:
|
|
41
|
+
- live-drummer feel
|
|
42
|
+
- organic swing (not groove template)
|
|
43
|
+
- shaker and conga layer
|
|
44
|
+
- kick on 1+3, snare on 2+4 with ghost notes
|
|
45
|
+
|
|
46
|
+
harmony_idioms:
|
|
47
|
+
- 7th / 9th / 11th chord voicings
|
|
48
|
+
- Rhodes vamp as harmonic core
|
|
49
|
+
- vocal samples or live vocals as lead
|
|
50
|
+
- major-minor interplay
|
|
51
|
+
|
|
52
|
+
arrangement_idioms:
|
|
53
|
+
- traditional pop/soul form (verse/chorus/bridge)
|
|
54
|
+
- 3-5 minute tracks
|
|
55
|
+
- vocal-driven song structure
|
|
56
|
+
|
|
57
|
+
texture_idioms:
|
|
58
|
+
- warm tube saturation
|
|
59
|
+
- vinyl character on drum bus
|
|
60
|
+
- horns / strings as texture layer
|
|
61
|
+
|
|
62
|
+
sample_roles:
|
|
63
|
+
- melodic_source
|
|
64
|
+
- vocal_source
|
|
65
|
+
- rhythmic_chop
|
|
66
|
+
|
|
67
|
+
key_techniques:
|
|
68
|
+
- name: "Classic Rhodes"
|
|
69
|
+
source: atlas
|
|
70
|
+
device: Electric Keyboards
|
|
71
|
+
- name: "Tape-warped EP"
|
|
72
|
+
source: atlas
|
|
73
|
+
device: Electric Keyboards
|
|
74
|
+
- name: "slice_and_sequence"
|
|
75
|
+
source: sample-techniques.md
|
|
76
|
+
|
|
77
|
+
evaluation_bias:
|
|
78
|
+
target_dimensions:
|
|
79
|
+
groove: 0.22
|
|
80
|
+
cohesion: 0.18
|
|
81
|
+
depth: 0.14
|
|
82
|
+
motion: 0.14
|
|
83
|
+
novelty: 0.10
|
|
84
|
+
contrast: 0.12
|
|
85
|
+
clarity: 0.10
|
|
86
|
+
protect:
|
|
87
|
+
clarity: 0.65
|
|
88
|
+
cohesion: 0.72
|
|
89
|
+
low_end: 0.70
|
|
90
|
+
|
|
91
|
+
move_family_bias:
|
|
92
|
+
favor:
|
|
93
|
+
- sound_design
|
|
94
|
+
- device_creation
|
|
95
|
+
- arrangement
|
|
96
|
+
deprioritize:
|
|
97
|
+
- performance
|
|
98
|
+
|
|
99
|
+
dimensions_in_scope:
|
|
100
|
+
- rhythmic
|
|
101
|
+
- timbral
|
|
102
|
+
- structural
|
|
103
|
+
- spatial
|
|
104
|
+
dimensions_deprioritized: []
|
|
105
|
+
|
|
106
|
+
novelty_budget_default: 0.35
|
|
107
|
+
|
|
108
|
+
tempo_hint:
|
|
109
|
+
min: 85
|
|
110
|
+
max: 100
|
|
111
|
+
time_signature: "4/4"
|
|
112
|
+
|
|
113
|
+
canonical_artists:
|
|
114
|
+
- j-dilla
|
|
115
|
+
- moodymann-theo-parrish
|
|
116
|
+
|
|
117
|
+
canonical_genres: []
|
|
118
|
+
|
|
119
|
+
notes: |
|
|
120
|
+
Soul (as referenced by Dilla/Moodymann/Theo Parrish) is the source
|
|
121
|
+
material genre that hip-hop and deep-house both sample. A user
|
|
122
|
+
referencing "soul" likely wants the SAMPLE aesthetic — Rhodes chords
|
|
123
|
+
with 7th/9th voicings, organic drums, warm saturation — rather than
|
|
124
|
+
a full live-band soul track. Plans typically center on Electric
|
|
125
|
+
Keyboards programming + vinyl-saturated drum bus.
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
id: synthwave
|
|
2
|
+
name: Synthwave
|
|
3
|
+
type: genre
|
|
4
|
+
aliases:
|
|
5
|
+
- "synthwave"
|
|
6
|
+
- "retrowave"
|
|
7
|
+
- "outrun"
|
|
8
|
+
- "vaporwave" # vaporwave overlaps aesthetically
|
|
9
|
+
|
|
10
|
+
sonic_identity:
|
|
11
|
+
- 80s analog polysynth nostalgia
|
|
12
|
+
- gated reverb on drums (80s signature)
|
|
13
|
+
- chorus-heavy leads
|
|
14
|
+
- warm analog bass
|
|
15
|
+
- arpeggiated sequences
|
|
16
|
+
- mid-tempo groove (85-115 BPM)
|
|
17
|
+
|
|
18
|
+
reach_for:
|
|
19
|
+
instruments:
|
|
20
|
+
- Poli # Juno-style
|
|
21
|
+
- Analog
|
|
22
|
+
- Drift # warm pads
|
|
23
|
+
effects:
|
|
24
|
+
- Chorus-Ensemble
|
|
25
|
+
- Gated Delay # 80s gated-reverb-drum aesthetic
|
|
26
|
+
- Arpeggiator
|
|
27
|
+
- Echo
|
|
28
|
+
packs:
|
|
29
|
+
- Synth Essentials
|
|
30
|
+
- Performance Pack # Arpeggiator
|
|
31
|
+
- Core Library
|
|
32
|
+
utilities:
|
|
33
|
+
- EQ Eight
|
|
34
|
+
|
|
35
|
+
avoid:
|
|
36
|
+
- modern dance production
|
|
37
|
+
- aggressive compression
|
|
38
|
+
- digital-only chains
|
|
39
|
+
- bright harsh synthesis
|
|
40
|
+
|
|
41
|
+
rhythm_idioms:
|
|
42
|
+
- mid-tempo 4/4 with gated snare reverb
|
|
43
|
+
- arpeggiated 16th-note sequences
|
|
44
|
+
- analog-tape swing feel
|
|
45
|
+
|
|
46
|
+
harmony_idioms:
|
|
47
|
+
- suspended chords on pads
|
|
48
|
+
- minor-key progressions
|
|
49
|
+
- 80s-style key changes via sequencer transpose
|
|
50
|
+
|
|
51
|
+
arrangement_idioms:
|
|
52
|
+
- verse/chorus form with clear payoff moments
|
|
53
|
+
- arpeggio enters at bar 16, pad enters at bar 32
|
|
54
|
+
- conventional pop structure for instrumental
|
|
55
|
+
|
|
56
|
+
texture_idioms:
|
|
57
|
+
- warm chorus on leads
|
|
58
|
+
- gated reverb on snare
|
|
59
|
+
- analog-tape character
|
|
60
|
+
|
|
61
|
+
sample_roles:
|
|
62
|
+
- pad_layer
|
|
63
|
+
- melodic_source
|
|
64
|
+
|
|
65
|
+
key_techniques:
|
|
66
|
+
- name: "Juno-style detuned chord"
|
|
67
|
+
source: atlas
|
|
68
|
+
device: Poli
|
|
69
|
+
- name: "Warm synthwave pad"
|
|
70
|
+
source: atlas
|
|
71
|
+
device: Drift
|
|
72
|
+
- name: "Supersaw trance lead"
|
|
73
|
+
source: atlas
|
|
74
|
+
device: Wavetable
|
|
75
|
+
|
|
76
|
+
evaluation_bias:
|
|
77
|
+
target_dimensions:
|
|
78
|
+
motion: 0.20
|
|
79
|
+
cohesion: 0.18
|
|
80
|
+
groove: 0.14
|
|
81
|
+
depth: 0.14
|
|
82
|
+
novelty: 0.12
|
|
83
|
+
contrast: 0.12
|
|
84
|
+
clarity: 0.10
|
|
85
|
+
protect:
|
|
86
|
+
clarity: 0.65
|
|
87
|
+
cohesion: 0.75
|
|
88
|
+
low_end: 0.65
|
|
89
|
+
|
|
90
|
+
move_family_bias:
|
|
91
|
+
favor:
|
|
92
|
+
- sound_design
|
|
93
|
+
- device_creation
|
|
94
|
+
- arrangement
|
|
95
|
+
deprioritize:
|
|
96
|
+
- performance
|
|
97
|
+
|
|
98
|
+
dimensions_in_scope:
|
|
99
|
+
- timbral
|
|
100
|
+
- structural
|
|
101
|
+
- spatial
|
|
102
|
+
- rhythmic
|
|
103
|
+
dimensions_deprioritized: []
|
|
104
|
+
|
|
105
|
+
novelty_budget_default: 0.45
|
|
106
|
+
|
|
107
|
+
tempo_hint:
|
|
108
|
+
min: 85
|
|
109
|
+
max: 115
|
|
110
|
+
time_signature: "4/4"
|
|
111
|
+
|
|
112
|
+
canonical_artists:
|
|
113
|
+
- com-truise-tycho
|
|
114
|
+
|
|
115
|
+
canonical_genres: []
|
|
116
|
+
|
|
117
|
+
notes: |
|
|
118
|
+
Synthwave asks reward analog-polysynth authenticity. Plans should
|
|
119
|
+
include: sound_design (Poli/Drift patch programming), device_creation
|
|
120
|
+
(Gated Delay for 80s drums, Chorus-Ensemble on leads), arrangement
|
|
121
|
+
(clear verse/chorus payoff). Vaporwave is aliased here because it
|
|
122
|
+
shares the analog-nostalgia aesthetic, though vaporwave specifically
|
|
123
|
+
tilts toward slower + more detuned + sample-flip-heavy.
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
id: techno
|
|
2
|
+
name: Techno
|
|
3
|
+
type: genre
|
|
4
|
+
aliases:
|
|
5
|
+
- "techno"
|
|
6
|
+
|
|
7
|
+
sonic_identity:
|
|
8
|
+
- relentless 4/4 drive
|
|
9
|
+
- 909-lineage kick-clap-hat
|
|
10
|
+
- minimal melody, texture-heavy
|
|
11
|
+
- sci-fi synth stabs or bell clusters
|
|
12
|
+
- long-form arrangement (15-25 minute live sets)
|
|
13
|
+
|
|
14
|
+
reach_for:
|
|
15
|
+
instruments:
|
|
16
|
+
- Drift
|
|
17
|
+
- Operator
|
|
18
|
+
- Drum Rack # 909 samples
|
|
19
|
+
- Analog
|
|
20
|
+
effects:
|
|
21
|
+
- Phase Pattern # hi-hat humanization
|
|
22
|
+
- Echo
|
|
23
|
+
- Saturator
|
|
24
|
+
- Auto Filter
|
|
25
|
+
packs:
|
|
26
|
+
- Drum Essentials
|
|
27
|
+
- Core Library
|
|
28
|
+
utilities:
|
|
29
|
+
- EQ Eight
|
|
30
|
+
- Utility
|
|
31
|
+
|
|
32
|
+
avoid:
|
|
33
|
+
- melodic harmony (chord progressions)
|
|
34
|
+
- breakdowns that drop to zero
|
|
35
|
+
- restful moments
|
|
36
|
+
- slow tempos
|
|
37
|
+
- trap-style hat rolls
|
|
38
|
+
|
|
39
|
+
rhythm_idioms:
|
|
40
|
+
- relentless 909 programming
|
|
41
|
+
- layered hi-hat patterns
|
|
42
|
+
- no break — energy sustained throughout
|
|
43
|
+
- occasional ride cymbal accent
|
|
44
|
+
|
|
45
|
+
harmony_idioms:
|
|
46
|
+
- single stab or bell cluster
|
|
47
|
+
- no progression — stab IS texture
|
|
48
|
+
- microtonal moments via Operator/Microtuner
|
|
49
|
+
|
|
50
|
+
arrangement_idioms:
|
|
51
|
+
- long-form sustain
|
|
52
|
+
- drop elements for 32 bars, reintroduce
|
|
53
|
+
- energy modulation via element swapping
|
|
54
|
+
- no traditional verse/chorus form
|
|
55
|
+
|
|
56
|
+
texture_idioms:
|
|
57
|
+
- tight Echo on stabs
|
|
58
|
+
- saturated 909 samples
|
|
59
|
+
- minimal reverb (dry techno space)
|
|
60
|
+
|
|
61
|
+
sample_roles:
|
|
62
|
+
- stab_source
|
|
63
|
+
- percussive_ghost
|
|
64
|
+
|
|
65
|
+
key_techniques:
|
|
66
|
+
- name: "Retro stab"
|
|
67
|
+
source: atlas
|
|
68
|
+
device: Poli
|
|
69
|
+
- name: "phase_pattern"
|
|
70
|
+
source: sample-techniques.md
|
|
71
|
+
- name: "Aphex ambient FM pad"
|
|
72
|
+
source: atlas
|
|
73
|
+
device: Operator
|
|
74
|
+
|
|
75
|
+
evaluation_bias:
|
|
76
|
+
target_dimensions:
|
|
77
|
+
groove: 0.22
|
|
78
|
+
motion: 0.20
|
|
79
|
+
contrast: 0.14
|
|
80
|
+
cohesion: 0.12
|
|
81
|
+
novelty: 0.12
|
|
82
|
+
depth: 0.10
|
|
83
|
+
clarity: 0.10
|
|
84
|
+
protect:
|
|
85
|
+
clarity: 0.60
|
|
86
|
+
cohesion: 0.70
|
|
87
|
+
low_end: 0.75
|
|
88
|
+
|
|
89
|
+
move_family_bias:
|
|
90
|
+
favor:
|
|
91
|
+
- arrangement
|
|
92
|
+
- sound_design
|
|
93
|
+
- mix
|
|
94
|
+
deprioritize:
|
|
95
|
+
- transition
|
|
96
|
+
- performance
|
|
97
|
+
|
|
98
|
+
dimensions_in_scope:
|
|
99
|
+
- rhythmic
|
|
100
|
+
- timbral
|
|
101
|
+
- structural
|
|
102
|
+
dimensions_deprioritized:
|
|
103
|
+
- spatial
|
|
104
|
+
|
|
105
|
+
novelty_budget_default: 0.5
|
|
106
|
+
|
|
107
|
+
tempo_hint:
|
|
108
|
+
min: 128
|
|
109
|
+
max: 140
|
|
110
|
+
time_signature: "4/4"
|
|
111
|
+
|
|
112
|
+
canonical_artists:
|
|
113
|
+
- jeff-mills
|
|
114
|
+
- hawtin
|
|
115
|
+
- shackleton
|
|
116
|
+
|
|
117
|
+
canonical_genres: []
|
|
118
|
+
|
|
119
|
+
notes: |
|
|
120
|
+
Techno (the broad canon) is percussive-dominant — Jeff Mills is
|
|
121
|
+
the touchstone. For minimal-techno specifically (Hawtin), use the
|
|
122
|
+
minimal-techno packet. For dub-techno, use dub-techno. This packet
|
|
123
|
+
is the parent aesthetic that both subgenres borrow from.
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
id: trap
|
|
2
|
+
name: Trap / Modern Hip-Hop
|
|
3
|
+
type: genre
|
|
4
|
+
aliases:
|
|
5
|
+
- "trap"
|
|
6
|
+
- "modern hip-hop"
|
|
7
|
+
- "modern hip hop"
|
|
8
|
+
|
|
9
|
+
sonic_identity:
|
|
10
|
+
- 130-160 BPM (half-time perceived 65-80 BPM)
|
|
11
|
+
- 808 sub-bass IS the bass
|
|
12
|
+
- crisp snappy snares
|
|
13
|
+
- hyper-fast hi-hat rolls (1/32, 1/64)
|
|
14
|
+
- minor-key melody
|
|
15
|
+
- atmospheric pads and vocal chops
|
|
16
|
+
|
|
17
|
+
reach_for:
|
|
18
|
+
instruments:
|
|
19
|
+
- Bass # Creative Extensions — 808
|
|
20
|
+
- Simpler # trap one-shots
|
|
21
|
+
- Wavetable # stabs
|
|
22
|
+
- Drum Rack # programmed hats
|
|
23
|
+
effects:
|
|
24
|
+
- Compressor # aggressive
|
|
25
|
+
- Saturator
|
|
26
|
+
- Reverb
|
|
27
|
+
- Pitch Hack # ad-lib chops
|
|
28
|
+
packs:
|
|
29
|
+
- Trap Drums
|
|
30
|
+
- Beat Tools
|
|
31
|
+
utilities:
|
|
32
|
+
- EQ Eight
|
|
33
|
+
|
|
34
|
+
avoid:
|
|
35
|
+
- live drums
|
|
36
|
+
- major-key dominance
|
|
37
|
+
- slow tempos
|
|
38
|
+
- retro aesthetic
|
|
39
|
+
|
|
40
|
+
rhythm_idioms:
|
|
41
|
+
- half-time drum pattern
|
|
42
|
+
- hat rolls at 1/32 and 1/64
|
|
43
|
+
- sparse snare-on-3
|
|
44
|
+
- 808 punctuation
|
|
45
|
+
|
|
46
|
+
harmony_idioms:
|
|
47
|
+
- minor-key melodic stabs
|
|
48
|
+
- heavily-tuned synth lead
|
|
49
|
+
- occasional strings / piano
|
|
50
|
+
|
|
51
|
+
arrangement_idioms:
|
|
52
|
+
- intro-buildup-drop-breakdown-return
|
|
53
|
+
- vocal-driven song form
|
|
54
|
+
- 3-4 minute standard
|
|
55
|
+
|
|
56
|
+
texture_idioms:
|
|
57
|
+
- atmospheric pads
|
|
58
|
+
- vocal chops and ad-libs
|
|
59
|
+
- heavy reverb on leads
|
|
60
|
+
|
|
61
|
+
sample_roles:
|
|
62
|
+
- vocal_source
|
|
63
|
+
- percussive_accent
|
|
64
|
+
- melodic_stab
|
|
65
|
+
|
|
66
|
+
key_techniques:
|
|
67
|
+
- name: "808 sub replacement"
|
|
68
|
+
source: atlas
|
|
69
|
+
device: Bass
|
|
70
|
+
- name: "Wobble bass"
|
|
71
|
+
source: atlas
|
|
72
|
+
device: Wavetable
|
|
73
|
+
notes: at reduced depth for tonal 808
|
|
74
|
+
- name: hat-roll 1/32 programming
|
|
75
|
+
source: sample-techniques.md
|
|
76
|
+
|
|
77
|
+
evaluation_bias:
|
|
78
|
+
target_dimensions:
|
|
79
|
+
groove: 0.20
|
|
80
|
+
contrast: 0.16
|
|
81
|
+
motion: 0.16
|
|
82
|
+
novelty: 0.12
|
|
83
|
+
depth: 0.14
|
|
84
|
+
cohesion: 0.12
|
|
85
|
+
clarity: 0.10
|
|
86
|
+
protect:
|
|
87
|
+
clarity: 0.65
|
|
88
|
+
cohesion: 0.65
|
|
89
|
+
low_end: 0.85 # 808 is the foundation
|
|
90
|
+
|
|
91
|
+
move_family_bias:
|
|
92
|
+
favor:
|
|
93
|
+
- sound_design
|
|
94
|
+
- arrangement
|
|
95
|
+
- device_creation
|
|
96
|
+
deprioritize:
|
|
97
|
+
- performance
|
|
98
|
+
|
|
99
|
+
dimensions_in_scope:
|
|
100
|
+
- rhythmic
|
|
101
|
+
- timbral
|
|
102
|
+
- structural
|
|
103
|
+
- spatial
|
|
104
|
+
dimensions_deprioritized: []
|
|
105
|
+
|
|
106
|
+
novelty_budget_default: 0.45
|
|
107
|
+
|
|
108
|
+
tempo_hint:
|
|
109
|
+
min: 130
|
|
110
|
+
max: 160
|
|
111
|
+
time_signature: "4/4" # half-time perceived
|
|
112
|
+
|
|
113
|
+
canonical_artists: []
|
|
114
|
+
canonical_genres: []
|
|
115
|
+
|
|
116
|
+
notes: |
|
|
117
|
+
Trap is the most commercial-leaning entry in the catalog — novelty
|
|
118
|
+
budget default is conservative. Plans should focus on 808
|
|
119
|
+
programming, hat-roll precision, and arrangement-level structural
|
|
120
|
+
moves (buildup + drop).
|