AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Ableton Drum Groove

skill-korben00-ableton-producer-skills-ableton-drum-groove · by Korben00

This skill should be used when the user asks to "make a drum beat", "write a drum pattern", "give me a boom-bap/one-drop/house/trap/breakbeat groove", "add drums", or wants a style-specific drum MIDI pattern generated in Ableton Live. Writes a drum MIDI clip onto a Drum Rack track using the General-MIDI map.

No reviews yet
0 installs
3 views
0.0% view→install

Install

$ agentstack add skill-korben00-ableton-producer-skills-ableton-drum-groove

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-korben00-ableton-producer-skills-ableton-drum-groove)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Ableton Drum Groove? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Ableton Drum Groove

Generate a style-specific drum pattern as a MIDI clip, mapped to the General-MIDI drum layout so it plays any standard kit. Groove lives in the feel — swing, velocity dynamics, and tasteful ghost notes — not just hit placement.

When to use

Triggers: "make a beat", "[style] drum pattern/groove", "add drums". For a whole arrangement use ableton-genre-cover; to humanize an existing drum clip use ableton-humanize.

Process

  1. Use ableton-live-runner for build/run/kill + scaffold.
  2. Create a Drum Rack track with makeTrack(..., ["Drum Rack"], [...], notes, len). The rack

loads empty → tell the user to drag a kit (a style-appropriate one). The MIDI is kit-agnostic.

  1. Write the pattern for the chosen style (table below), looping per bar.
  2. Add feel:
  • Swing — push off-beat (and/or 16th) hats late by ~0.05–0.08 beats.
  • Dynamics — accent backbeats, soften ghost notes; vary velocities with vary.
  • Laid-back vs on-top — drag the snare a hair late (+0.02–0.03) for lofi/hip-hop, keep tight

for house/techno.

  • Fills — every 4th/8th bar add a small snare/tom fill or a dropped beat.

GM drum map & style templates

KICK 36 · RIM 37 · SNARE 38 · CLAP 39 · CLOSED-HAT 42 · OPEN-HAT 46 · RIDE 51 · TOM 45/47/50

| Style | Kick | Snare | Hats | |---|---|---|---| | Boom-bap (lofi) | 1, &-of-2/3 (syncopated) | 2 & 4 (dragged) | swung 8ths, soft | | One-drop reggae | beat 3 (with snare) | beat 3 | open-hat on off-beats | | Ska/rocksteady | 1 & 3 | 2 & 4 | closed on beats, open on "&" | | House | four-on-the-floor | 2 & 4 (clap) | off-beat open-hat | | Trap | syncopated, sparse | 3 (or 2 & 4) | rolling 16ths/triplets, rolls | | Breakbeat | 1 & off-beats | 2 & 4 + ghosts | busy 16ths |

Code pattern (boom-bap with swing)

function writeBoomBap(notes, bars) {
  for (let bar = 0; bar < bars; bar++) {
    const b = bar * 4;
    notes.push({ pitch: 36, startTime: b + 0,   duration: 0.3, velocity: vary(110) });
    notes.push({ pitch: 36, startTime: b + 2.5, duration: 0.3, velocity: vary(88) });   // syncopated kick
    notes.push({ pitch: 38, startTime: b + 1 + 0.03, duration: 0.3, velocity: vary(96) }); // dragged snare
    notes.push({ pitch: 38, startTime: b + 3 + 0.03, duration: 0.3, velocity: vary(96) });
    for (let j = 0; j < 8; j++)
      notes.push({ pitch: 42, startTime: b + j*0.5 + (j%2 ? 0.06 : 0), duration: 0.15, velocity: vary(j%2 ? 46 : 60) });
  }
}

Limits

  • Drum Rack is empty until a kit is dropped — say so every time.
  • For sample-based drums (chop a break into a rack), see ableton-sample-chopper.

See ableton-humanize, ableton-sample-chopper, ableton-genre-cover.

Source & license

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

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

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.