livepilot 1.9.15 → 1.9.17
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/.claude-plugin/marketplace.json +1 -1
- package/AGENTS.md +1 -1
- package/CHANGELOG.md +69 -0
- package/README.md +1 -1
- package/livepilot/.Codex-plugin/plugin.json +1 -1
- package/livepilot/.claude-plugin/plugin.json +1 -1
- package/livepilot/agents/livepilot-producer/AGENT.md +15 -1
- package/livepilot/commands/arrange.md +19 -0
- package/livepilot/commands/evaluate.md +39 -0
- package/livepilot/commands/mix.md +9 -4
- package/livepilot/commands/perform.md +30 -0
- package/livepilot/commands/sounddesign.md +9 -4
- package/livepilot/skills/livepilot-arrangement/SKILL.md +137 -0
- package/livepilot/skills/livepilot-composition-engine/SKILL.md +107 -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 +67 -443
- package/livepilot/skills/livepilot-core/references/overview.md +1 -1
- package/livepilot/skills/livepilot-devices/SKILL.md +134 -0
- package/livepilot/skills/livepilot-evaluation/SKILL.md +152 -0
- package/livepilot/skills/livepilot-evaluation/references/capability-modes.md +118 -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 +123 -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 +156 -0
- package/livepilot/skills/livepilot-notes/SKILL.md +129 -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-sound-design-engine/SKILL.md +123 -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/m4l_device/livepilot_bridge.js +27 -13
- package/mcp_server/__init__.py +1 -1
- package/mcp_server/connection.py +24 -2
- package/mcp_server/curves.py +3 -3
- package/mcp_server/evaluation/fabric.py +1 -1
- package/mcp_server/m4l_bridge.py +9 -1
- package/mcp_server/memory/technique_store.py +25 -17
- package/mcp_server/mix_engine/critics.py +1 -1
- package/mcp_server/mix_engine/tools.py +14 -8
- package/mcp_server/performance_engine/safety.py +6 -3
- package/mcp_server/project_brain/refresh.py +8 -2
- package/mcp_server/project_brain/tools.py +12 -12
- package/mcp_server/reference_engine/tools.py +16 -15
- package/mcp_server/runtime/action_ledger_models.py +10 -3
- package/mcp_server/runtime/capability_state.py +3 -2
- package/mcp_server/runtime/tools.py +6 -3
- package/mcp_server/tools/agent_os.py +47 -39
- package/mcp_server/tools/composition.py +114 -32
- package/mcp_server/tools/devices.py +15 -1
- package/mcp_server/tools/midi_io.py +3 -1
- package/mcp_server/tools/research.py +31 -31
- package/mcp_server/tools/tracks.py +3 -3
- package/mcp_server/translation_engine/tools.py +50 -16
- package/package.json +1 -1
- package/remote_script/LivePilot/__init__.py +1 -1
- package/remote_script/LivePilot/arrangement.py +9 -1
- package/remote_script/LivePilot/clips.py +22 -6
- package/remote_script/LivePilot/notes.py +9 -1
- package/remote_script/LivePilot/server.py +6 -6
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
# Transition Archetypes Reference
|
|
2
|
+
|
|
3
|
+
Common transition patterns returned by `plan_transition` and usable with `apply_gesture_template`.
|
|
4
|
+
|
|
5
|
+
## Energy-Up Transitions
|
|
6
|
+
|
|
7
|
+
### riser_sweep
|
|
8
|
+
A filter or noise sweep that builds energy into the next section.
|
|
9
|
+
|
|
10
|
+
- Duration: 2-8 bars
|
|
11
|
+
- Implementation: ascending automation on filter cutoff (20% to 100%) plus optional white noise riser
|
|
12
|
+
- Best for: verse-to-chorus, breakdown-to-drop
|
|
13
|
+
- Tools: `set_clip_automation`, `apply_automation_shape(shape="exponential_rise")`
|
|
14
|
+
|
|
15
|
+
### drum_build
|
|
16
|
+
Progressive addition of percussion layers leading to the downbeat.
|
|
17
|
+
|
|
18
|
+
- Duration: 2-4 bars
|
|
19
|
+
- Implementation: add hi-hat rolls (increasing density), snare fills, kick pattern intensification
|
|
20
|
+
- Best for: pre-chorus builds, intro-to-verse
|
|
21
|
+
- Tools: `add_notes` for fill patterns, `set_track_volume` automation for gradual volume increase
|
|
22
|
+
|
|
23
|
+
### harmonic_tension
|
|
24
|
+
Build tension through suspended or unresolved harmony before resolving at the section boundary.
|
|
25
|
+
|
|
26
|
+
- Duration: 1-4 bars
|
|
27
|
+
- Implementation: sus4 or dominant 7th chord sustained over the transition, resolving on beat 1 of the new section
|
|
28
|
+
- Best for: verse-to-chorus, bridge-to-final-chorus
|
|
29
|
+
- Tools: `modify_notes` to alter chord voicings, `add_notes` for tension tones
|
|
30
|
+
|
|
31
|
+
### stacking
|
|
32
|
+
Gradually add instrumental layers, one per bar or phrase, building density.
|
|
33
|
+
|
|
34
|
+
- Duration: 4-16 bars
|
|
35
|
+
- Implementation: unmute tracks in sequence (percussion first, then bass, then harmony, then leads)
|
|
36
|
+
- Best for: intro builds, post-breakdown rebuilds
|
|
37
|
+
- Tools: `set_clip_automation` on track volume, `set_track_mute` for discrete layer adds
|
|
38
|
+
|
|
39
|
+
## Energy-Down Transitions
|
|
40
|
+
|
|
41
|
+
### strip_down
|
|
42
|
+
Remove elements one by one to reduce energy before a quieter section.
|
|
43
|
+
|
|
44
|
+
- Duration: 2-8 bars
|
|
45
|
+
- Implementation: mute layers in reverse order of importance (effects first, then leads, then harmony, keeping bass and kick last)
|
|
46
|
+
- Best for: chorus-to-verse, pre-breakdown
|
|
47
|
+
- Tools: `set_track_mute`, `set_track_volume` automation with gradual decrease
|
|
48
|
+
|
|
49
|
+
### filter_close
|
|
50
|
+
Low-pass filter sweep closing down to muffle the sound.
|
|
51
|
+
|
|
52
|
+
- Duration: 2-4 bars
|
|
53
|
+
- Implementation: descending automation on master or bus filter cutoff (100% to 20-30%)
|
|
54
|
+
- Best for: section endings, transitions to breakdowns
|
|
55
|
+
- Tools: `set_clip_automation`, `apply_automation_shape(shape="exponential_fall")`
|
|
56
|
+
|
|
57
|
+
### reverb_wash
|
|
58
|
+
Increase reverb wet level to blur the previous section into the next.
|
|
59
|
+
|
|
60
|
+
- Duration: 1-2 bars
|
|
61
|
+
- Implementation: automate send level to reverb return (0% to 60-80%), then cut dry signal on beat 1
|
|
62
|
+
- Best for: hard section changes where you want continuity of space
|
|
63
|
+
- Tools: `set_track_send` automation, `set_clip_automation`
|
|
64
|
+
|
|
65
|
+
## Neutral Transitions
|
|
66
|
+
|
|
67
|
+
### hard_cut
|
|
68
|
+
Instant transition with no preparation. The contrast itself creates impact.
|
|
69
|
+
|
|
70
|
+
- Duration: 0 bars (instantaneous)
|
|
71
|
+
- Implementation: no transition processing — the sections simply abut
|
|
72
|
+
- Best for: drop entries after silence, genre-specific style (punk, some electronic)
|
|
73
|
+
- Constraint: works best when the energy delta is extreme (silence to loud, or vice versa)
|
|
74
|
+
|
|
75
|
+
### crossfade
|
|
76
|
+
Gradual overlap of outgoing and incoming sections.
|
|
77
|
+
|
|
78
|
+
- Duration: 1-4 bars
|
|
79
|
+
- Implementation: outgoing section fades out while incoming fades in, overlapping by the crossfade duration
|
|
80
|
+
- Best for: ambient, cinematic, smooth genre transitions
|
|
81
|
+
- Tools: `set_clip_automation` on track volumes with opposing curves
|
|
82
|
+
|
|
83
|
+
### fill_break
|
|
84
|
+
A drum fill followed by a brief silence (1-2 beats) before the new section.
|
|
85
|
+
|
|
86
|
+
- Duration: 1 bar
|
|
87
|
+
- Implementation: drum fill on the last bar, then all instruments drop for 1-2 beats, new section enters on beat 3 or 4
|
|
88
|
+
- Best for: rock, pop, funk section transitions
|
|
89
|
+
- Tools: `add_notes` for the fill, `set_track_mute` or volume automation for the gap
|
|
90
|
+
|
|
91
|
+
## Choosing the Right Archetype
|
|
92
|
+
|
|
93
|
+
| From -> To | Recommended | Alternative |
|
|
94
|
+
|------------|-------------|-------------|
|
|
95
|
+
| Intro -> Verse | stacking | drum_build |
|
|
96
|
+
| Verse -> Chorus | riser_sweep, drum_build | harmonic_tension |
|
|
97
|
+
| Chorus -> Verse | strip_down | filter_close |
|
|
98
|
+
| Verse -> Bridge | harmonic_tension | strip_down |
|
|
99
|
+
| Bridge -> Final Chorus | riser_sweep + drum_build | harmonic_tension |
|
|
100
|
+
| Chorus -> Breakdown | strip_down, hard_cut | filter_close |
|
|
101
|
+
| Breakdown -> Drop | riser_sweep | drum_build + stacking |
|
|
102
|
+
| Any -> Outro | strip_down, reverb_wash | filter_close |
|