Voice Note To Midi
Analysis
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.
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
pip install basic-pitch librosa soundfile mido ... echo " wget https://raw.githubusercontent.com/basic-pitch/basic-pitch/main/hum2midi -O $INSTALL_DIR/hum2midi"
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.
echo "Add $INSTALL_DIR to your PATH? [y/N]" ... echo "export PATH=\"$INSTALL_DIR:\$PATH\"" >> "$SHELL_RC"
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.
