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.
Files changed (62) hide show
  1. package/.claude-plugin/marketplace.json +1 -1
  2. package/AGENTS.md +1 -1
  3. package/CHANGELOG.md +69 -0
  4. package/README.md +1 -1
  5. package/livepilot/.Codex-plugin/plugin.json +1 -1
  6. package/livepilot/.claude-plugin/plugin.json +1 -1
  7. package/livepilot/agents/livepilot-producer/AGENT.md +15 -1
  8. package/livepilot/commands/arrange.md +19 -0
  9. package/livepilot/commands/evaluate.md +39 -0
  10. package/livepilot/commands/mix.md +9 -4
  11. package/livepilot/commands/perform.md +30 -0
  12. package/livepilot/commands/sounddesign.md +9 -4
  13. package/livepilot/skills/livepilot-arrangement/SKILL.md +137 -0
  14. package/livepilot/skills/livepilot-composition-engine/SKILL.md +107 -0
  15. package/livepilot/skills/livepilot-composition-engine/references/form-patterns.md +97 -0
  16. package/livepilot/skills/livepilot-composition-engine/references/transition-archetypes.md +102 -0
  17. package/livepilot/skills/livepilot-core/SKILL.md +67 -443
  18. package/livepilot/skills/livepilot-core/references/overview.md +1 -1
  19. package/livepilot/skills/livepilot-devices/SKILL.md +134 -0
  20. package/livepilot/skills/livepilot-evaluation/SKILL.md +152 -0
  21. package/livepilot/skills/livepilot-evaluation/references/capability-modes.md +118 -0
  22. package/livepilot/skills/livepilot-evaluation/references/evaluation-contracts.md +121 -0
  23. package/livepilot/skills/livepilot-evaluation/references/memory-promotion.md +110 -0
  24. package/livepilot/skills/livepilot-mix-engine/SKILL.md +123 -0
  25. package/livepilot/skills/livepilot-mix-engine/references/mix-critics.md +143 -0
  26. package/livepilot/skills/livepilot-mix-engine/references/mix-moves.md +105 -0
  27. package/livepilot/skills/livepilot-mixing/SKILL.md +156 -0
  28. package/livepilot/skills/livepilot-notes/SKILL.md +129 -0
  29. package/livepilot/skills/livepilot-performance-engine/SKILL.md +122 -0
  30. package/livepilot/skills/livepilot-performance-engine/references/performance-safety.md +98 -0
  31. package/livepilot/skills/livepilot-sound-design-engine/SKILL.md +123 -0
  32. package/livepilot/skills/livepilot-sound-design-engine/references/patch-model.md +119 -0
  33. package/livepilot/skills/livepilot-sound-design-engine/references/sound-design-critics.md +118 -0
  34. package/m4l_device/livepilot_bridge.js +27 -13
  35. package/mcp_server/__init__.py +1 -1
  36. package/mcp_server/connection.py +24 -2
  37. package/mcp_server/curves.py +3 -3
  38. package/mcp_server/evaluation/fabric.py +1 -1
  39. package/mcp_server/m4l_bridge.py +9 -1
  40. package/mcp_server/memory/technique_store.py +25 -17
  41. package/mcp_server/mix_engine/critics.py +1 -1
  42. package/mcp_server/mix_engine/tools.py +14 -8
  43. package/mcp_server/performance_engine/safety.py +6 -3
  44. package/mcp_server/project_brain/refresh.py +8 -2
  45. package/mcp_server/project_brain/tools.py +12 -12
  46. package/mcp_server/reference_engine/tools.py +16 -15
  47. package/mcp_server/runtime/action_ledger_models.py +10 -3
  48. package/mcp_server/runtime/capability_state.py +3 -2
  49. package/mcp_server/runtime/tools.py +6 -3
  50. package/mcp_server/tools/agent_os.py +47 -39
  51. package/mcp_server/tools/composition.py +114 -32
  52. package/mcp_server/tools/devices.py +15 -1
  53. package/mcp_server/tools/midi_io.py +3 -1
  54. package/mcp_server/tools/research.py +31 -31
  55. package/mcp_server/tools/tracks.py +3 -3
  56. package/mcp_server/translation_engine/tools.py +50 -16
  57. package/package.json +1 -1
  58. package/remote_script/LivePilot/__init__.py +1 -1
  59. package/remote_script/LivePilot/arrangement.py +9 -1
  60. package/remote_script/LivePilot/clips.py +22 -6
  61. package/remote_script/LivePilot/notes.py +9 -1
  62. 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 |