music-list

Lists saved music productions with metadata and audio URLs from a Cognitum Music account.

70.1k|8.4k|Updated Jun 2, 2025
One-click install
npx skills add https://github.com/ruvnet/claude-flow --skill music-list
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: music-list
Source: https://github.com/ruvnet/claude-flow/tree/main/plugins/ruflo-music/skills/music-list
Command: npx skills add https://github.com/ruvnet/claude-flow --skill music-list

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

When working with AI-generated music, you often lose track of which tracks exist in your account or need a production ID before you can download stems, MIDI, or mastered versions. This Skill surfaces every saved production so you can find tracks by title without memorizing IDs.

Core Features & Use Cases

  • Full Production Listing: Calls the Cognitum Music API to return every production sorted by creation date, including title, duration, ID, and audio_url.
  • Processing Status Visibility: Shows which post-processing steps have run for each track (stems, MIDI, mastering) via has_stems, has_midi, and has_mastered flags.
  • Title-Based Lookup: Matches tracks by case-insensitive title substring so you never need to know the production ID in advance.
  • Use Case: You want to extract stems from a song you generated last week but forgot its ID. Run this Skill, find the track by title, confirm has_stems is true, and pass the ID to the music-stems Skill.

Quick Start

List all my saved music productions and show me which ones have stems and MIDI available.

Frequently Asked Questions about music-list

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I list my saved AI-generated music tracks?

Invoke the music-list Skill, which calls the Cognitum Music list_productions API with no arguments. It returns every production sorted by creation date with title, duration, ID, and audio_url.

How do I find a music production ID by track title?

Run music-list and match tracks using a case-insensitive substring search on the title field. You never need to know the production ID in advance; the listing provides it for follow-up operations.

Does the music list API return the actual audio files?

No, it returns only metadata plus an audio_url for each production. You must perform a separate authenticated GET request on the audio_url to download the audio bytes.

How can I tell if stems or MIDI were generated for a track?

Each production in the list includes has_stems, has_midi, and has_mastered boolean flags. Check these fields before calling music-stems, music-midi, or music-master with the production ID.

Why is a track I made on the web dashboard missing from my session cache?

Productions created outside the current session are not in the local memory cache. Re-run music-list to refresh the music-productions memory cache with any entries not already stored.