livepilot 1.10.0 → 1.10.2
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 +3 -3
- package/AGENTS.md +3 -3
- package/CHANGELOG.md +214 -0
- package/CONTRIBUTING.md +2 -2
- package/LICENSE +62 -21
- package/README.md +264 -286
- package/livepilot/.Codex-plugin/plugin.json +2 -2
- package/livepilot/.claude-plugin/plugin.json +2 -2
- package/livepilot/skills/livepilot-arrangement/SKILL.md +18 -1
- package/livepilot/skills/livepilot-core/SKILL.md +5 -5
- package/livepilot/skills/livepilot-core/references/overview.md +3 -3
- package/livepilot/skills/livepilot-devices/SKILL.md +23 -2
- package/livepilot/skills/livepilot-evaluation/references/capability-modes.md +1 -1
- package/livepilot/skills/livepilot-release/SKILL.md +21 -17
- package/livepilot/skills/livepilot-sample-engine/SKILL.md +2 -1
- package/livepilot/skills/livepilot-wonder/SKILL.md +8 -6
- package/livepilot.mcpb +0 -0
- package/m4l_device/LivePilot_Analyzer.adv +0 -0
- package/m4l_device/LivePilot_Analyzer.amxd +0 -0
- package/m4l_device/livepilot_bridge.js +1 -1
- package/manifest.json +4 -4
- package/mcp_server/__init__.py +1 -1
- package/mcp_server/composer/engine.py +249 -169
- package/mcp_server/composer/sample_resolver.py +153 -0
- package/mcp_server/composer/tools.py +97 -87
- package/mcp_server/memory/taste_accessors.py +47 -0
- package/mcp_server/preview_studio/engine.py +9 -2
- package/mcp_server/preview_studio/tools.py +78 -35
- package/mcp_server/project_brain/tools.py +34 -0
- package/mcp_server/runtime/execution_router.py +180 -38
- package/mcp_server/runtime/mcp_dispatch.py +46 -0
- package/mcp_server/runtime/remote_commands.py +4 -1
- package/mcp_server/runtime/tools.py +55 -32
- package/mcp_server/sample_engine/moves.py +12 -12
- package/mcp_server/sample_engine/slice_workflow.py +190 -0
- package/mcp_server/sample_engine/tools.py +104 -1
- package/mcp_server/semantic_moves/device_creation_moves.py +7 -7
- package/mcp_server/semantic_moves/mix_moves.py +8 -8
- package/mcp_server/semantic_moves/models.py +7 -7
- package/mcp_server/semantic_moves/performance_moves.py +4 -4
- package/mcp_server/semantic_moves/sample_compilers.py +14 -9
- package/mcp_server/semantic_moves/sound_design_moves.py +4 -4
- package/mcp_server/semantic_moves/tools.py +63 -10
- package/mcp_server/semantic_moves/transition_moves.py +4 -4
- package/mcp_server/server.py +20 -1
- package/mcp_server/session_continuity/tracker.py +4 -1
- package/mcp_server/tools/_conductor.py +16 -0
- package/mcp_server/tools/_planner_engine.py +24 -0
- package/mcp_server/tools/analyzer.py +2 -0
- package/mcp_server/tools/planner.py +3 -0
- package/mcp_server/wonder_mode/engine.py +59 -13
- package/mcp_server/wonder_mode/tools.py +33 -1
- package/package.json +8 -8
- package/remote_script/LivePilot/__init__.py +1 -1
- package/remote_script/LivePilot/devices.py +10 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "livepilot",
|
|
3
|
-
"version": "1.10.
|
|
4
|
-
"description": "Agentic production system for Ableton Live 12 —
|
|
3
|
+
"version": "1.10.2",
|
|
4
|
+
"description": "Agentic production system for Ableton Live 12 — 317 tools, 43 domains, device atlas, sample intelligence, auto-composition, spectral perception, technique memory, neo-Riemannian harmony, Euclidean rhythm, species counterpoint, MIDI I/O",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Pilot Studio"
|
|
7
7
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "livepilot",
|
|
3
|
-
"version": "1.10.
|
|
4
|
-
"description": "Agentic production system for Ableton Live 12 —
|
|
3
|
+
"version": "1.10.2",
|
|
4
|
+
"description": "Agentic production system for Ableton Live 12 — 317 tools, 43 domains, device atlas, sample intelligence, auto-composition, spectral perception, technique memory, neo-Riemannian harmony, Euclidean rhythm, species counterpoint, MIDI I/O",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Pilot Studio"
|
|
7
7
|
}
|
|
@@ -47,8 +47,10 @@ Build linear song structures on the timeline.
|
|
|
47
47
|
|
|
48
48
|
### Creating Arrangement Clips
|
|
49
49
|
|
|
50
|
-
- `create_arrangement_clip(track_index, start_time, length)` —
|
|
50
|
+
- `create_arrangement_clip(track_index, clip_slot_index, start_time, length)` — duplicate a session clip into Arrangement View at a specific beat position
|
|
51
|
+
- `create_native_arrangement_clip(track_index, start_time, length)` — create arrangement clip with full automation envelope (12.1.10+)
|
|
51
52
|
- `set_arrangement_clip_name(track_index, clip_index, name)` — name arrangement clips for clarity
|
|
53
|
+
- `force_arrangement()` — force all tracks to play from arrangement (not session clips)
|
|
52
54
|
|
|
53
55
|
### Arrangement Notes
|
|
54
56
|
|
|
@@ -122,6 +124,21 @@ When building arrangements, use these as starting templates:
|
|
|
122
124
|
|
|
123
125
|
Adapt these to the user's needs. Use `plan_arrangement` from the planner domain for algorithmic structure suggestions, and `transform_section` to create variations of existing sections.
|
|
124
126
|
|
|
127
|
+
## Section-Aware Sample Roles
|
|
128
|
+
|
|
129
|
+
`plan_arrangement` returns `sample_hints` per section — suggested roles for sample-based elements:
|
|
130
|
+
|
|
131
|
+
| Section | Default Hints |
|
|
132
|
+
|---------|--------------|
|
|
133
|
+
| Intro | `texture_bed`, `fill_one_shot` |
|
|
134
|
+
| Verse | `texture_bed`, `fill_one_shot` |
|
|
135
|
+
| Build | `transition_fx`, `texture_bed` |
|
|
136
|
+
| Chorus/Drop | `hook_sample`, `break_layer`, `fill_one_shot` |
|
|
137
|
+
| Bridge/Breakdown | `texture_bed`, `transition_fx` |
|
|
138
|
+
| Outro | `texture_bed`, `fill_one_shot` |
|
|
139
|
+
|
|
140
|
+
Use `plan_sample_workflow(section_type=..., desired_role=...)` to generate concrete sample plans for each role. Use `plan_slice_workflow(intent=..., target_section=...)` for slice-based patterns.
|
|
141
|
+
|
|
125
142
|
## Composition Engine
|
|
126
143
|
|
|
127
144
|
For deeper compositional analysis beyond basic arrangement:
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: livepilot-core
|
|
3
|
-
description: Core discipline for LivePilot — agentic production system for Ableton Live 12.
|
|
3
|
+
description: Core discipline for LivePilot — agentic production system for Ableton Live 12. 317 tools across 43 domains. This skill should be used whenever working with Ableton Live through MCP tools. Provides golden rules, tool speed tiers, error handling protocol, and pointers to domain and engine skills.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# LivePilot Core — Ableton Live 12
|
|
7
7
|
|
|
8
|
-
Agentic production system for Ableton Live 12.
|
|
8
|
+
Agentic production system for Ableton Live 12. 317 tools across 43 domains, three layers:
|
|
9
9
|
|
|
10
|
-
- **Device Atlas** —
|
|
10
|
+
- **Device Atlas** — 1305 devices indexed (81 enriched with sonic intelligence, 683 drum kits). Consult `atlas_search` or `atlas_suggest` before loading any device. Never guess a device name.
|
|
11
11
|
- **M4L Analyzer** — Real-time audio analysis on the master bus (8-band spectrum, RMS/peak, key detection). Optional — all core tools work without it.
|
|
12
12
|
- **Technique Memory** — Persistent storage for production decisions. Consult `memory_recall` before creative tasks to understand user taste.
|
|
13
13
|
|
|
@@ -39,7 +39,7 @@ Agentic production system for Ableton Live 12. 316 tools across 43 domains, thre
|
|
|
39
39
|
## Tool Speed Tiers
|
|
40
40
|
|
|
41
41
|
### Instant (<1s) — Use freely
|
|
42
|
-
All
|
|
42
|
+
All 317 tools plus M4L perception tools.
|
|
43
43
|
|
|
44
44
|
### Fast (1-5s) — Use freely
|
|
45
45
|
`analyze_loudness` · `analyze_mix` · `analyze_sound_design`
|
|
@@ -128,7 +128,7 @@ Deep production knowledge in `references/`:
|
|
|
128
128
|
|
|
129
129
|
| File | Content |
|
|
130
130
|
|------|---------|
|
|
131
|
-
| `references/overview.md` | All
|
|
131
|
+
| `references/overview.md` | All 317 tools with params and ranges |
|
|
132
132
|
| `references/device-atlas/` | 280+ device corpus with URIs and presets |
|
|
133
133
|
| `references/midi-recipes.md` | Drum patterns, chord voicings, humanization |
|
|
134
134
|
| `references/sound-design.md` | Synth recipes, device chain patterns |
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# LivePilot v1.10.
|
|
1
|
+
# LivePilot v1.10.2 — Architecture & Tool Reference
|
|
2
2
|
|
|
3
|
-
Agentic production system for Ableton Live 12.
|
|
3
|
+
Agentic production system for Ableton Live 12. 317 tools across 43 domains. Device atlas (1305 devices, 81 enriched), spectral perception (M4L analyzer), technique memory, automation intelligence (16 curve types, 15 recipes), music theory (Krumhansl-Schmuckler, species counterpoint), generative algorithms (Euclidean rhythm, tintinnabuli, phase shift, additive process), neo-Riemannian harmony (PRL transforms, Tonnetz), MIDI file I/O.
|
|
4
4
|
|
|
5
5
|
## Architecture
|
|
6
6
|
|
|
@@ -32,7 +32,7 @@ A flat tool list lets the AI press buttons. LivePilot's three layers give it con
|
|
|
32
32
|
|
|
33
33
|
This turns "set EQ band 3 to -4 dB" into "cut 400 Hz by 4 dB, then read the spectrum to confirm the mud is actually reduced."
|
|
34
34
|
|
|
35
|
-
## The
|
|
35
|
+
## The 317 Tools — What Each One Does
|
|
36
36
|
|
|
37
37
|
### Transport (12) — Playback, tempo, global state, diagnostics
|
|
38
38
|
|
|
@@ -120,9 +120,30 @@ For Simpler devices that already have samples loaded:
|
|
|
120
120
|
- `crop_simpler(track_index, device_index)` — trim sample to current start/end points
|
|
121
121
|
- `reverse_simpler(track_index, device_index)` — reverse the loaded sample
|
|
122
122
|
- `get_simpler_slices(track_index, device_index)` — retrieve auto-detected slice points (Slice mode)
|
|
123
|
-
- `set_simpler_playback_mode(track_index, device_index,
|
|
123
|
+
- `set_simpler_playback_mode(track_index, device_index, playback_mode)` — switch modes: 0=Classic, 1=One-Shot, 2=Slice. Optional: `slice_by` (0=Transient, 1=Beat, 2=Region, 3=Manual), `sensitivity` (0.0-1.0, Transient only)
|
|
124
|
+
- `warp_simpler(track_index, device_index, beats)` — warp sample to fit N beats
|
|
124
125
|
|
|
125
|
-
|
|
126
|
+
### Slice Workflow
|
|
127
|
+
|
|
128
|
+
For slice-based production, use `plan_slice_workflow`:
|
|
129
|
+
1. `plan_slice_workflow(file_path=..., intent="rhythm")` — generates a complete workflow with Simpler setup, slice mapping, and MIDI notes
|
|
130
|
+
2. Intents: `rhythm`, `hook`, `texture`, `percussion`, `melodic`
|
|
131
|
+
3. The tool returns a step-by-step plan — execute each tool call in sequence
|
|
132
|
+
|
|
133
|
+
Manual slice workflow: load sample → `set_simpler_playback_mode(playback_mode=2)` → `get_simpler_slices` → program MIDI notes targeting slice indices (C3 = slice 0, C#3 = slice 1, etc.)
|
|
134
|
+
|
|
135
|
+
### New Device Operations (12.3+)
|
|
136
|
+
|
|
137
|
+
- `insert_device(track_index, device_name)` — insert native device by name (10x faster than browser, 12.3+)
|
|
138
|
+
- `insert_rack_chain(track_index, device_index)` — add chain to Instrument/Audio/Drum Rack
|
|
139
|
+
- `set_drum_chain_note(track_index, device_index, chain_index, note)` — assign MIDI note to Drum Rack chain
|
|
140
|
+
- `move_device(track_index, device_index, new_index)` — reorder devices on a track
|
|
141
|
+
|
|
142
|
+
### Plugin Deep Control
|
|
143
|
+
|
|
144
|
+
- `get_plugin_parameters(track_index, device_index)` — all AU/VST plugin parameters
|
|
145
|
+
- `map_plugin_parameter(track_index, device_index, parameter_index)` — map for automation
|
|
146
|
+
- `get_plugin_presets(track_index, device_index)` — list plugin presets
|
|
126
147
|
|
|
127
148
|
## Effect Chain Best Practices
|
|
128
149
|
|
|
@@ -104,7 +104,7 @@ Call `get_capability_state` at the start of any evaluation session. The response
|
|
|
104
104
|
{
|
|
105
105
|
"mode": "normal",
|
|
106
106
|
"analyzer_connected": true,
|
|
107
|
-
"bridge_version": "1.10.
|
|
107
|
+
"bridge_version": "1.10.2",
|
|
108
108
|
"spectral_cache_age_ms": 1200,
|
|
109
109
|
"flucoma_available": false,
|
|
110
110
|
"session_connected": true
|
|
@@ -28,35 +28,39 @@ Run this checklist EVERY time the user says "update everything", "push", "releas
|
|
|
28
28
|
|
|
29
29
|
## 2. Tool Count (must ALL match)
|
|
30
30
|
|
|
31
|
-
Current: **
|
|
32
|
-
Core (no M4L): **
|
|
31
|
+
Current: **317 tools across 43 domains**.
|
|
32
|
+
Core (no M4L): **286**. Bridge (M4L): **30** (backed by 28 bridge commands).
|
|
33
33
|
|
|
34
34
|
Verify: `grep -rc "@mcp.tool" mcp_server/tools/ | grep -v ":0" | awk -F: '{sum+=$2} END{print sum}'`
|
|
35
35
|
|
|
36
36
|
Files that reference tool count:
|
|
37
|
-
- [ ] `README.md` — header
|
|
38
|
-
- [ ] `package.json` → `"description"`
|
|
37
|
+
- [ ] `README.md` — header ("317 tools. 43 domains"), bridge section ("281 core...36 bridge")
|
|
38
|
+
- [ ] `package.json` → `"description"`
|
|
39
39
|
- [ ] `server.json` → `"description"`
|
|
40
|
+
- [ ] `manifest.json` → `"description"`
|
|
40
41
|
- [ ] `livepilot/.Codex-plugin/plugin.json` → `"description"` (primary Codex manifest)
|
|
41
42
|
- [ ] `livepilot/.claude-plugin/plugin.json` → `"description"` (must match Codex plugin)
|
|
42
43
|
- [ ] `.claude-plugin/marketplace.json` → `"description"`
|
|
43
|
-
- [ ] `CLAUDE.md` → "
|
|
44
|
-
- [ ] `
|
|
45
|
-
- [ ] `livepilot/skills/livepilot-core/
|
|
46
|
-
- [ ] `
|
|
47
|
-
- [ ] `docs/manual/
|
|
44
|
+
- [ ] `CLAUDE.md` → "317 tools across 43 domains"
|
|
45
|
+
- [ ] `CONTRIBUTING.md` → tool count in intro
|
|
46
|
+
- [ ] `livepilot/skills/livepilot-core/SKILL.md` — tool/domain count
|
|
47
|
+
- [ ] `livepilot/skills/livepilot-core/references/overview.md` — tool/domain count
|
|
48
|
+
- [ ] `docs/manual/index.md` — domain table with correct per-domain counts
|
|
49
|
+
- [ ] `docs/manual/getting-started.md` — "281 core tools...36 bridge"
|
|
48
50
|
- [ ] `docs/manual/tool-reference.md` — all domains present with correct counts
|
|
49
|
-
- [ ] `docs/
|
|
50
|
-
- [ ] `docs/
|
|
51
|
+
- [ ] `docs/manual/tool-catalog.md` — all tools present (CI-tested)
|
|
52
|
+
- [ ] `docs/manual/tool-catalog-generated.md` — regenerated from source
|
|
53
|
+
- [ ] `docs/TOOL_REFERENCE.md` — all domains present with correct counts
|
|
54
|
+
- [ ] `docs/M4L_BRIDGE.md` — "281 core tools...36 bridge"
|
|
51
55
|
- [ ] `docs/social-banner.html`
|
|
52
|
-
- [ ] `mcp_server/tools/analyzer.py` → module docstring
|
|
53
56
|
- [ ] `tests/test_tools_contract.py` → expected total count
|
|
57
|
+
- [ ] `tests/test_skill_contracts.py` → catalog sync test passes
|
|
54
58
|
|
|
55
59
|
**How to check:** `grep -rn "168\|139\|135\|127\|115\|107" --include="*.md" --include="*.json" --include="*.py" --include="*.html" . | grep -v node_modules | grep -v .git | grep -v __pycache__ | grep -v CHANGELOG`
|
|
56
60
|
|
|
57
61
|
## 3. Domain Count
|
|
58
62
|
|
|
59
|
-
Current: **43 domains**: transport, tracks, clips, notes, devices, scenes, mixing, browser, arrangement, memory, analyzer, automation, theory, generative, harmony, midi_io, perception, agent_os, composition, motif, research, planner, project_brain, runtime, evaluation, mix_engine, sound_design, transition_engine, reference_engine, translation_engine, performance_engine, song_brain, preview_studio, hook_hunter, stuckness_detector, wonder_mode, session_continuity, creative_constraints, device_forge, sample_engine, atlas, composer.
|
|
63
|
+
Current: **43 domains**: transport, tracks, clips, notes, devices, scenes, mixing, browser, arrangement, memory, analyzer, automation, theory, generative, harmony, midi_io, perception, agent_os, composition, motif, research, planner, project_brain, runtime, evaluation, mix_engine, sound_design, transition_engine, reference_engine, translation_engine, performance_engine, song_brain, preview_studio, hook_hunter, stuckness_detector, wonder_mode, session_continuity, creative_constraints, device_forge, sample_engine, atlas, composer, experiment, musical_intelligence.
|
|
60
64
|
|
|
61
65
|
- [ ] All files that mention domain count say "43 domains"
|
|
62
66
|
- [ ] Domain lists include ALL 43 (especially newer domains — they're the most often omitted)
|
|
@@ -89,9 +93,9 @@ Current: **43 domains**: transport, tracks, clips, notes, devices, scenes, mixin
|
|
|
89
93
|
|
|
90
94
|
- [ ] `README.md` — features match current capabilities, "Coming" section is accurate
|
|
91
95
|
- [ ] `docs/manual/getting-started.md` — install instructions current
|
|
92
|
-
- [ ] `docs/manual/tool-reference.md` — all
|
|
93
|
-
- [ ] `docs/TOOL_REFERENCE.md` — all
|
|
94
|
-
- [ ] `docs/M4L_BRIDGE.md` — architecture accurate, core
|
|
96
|
+
- [ ] `docs/manual/tool-reference.md` — all 43 domains listed, all 317 tools present
|
|
97
|
+
- [ ] `docs/TOOL_REFERENCE.md` — all 43 domains present with correct counts
|
|
98
|
+
- [ ] `docs/M4L_BRIDGE.md` — architecture accurate, core/bridge counts correct
|
|
95
99
|
|
|
96
100
|
## 9. Derived Artifacts
|
|
97
101
|
|
|
@@ -122,5 +126,5 @@ Current: **43 domains**: transport, tracks, clips, notes, devices, scenes, mixin
|
|
|
122
126
|
## Quick Verify Command
|
|
123
127
|
|
|
124
128
|
```bash
|
|
125
|
-
echo "=== Versions ===" && grep -h '"version"' package.json server.json livepilot/.Codex-plugin/plugin.json livepilot/.claude-plugin/plugin.json .claude-plugin/marketplace.json | head -
|
|
129
|
+
echo "=== Versions ===" && grep -h '"version"' package.json server.json manifest.json livepilot/.Codex-plugin/plugin.json livepilot/.claude-plugin/plugin.json .claude-plugin/marketplace.json | head -8 && grep __version__ mcp_server/__init__.py remote_script/LivePilot/__init__.py && echo "=== Tool count ===" && grep -rc "@mcp.tool" mcp_server/ | grep -v ":0" | awk -F: '{sum+=$2} END{print "Total:", sum}' && echo "=== Tests ===" && python3 -m pytest tests/ -q 2>&1 | tail -1
|
|
126
130
|
```
|
|
@@ -58,8 +58,9 @@ User wants to find and use a sample:
|
|
|
58
58
|
### Wonder Mode Integration
|
|
59
59
|
When stuck, Wonder Mode can suggest sample-based variants:
|
|
60
60
|
- 6 sample-domain semantic moves in the registry
|
|
61
|
-
-
|
|
61
|
+
- Compiled plans require agent to supply `file_path` from prior `search_samples` results
|
|
62
62
|
- Diagnosis detects: no_organic_texture, stale_drums, dense_but_static
|
|
63
|
+
- Note: Wonder does not yet auto-call `search_samples` — the agent must chain the calls
|
|
63
64
|
|
|
64
65
|
## Golden Rules
|
|
65
66
|
|
|
@@ -69,9 +69,11 @@ Wonder Mode should produce musically interesting results, not just technically c
|
|
|
69
69
|
2. Read `references/device-knowledge/creative-thinking.md` for emotional-to-technical mapping
|
|
70
70
|
3. Read `references/device-knowledge/chains-genre.md` if the session has a genre identity
|
|
71
71
|
|
|
72
|
-
|
|
73
|
-
-
|
|
74
|
-
-
|
|
75
|
-
- **Micro-modulation** —
|
|
76
|
-
- **
|
|
77
|
-
|
|
72
|
+
When reviewing Wonder variants, aim for musical depth:
|
|
73
|
+
- **Filter arcs** — evolving filter across sections adds movement
|
|
74
|
+
- **Space arcs** — reverb/delay sends breathing with density
|
|
75
|
+
- **Micro-modulation** — subtle LFOs on sustained sounds
|
|
76
|
+
- **Macro gestures** — coordinated multi-parameter moves at transitions
|
|
77
|
+
|
|
78
|
+
Note: these are agent-level guidelines, not enforced by the Wonder engine.
|
|
79
|
+
The engine generates variants from semantic moves; the agent adds musical polish.
|
package/livepilot.mcpb
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/manifest.json
CHANGED
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
"manifest_version": "0.3",
|
|
3
3
|
"name": "livepilot",
|
|
4
4
|
"display_name": "LivePilot — AI for Ableton Live",
|
|
5
|
-
"version": "1.10.
|
|
6
|
-
"description": "Agentic production system for Ableton Live 12. Make beats, mix tracks, design sounds, and arrange songs with
|
|
7
|
-
"long_description": "LivePilot is an
|
|
5
|
+
"version": "1.10.2",
|
|
6
|
+
"description": "Agentic production system for Ableton Live 12. Make beats, mix tracks, design sounds, and arrange songs with 317 AI-powered tools.",
|
|
7
|
+
"long_description": "LivePilot is an agentic production system for Ableton Live 12. 317 tools across 43 domains — device atlas (1305 devices), sample intelligence (Splice + browser + filesystem), auto-composition, spectral perception, technique memory, and 12 creative engines.\n\n**What it does:**\n- Creates MIDI clips with notes, chords, and rhythms\n- Loads instruments and effects via Device Atlas (1305 devices indexed)\n- Searches samples across Splice, Ableton browser, and filesystem\n- Plans compositions from text prompts with genre-aware layering\n- Slices samples with intent-based MIDI generation\n- Mixes with volume, panning, sends, and automation\n- Analyzes your mix with real-time spectral data (M4L bridge)\n- Diagnoses stuck sessions and generates creative rescue variants\n- Remembers your production style across sessions\n\n**How it works:**\nLivePilot installs a Remote Script in Ableton that communicates with the AI over a local TCP connection. Everything runs on your machine — no audio leaves your computer.",
|
|
8
8
|
"author": {
|
|
9
9
|
"name": "Pilot Studio",
|
|
10
10
|
"url": "https://github.com/dreamrec/LivePilot"
|
|
11
11
|
},
|
|
12
|
-
"license": "
|
|
12
|
+
"license": "BSL-1.1",
|
|
13
13
|
"repository": {
|
|
14
14
|
"type": "git",
|
|
15
15
|
"url": "https://github.com/dreamrec/LivePilot"
|
package/mcp_server/__init__.py
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
"""LivePilot MCP Server — bridges MCP protocol to Ableton Live."""
|
|
2
|
-
__version__ = "1.10.
|
|
2
|
+
__version__ = "1.10.2"
|