AgentSkillsCN

mp3-metadata

检查 MP3 文件的元数据,包括 ID3 标签、音频质量信息以及自定义字段。当用户想要查看 MP3 文件的标签、检查音频质量,或查看注释/自定义字段时使用。

SKILL.md
--- frontmatter
name: mp3-metadata
description: Inspect MP3 file metadata including ID3 tags, audio quality info, and custom fields. Use when the user wants to examine an MP3 file's tags, check audio quality, or view comment/custom fields.
argument-hint: <path-to-mp3> [summary|easy|detailed|custom|tags]
allowed-tools: Bash, Read

Inspect MP3 metadata using the mutagen library with multiple viewing modes.

Modes

ModeDescription
summaryQuick overview: title, artist, album, genre, duration, bitrate (default)
easyAll common tags in human-readable format via EasyID3
detailedAll raw ID3 tags plus file info (bitrate, sample rate, channels, encoder)
customComment fields (COMM) and user-defined text fields (TXXX) only
tagsList all tag names supported by EasyID3 (no file needed)

Execution

Run the following command with the user-provided arguments:

code
python /workspaces/mako-sync/python/mp3_metadata_demo.py $ARGUMENTS

If no mode is specified, default to summary.

Instructions

  • Present results cleanly, grouping related information together
  • For detailed mode, highlight any unusual or non-standard tags
  • For custom mode, explain what each COMM and TXXX frame represents
  • If tags appear missing or malformed, note this and suggest further investigation
  • If comment field issues are detected, suggest using /mp3-diagnose for deeper analysis