ワンクリックで
archive-media
Copy processed MP3s and WAVs to NAS storage. Use after Apple Music import or when re-archiving corrected files.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Copy processed MP3s and WAVs to NAS storage. Use after Apple Music import or when re-archiving corrected files.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Move processed ZIPs to archive and clean up extraction folders. Use after album processing is complete.
Copy finished MP3s into Apple Music via the auto-import folder and verify the album lands correctly. Use once metadata is finalized and the user wants tracks added to their library — e.g. "add this to Apple Music" or "import these tracks" — even if they don't say "auto-import" explicitly. Also use to diagnose a bad import, e.g. "it showed up as separate tracks instead of one album."
Inspect and update MP3 tags: genre, artist, album, track count, compilation flag. Use when checking or fixing music file metadata — including diagnostic questions like "why do these show up as separate tracks" or "is this folder's metadata consistent," not just explicit tag-editing requests.
End-to-end processing of downloaded music purchases: extract ZIPs, verify metadata, import to Apple Music, archive to NAS, clean up. Use when processing new music downloads.
Reclaim local disk by offloading cloud-backed Apple Music downloads. Audit iCloud status, build an offload playlist that protects your DJ crates and lossless files, then Remove Download. Use when the Mac is low on disk.
Find music release ZIPs in Downloads and classify each as MP3 or WAV by inspecting archive contents (never filenames), matching pairs by release name. Use to see what's available to process — e.g. "what did I just buy" or "what's in my downloads" — even if the user doesn't mention ZIPs or file formats directly.
| name | archive-media |
| description | Copy processed MP3s and WAVs to NAS storage. Use after Apple Music import or when re-archiving corrected files. |
| allowed-tools | Bash Read |
| metadata | {"author":"eyelock","version":"0.3.0"} |
Scripts are in scripts/ relative to this skill directory.
archive-files.sh <mode> <source_dir> <dest_dir> — Copy audio files to destination, verify counts. For WAV mode, calls rename-wav-files.sh internally. Run --help for details.rename-wav-files.sh <folder> — Rename WAV files from vendor format to clean format. Called internally by archive-files.sh.mp3 <artist> <album>
wav <artist> <album> <source_folder>
$LIBRARY_STORAGE/Artist/Album/)Determine mode from the first argument: mp3 or wav.
Source is the Apple Music library (captures any edits made in Apple Music).
Run the archive script:
bash scripts/archive-files.sh mp3 "$LIBRARY_STORAGE/$ARTIST/$ALBUM" "$ARCHIVE_WORKDIR/to_nas/mp3/$ARTIST/$ALBUM"
The script creates the destination, copies all MP3 files, verifies the count matches, and outputs JSON with results.
Check the JSON output: if verified is false, warn the user about the count mismatch.
Source is the extraction folder. WAVs NEVER go through Apple Music.
Run the archive script:
bash scripts/archive-files.sh wav "$SOURCE_FOLDER" "$ARCHIVE_WORKDIR/to_nas/wav/$ARTIST/$ALBUM"
The script creates the destination, copies all WAV files, runs rename-wav-files.sh to clean up vendor filenames, verifies the count, and outputs JSON with results.
Check the JSON output: if renamed is false, warn the user that renaming may have failed.