diff --git a/AbletonMCP_AI/docs/skill_produccion_session_view.md b/AbletonMCP_AI/docs/skill_produccion_session_view.md index acc21ed..51e4242 100644 --- a/AbletonMCP_AI/docs/skill_produccion_session_view.md +++ b/AbletonMCP_AI/docs/skill_produccion_session_view.md @@ -905,7 +905,117 @@ validate_project - Progresiones de acordes por escena - Patrones de bass y dembow por escena - Agentes: 6 de selección + 3 de diseño musical + 1 de producción -- **Autor:** AbletonMCP_AI Senior Architecture Team +- **v3.0** (2026-04-14): **Workflow Final Validado** + - Limpieza de tracks duplicados + - Generación de MIDI clips por escena (dembow, bass, chords, lead) + - Mezcla coherente: Drum Loop 0.70, MIDI 0.55-0.70 + - Instrumentos en MIDI tracks: Drum Rack, Operator, Wavetable + - Master chain: EQ + Glue Compressor + Limiter + - 8 escenas con gaps naturales y variación de energía + +--- + +## 🎯 Workflow Final Paso a Paso (Validado) + +### 1. Limpieza Inicial +```bash +ableton-live-mcp_clear_project +``` + +### 2. Generar Producción Session View +```bash +ableton-live-mcp_build_session_production \ + --genre "reggaeton" \ + --tempo 95 \ + --key "Am" \ + --style "standard" \ + --num_scenes 8 +``` + +### 3. Cargar Instrumentos en MIDI Tracks +```bash +ableton-live-mcp_insert_device --track_index 8 --device_name "Drum Rack" +ableton-live-mcp_insert_device --track_index 9 --device_name "Wavetable" +ableton-live-mcp_insert_device --track_index 10 --device_name "Operator" +ableton-live-mcp_insert_device --track_index 11 --device_name "Wavetable" +``` + +### 4. Generar MIDI Clips por Escena + +**Dembow (Track 8):** +```bash +ableton-live-mcp_generate_dembow_clip --track_index 8 --clip_index 0 --bars 4 --variation "minimal" +ableton-live-mcp_generate_dembow_clip --track_index 8 --clip_index 2 --bars 8 --variation "standard" +ableton-live-mcp_generate_dembow_clip --track_index 8 --clip_index 4 --bars 8 --variation "intense" +ableton-live-mcp_generate_dembow_clip --track_index 8 --clip_index 6 --bars 8 --variation "fill" +``` + +**Sub Bass (Track 10):** +```bash +ableton-live-mcp_generate_bass_clip --track_index 10 --clip_index 0 --bars 4 --style "standard" +ableton-live-mcp_generate_bass_clip --track_index 10 --clip_index 2 --bars 8 --style "standard" +ableton-live-mcp_generate_bass_clip --track_index 10 --clip_index 4 --bars 8 --style "melodic" +ableton-live-mcp_generate_bass_clip --track_index 10 --clip_index 6 --bars 8 --style "slides" +``` + +**Chords (Track 9):** +```bash +ableton-live-mcp_generate_chords_clip --track_index 9 --clip_index 0 --bars 4 --key "Am" --progression "i-VII" +ableton-live-mcp_generate_chords_clip --track_index 9 --clip_index 2 --bars 8 --key "Am" --progression "i-V-vi-IV" +ableton-live-mcp_generate_chords_clip --track_index 9 --clip_index 4 --bars 8 --key "Am" --progression "i-iv-VII-VI" +ableton-live-mcp_generate_chords_clip --track_index 9 --clip_index 6 --bars 8 --key "Am" --progression "i-V-vi-IV" +``` + +**Lead (Track 11):** +```bash +ableton-live-mcp_generate_melody_clip --track_index 11 --clip_index 0 --bars 4 --scale "minor" --density "sparse" +ableton-live-mcp_generate_melody_clip --track_index 11 --clip_index 2 --bars 8 --scale "minor" --density "medium" +ableton-live-mcp_generate_melody_clip --track_index 11 --clip_index 4 --bars 8 --scale "minor" --density "dense" +ableton-live-mcp_generate_melody_clip --track_index 11 --clip_index 6 --bars 8 --scale "pentatonic" --density "dense" +``` + +### 5. Mezcla de Volumes +```bash +# Audio tracks +ableton-live-mcp_set_track_volume --track_index 1 --volume 0.70 # Drum Loop +ableton-live-mcp_set_track_volume --track_index 2 --volume 0.75 # Kick +ableton-live-mcp_set_track_volume --track_index 3 --volume 0.73 # Snare +ableton-live-mcp_set_track_volume --track_index 4 --volume 0.60 # HiHat +ableton-live-mcp_set_track_volume --track_index 5 --volume 0.55 # Perc +ableton-live-mcp_set_track_volume --track_index 6 --volume 0.70 # Bass Audio +ableton-live-mcp_set_track_volume --track_index 7 --volume 0.50 # FX + +# MIDI tracks +ableton-live-mcp_set_track_volume --track_index 8 --volume 0.65 # Dembow +ableton-live-mcp_set_track_volume --track_index 9 --volume 0.55 # Chords +ableton-live-mcp_set_track_volume --track_index 10 --volume 0.70 # Sub Bass +ableton-live-mcp_set_track_volume --track_index 11 --volume 0.60 # Lead + +# Master +ableton-live-mcp_set_master_volume --volume 0.85 +``` + +### 6. Master Chain +```bash +ableton-live-mcp_apply_master_chain --preset "standard" +``` + +### 7. Reproducir +```bash +ableton-live-mcp_fire_all_clips --scene_index 0 --start_playback true +``` + +--- + +## ✅ Checklist de Verificación + +- [ ] 11 tracks activos (7 audio + 4 MIDI) +- [ ] 8 escenas con nombres: Intro, Build, Verse, Pre-Chorus, Chorus, Bridge, Drop, Outro +- [ ] Instrumentos cargados en MIDI tracks +- [ ] MIDI clips generados en todas las escenas +- [ ] Volumes balanceados (Drum Loop ≤ 0.70, MIDI 0.55-0.70) +- [ ] Master chain aplicada +- [ ] Gaps naturales (tracks sin clips en algunas escenas) ## Historial - **v1.0** (2026-04-13): Skill de producción Session View 100% (MPC-style)