plugins/ruflo-music/README.md
AI music generation via Cognitum Music — compose lyrics/prompts, generate tracks, separate stems, extract MIDI, and master, all through the cogmusic MCP server against your own Cognitum account.
Wraps the cogmusic MCP bridge as a Ruflo plugin with 2 agents, 7 skills, and one dispatcher command. Unlike most sibling plugins, there's no locally-executed CLI runtime here — every real generation runs on a remote GPU inference service (MiniMax-Music3), reached over a hand-rolled MCP server your own account authenticates against with a personal access token you mint yourself.
cogmcp_... personal access token, minted at music.cognitum.one/mcp (sign in → "Generate connection token"). Shown exactly once — copy it immediately. This plugin cannot mint or rotate this token for you.[email protected] or later registered as an MCP server:
claude mcp add cogmusic --env COGMUSIC_TOKEN=cogmcp_... -- npx -y cogmusic@latest
0.1.0 has no fetch timeout override and fails any create_production call that runs past Node's ~5-minute default — real generations routinely take longer. See the music-connect skill for the full setup flow.claude --plugin-dir plugins/ruflo-music
cogmusic exposes 6 tools once registered:
claude mcp add cogmusic --env COGMUSIC_TOKEN=cogmcp_... -- npx -y cogmusic@latest
claude mcp get cogmusic # expect: ✔ Connected
| Tool | Purpose |
|---|---|
list_productions | List saved productions (metadata + audio_url each) |
get_production | Fetch one production's current metadata + audio_url |
create_production | Generate a new track from lyrics + a style prompt (blocks for minutes) |
separate_stems | 4-stem separation (vocals/drums/bass/other) |
extract_midi | Pitch-tracked MIDI/score extraction |
master | LUFS loudness normalization + peak limiting |
| Agent | Role |
|---|---|
music-composer | Writes structured lyrics + a genre/style prompt from a creative brief. Calls no MCP tools. |
music-producer | Pipeline entry point — delegates composition to music-composer, calls create_production, caches the result, optionally post-processes, reports the audio_url. |
| Skill | Purpose |
|---|---|
music-connect | One-time setup — register the cogmusic MCP server |
music-generate | Generate a track from a fully-specified brief |
music-list | List all productions in the account |
music-get | Fetch one production's metadata + audio_url |
music-stems | Run 4-stem separation on an existing production |
music-midi | Extract MIDI from an existing production |
music-master | Run a mastering (LUFS) pass on an existing production |
/music connect [--token cogmcp_...]
/music generate <brief>
/music list
/music get <production-id>
/music stems <production-id>
/music midi <production-id>
/music master <production-id>
audio_url, not the audio itself — always a separate authenticated GET with the same cogmcp_ token as Authorization: Bearer.audio_url yet. separate_stems/extract_midi confirm what was produced (has_stems/has_midi via get_production), but the derived audio/MIDI files are dashboard-only today — the PAT-authorized-URL pattern that already covers the primary track (see Architecture Decisions) hasn't been extended to these two endpoints upstream.@claude-flow/cli v3.6 major+minor.[email protected]+ npm package (stdio↔HTTP MCP bridge) registered via claude mcp add; no local compute — generation runs on a remote GPU service you don't control.bash plugins/ruflo-music/scripts/smoke.sh is the contract.This plugin owns two AgentDB namespaces (kebab-case, follows the convention from ruflo-agentdb ADR-0001 §"Namespace convention"):
| Namespace | Purpose |
|---|---|
music-productions | Cached production metadata — id, title, audio_url, prompt, lyrics, duration, processing-step flags — for recall without a round-trip to list_productions/get_production |
music-briefs | The creative brief that produced each production, keyed by production id, so a later "make another one like that" can retrieve the exact prompt/lyrics shape that worked |
All access via memory_* (namespace-routed). No agentdb_pattern-* or agentdb_hierarchical-* calls with a namespace argument anywhere in this plugin. Reserved namespaces (pattern, claude-memories, default) are never shadowed.
bash plugins/ruflo-music/scripts/smoke.sh
# Expected: "10 passed, 0 failed"
audio_url delivery pattern, namespace claims, disclosed reliability posture.MIT