Voice Note To Midi
PassAudited by ClawScan on May 1, 2026.
Overview
The skill appears aligned with converting audio to MIDI, but its setup depends on external packages and a helper script that users should review before installing.
This looks like a benign, purpose-aligned audio-to-MIDI tool. Before installing, review the external hum2midi helper script and Python dependencies, and only opt into the PATH modification if you are comfortable letting that install directory affect future terminal commands.
Findings (2)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Installing may run code from third-party packages or a separately downloaded helper script that was not fully represented in the provided artifact set.
The installer uses unpinned external Python dependencies and, if the main hum2midi script is absent, instructs the user to manually download a remote script. This is expected for an ML audio tool, but it is a provenance and review point.
pip install basic-pitch librosa soundfile mido ... echo " wget https://raw.githubusercontent.com/basic-pitch/basic-pitch/main/hum2midi -O $INSTALL_DIR/hum2midi"
Review the helper script source and consider pinning dependency versions before installation, especially if using this on sensitive audio or a production workstation.
If accepted, future terminal sessions will prefer commands from the installed melody-pipeline directory when names overlap.
The setup script can persistently modify the user's shell startup file to add the install directory to PATH. It is prompted and default-off, so this appears user-controlled rather than hidden.
echo "Add $INSTALL_DIR to your PATH? [y/N]" ... echo "export PATH=\"$INSTALL_DIR:\$PATH\"" >> "$SHELL_RC"
Only accept the PATH change if you trust the installed files, and remove the added line from .bashrc or .zshrc if you no longer use the tool.
