# Ableton Reharmonize

> This skill should be used when the user asks to "reharmonize", "jazz up these chords", "add 7ths/9ths", "make this progression richer", "reharmonize this MIDI clip", "give me lusher chords", or wants an existing chord progression in Ableton re-voiced with extensions, modal interchange, or substitutions. Reads an existing MIDI clip and writes a reharmonized chord track.

- **Type:** Skill
- **Install:** `agentstack add skill-korben00-ableton-producer-skills-ableton-reharmonize`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [Korben00](https://agentstack.voostack.com/s/korben00)
- **Installs:** 0
- **Category:** [Agent Skills](https://agentstack.voostack.com/c/agent-skills)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [Korben00](https://github.com/Korben00)
- **Source:** https://github.com/Korben00/ableton-producer-skills/tree/master/skills/ableton-reharmonize

## Install

```sh
agentstack add skill-korben00-ableton-producer-skills-ableton-reharmonize
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# Ableton Reharmonize

Take an existing chord progression (or a set of roots) and re-voice it with richer harmony —
extensions (7ths/9ths/11ths/13ths), modal interchange, and common substitutions — written as a new
chord track in the Live Set. This is what turns grunge power chords into a dreamy lofi bed
(F5→Fm9, etc.).

## When to use

Triggers: "reharmonize", "add 9ths", "jazz these chords", "make it lusher". To build a cover from a
melody, use `ableton-genre-cover`; to write a brand-new progression, use `ableton-describe-to-midi`.

## Process

1. **Use `ableton-live-runner`** for build/run/kill + scaffold.
2. **Read the source harmony.** If the user points at a clip, read `clip.notes` and group
   simultaneous notes into chords; infer each chord's root and quality. If they give roots/a
   progression in text, use that. Read `song.rootNote` / `song.scaleIntervals` to stay diatonic.
3. **Choose a reharmonization strategy** (state which one is applied):
   - **Add extensions** — keep function, add 7/9/(11/13). Minor→m9, major→maj9, dominant→9/13.
   - **Rootless voicings** — drop the root (the bass covers it), voice 3-5-7-9 in the mid register
     (~MIDI 56–74) for a smooth keys/Rhodes bed.
   - **Modal interchange** — borrow ♭III/♭VI/♭VII maj chords, iv minor, etc., for colour.
   - **Substitutions** — relative/parallel swaps, tritone sub on dominants, passing diminished.
4. **Voice for smooth voice-leading** — keep common tones, move the rest by the smallest interval;
   stagger note starts a few ms (`startTime + i*0.015`) for a natural rolled keys feel.
5. **Write a new track** with `makeTrack` (instrument `["Electric","Operator","Drift"]` for Rhodes,
   FX `[["Chorus-Ensemble"],["Auto Filter"],["Reverb"]]`). Keep the original clip intact.

## Voicing helper

```ts
// Rootless extended voicings, mid register; bass supplies the root.
const VOICE = {
  m9:    (r) => [r+3, r+7, r+10, r+14],  // ♭3 5 ♭7 9
  maj9:  (r) => [r+4, r+7, r+11, r+14],  // 3 5 7 9
  dom13: (r) => [r+4, r+10, r+14, r+21], // 3 ♭7 9 13
};
function chordAt(rootPc, quality, octave = 4) {  // octave 4 → C4 = 60 (mid keys register)
  const r = rootPc + (octave + 2) * 12;
  return VOICE[quality](r);                      // raw voicing; smooth it with voiceLead() below
}
// Voice-leading: invert each note of `cur` toward `prev` by octaves to minimize total motion.
function voiceLead(prev, cur) {
  if (!prev) return cur;
  return cur.map((p) => {
    while (p - prev[0] > 6) p -= 12;
    while (prev[0] - p > 6) p += 12;
    return p;
  });
}
```

## Limits

- The bass should carry the actual root (these voicings are rootless) — pair with `ableton-bassline`.
- No automation; if the progression needs movement, vary the comping rhythm, not filter sweeps.

See `ableton-bassline`, `ableton-tone-recipes`, `ableton-theory-coach`.

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [Korben00](https://github.com/Korben00)
- **Source:** [Korben00/ableton-producer-skills](https://github.com/Korben00/ableton-producer-skills)
- **License:** MIT

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-korben00-ableton-producer-skills-ableton-reharmonize
- Seller: https://agentstack.voostack.com/s/korben00
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
