一键导入
compose
Create and edit MIDI files. Add notes, change tempo and time signature, transpose, quantize, and save.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create and edit MIDI files. Add notes, change tempo and time signature, transpose, quantize, and save.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Design electronic schematics and PCB netlists from Pi using SKiDL. Use for circuit creation, KiCad library parts, nets/buses, ERC, BOMs, SVG schematics, KiCad schematic export, and standalone SKiDL Python.
CAD modeling with build123d from Pi. Use when creating, inspecting, rendering, or exporting parametric 3D models, STL files, STEP files, enclosures, brackets, and other mechanical parts.
Schedule one-time or recurring agent jobs from Pi. Use when the user asks for cron-like reminders, recurring checks, scheduled prompts, or inspecting/completing scheduled jobs.
Track and manage issues using the dude MCP server. List, create, update issues. Track bugs, tasks, blockers, and problems within projects. Search for issues. Use when tracking bugs, creating tasks, managing blockers, recording problems, or working with issue hierarchies.
Manage development projects using the dude MCP server. List projects, view records by project, search across projects. Projects are auto-detected from git — no manual creation needed. Use when exploring project organization, starting work on a codebase, or needing project-level context.
Interactive issue review and grooming session. Pulls all issues for the current project and walks through them with the user to triage, update, resolve, or archive. Use when grooming a backlog, reviewing open issues, or cleaning up stale tasks.
| name | compose |
| description | Create and edit MIDI files. Add notes, change tempo and time signature, transpose, quantize, and save. |
Use the Mozart Pi tools to create MIDI files from scratch or edit existing ones.
/compose new_song.mid
mozart_create_midi — set name, tempo, time signaturemozart_add_track — name them and assign instrumentsmozart_add_notes — specify measure, beat, pitch, duration, velocitymozart_save_midi — write to diskmozart_load_midimozart_get_measures to understand the structuremozart_add_notes, mozart_delete_notes, mozart_transpose, mozart_quantizemozart_set_tempo, mozart_set_time_signaturemozart_save_midimozart_create_midi alias="demo" name="Demo Song" bpm=120 file_path="demo.mid"
mozart_add_track alias="demo" name="Piano" instrument=0
mozart_add_notes alias="demo" track=0 notes=[
{"measure": 1, "beat": 1, "note_name": "C4", "duration_beats": 1, "velocity": 80},
{"measure": 1, "beat": 2, "note_name": "E4", "duration_beats": 1, "velocity": 80},
{"measure": 1, "beat": 3, "note_name": "G4", "duration_beats": 1, "velocity": 80},
{"measure": 1, "beat": 4, "note_name": "C5", "duration_beats": 1, "velocity": 90}
]
mozart_save_midi alias="demo"
mozart_transpose alias="song" track=0 semitones=7
mozart_quantize alias="song" track=1 grid_beats=0.5
mozart_delete_notes alias="song" track=0 measure_start=5 measure_end=8
mozart_add_notes alias="song" track=0 notes=[...]
mozart_save_midi alias="song"
mozart_set_tempo alias="song" bpm=140 at_tick=1920
| Tool | Purpose |
|---|---|
mozart_create_midi | Create a new empty MIDI file |
mozart_add_track | Add a track with name and instrument |
mozart_set_instrument | Change a track's instrument |
mozart_add_notes | Insert notes at measure/beat positions |
mozart_delete_notes | Remove notes from a measure range |
mozart_transpose | Shift notes up or down by semitones |
mozart_quantize | Snap notes to a rhythmic grid |
mozart_set_tempo | Set/change tempo at a tick position |
mozart_set_time_signature | Set/change time signature |
mozart_save_midi | Write MIDI file to disk |
| # | Instrument | # | Instrument |
|---|---|---|---|
| 0 | Acoustic Grand Piano | 24 | Nylon Guitar |
| 4 | Electric Piano 1 | 25 | Steel Guitar |
| 6 | Harpsichord | 30 | Distortion Guitar |
| 11 | Vibraphone | 32 | Acoustic Bass |
| 13 | Xylophone | 33 | Electric Bass (finger) |
| 16 | Drawbar Organ | 40 | Violin |
| 19 | Church Organ | 42 | Cello |
| 21 | Accordion | 46 | Orchestral Harp |
| 56 | Trumpet | 73 | Flute |
| 60 | French Horn | 71 | Clarinet |
| 65 | Alto Sax | 68 | Oboe |
mozart_save_midi after editing — changes are in-memory until savedmozart_get_measures to verify your edits look correct before saving