agentsclimarketplace

Midi agent skill

Skill tubone24/midi-agent-skill

Generate MIDI files with GM instruments and music theory. Use when creating music, composing melodies, or generating MIDI files.From its SKILL.md

Install
npx -y skills add tubone24/midi-agent-skill

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

What its file declares

Copied from the file, not written here

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

4.7 KB, ~1.3k tokens by cl100k_base, as published. Nobody here has run it

MIDI Generation Skill

Generate MIDI files with proper music theory. Use the provided Python scripts in skills/. Do NOT write custom code.

Important Rules

  1. Use provided scripts in skills/ directory (Python)
  2. Never write custom Python/JS for MIDI generation
  3. Install dependencies first: pip install midiutil
  4. Consult music theory resources when needed (see below)

Quick Dissonance Rules

Always follow these to avoid harsh sounds:

  1. Never play notes 1 semitone apart (C+C#, E+F, B+C)
  2. Bass plays root or fifth of the chord
  3. Spread voices across octaves (don't cluster)
  4. Each track uses different MIDI channel (automatic)

Music Theory Resources (Read When Needed)

Only read the resource that matches your current task:

When you need...Read this file
Scales, chords, intervals, cadencesresources/music-theory.md
Chord progressions by genreresources/chord-progressions.md
Avoiding dissonance, voice spacingresources/voice-leading.md
Classical/Baroque counterpointresources/counterpoint.md
Modes (Dorian, Phrygian, etc.)resources/modes-scales.md
Rhythm, time signatures, syncopationresources/rhythm-patterns.md
Instrument ranges, combinationsresources/orchestration.md

When to Read Each Resource

  • Pop/Rock song → chord-progressions.md + voice-leading.md
  • Classical piece → counterpoint.md + orchestration.md
  • Jazz composition → modes-scales.md + chord-progressions.md
  • Film score → orchestration.md + modes-scales.md
  • Any composition → Always check voice-leading.md for dissonance

Workflow

  1. Install dependencies: pip install midiutil
  2. Identify genre/style → Select appropriate resources
  3. Read relevant theory → Only the files you need
  4. Choose instruments → See midi_types/gm_instruments.py
  5. Create composition JSON
  6. Use scripts to generate MIDI

Python Scripts

ScriptPurpose
skills/generate_midi.pyGenerate MIDI (auto-assigns channels per track)
skills/normalize_composition.pyValidate and normalize input
skills/refine_composition.pyAdjust length, extend tracks
skills/convert_to_wav.pyMIDI → WAV (requires FluidSynth)

Usage Example

import sys
sys.path.insert(0, '/path/to/midi-skill')

from skills.generate_midi import generate_midi_from_dict

composition = {
    "title": "My Song",
    "bpm": 120,
    "tracks": [
        {
            "instrument": "acoustic-grand-piano",
            "notes": [
                {"pitch": "C4", "duration": "4"},
                {"pitch": "E4", "duration": "4"},
                {"pitch": "G4", "duration": "4"},
                {"pitch": "C5", "duration": "2"}
            ]
        },
        {
            "instrument": "acoustic-bass",
            "notes": [
                {"pitch": "C2", "duration": "2"},
                {"pitch": "G2", "duration": "2"}
            ]
        }
    ]
}

midi_path = generate_midi_from_dict(composition)
print(f"Generated: {midi_path}")

Composition Format

{
  "title": "My Song",
  "bpm": 120,
  "tracks": [
    {
      "instrument": "acoustic-grand-piano",
      "notes": [
        { "pitch": "C4", "duration": "4" },
        { "pitch": "E4", "duration": "4" }
      ]
    },
    {
      "instrument": "acoustic-bass",
      "notes": [
        { "pitch": "C2", "duration": "2" }
      ]
    }
  ]
}

Duration Notation

ValueNote
1Whole note (4 beats)
2Half note (2 beats)
d2Dotted half (3 beats)
4Quarter note (1 beat)
d4Dotted quarter (1.5 beats)
8Eighth note (0.5 beats)
16Sixteenth note (0.25 beats)

Instrument Aliases

AliasGM Instrument
pianoacoustic-grand-piano
guitaracoustic-guitar-nylon
bassacoustic-bass
stringsstring-ensemble-1
brassbrass-section
saxalto-sax

Full list: midi_types/gm_instruments.py

Notes

  • Max 15 melodic tracks (MIDI channels 0-8, 10-15; ch.9 = drums)
  • Output: output/ directory
  • WAV requires: FluidSynth + A320U.sf2 in soundfonts/

What ships with it: 21 files

69.2 KB alongside SKILL.md, 8 of them executable

midi_types/

output/

soundfonts/

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.