agentsclimarketplace

Jingle maker

Skill nanoodlecom/noodle-skills/skills/jingle-maker

Turn a one-paragraph brief into a finished jingle with vocals — an LLM writes catchy lyrics, a second LLM invents a fitting musical style, and a music model sings it. Use when the user wants a jingle, theme song, ad spot, or any short custom song from a text brief.From its SKILL.md

Install
npx -y skills add nanoodlecom/noodle-skills --skill jingle-maker

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

2.7 KB, 619 tokens by cl100k_base, as published. Nobody here has run it

Jingle maker

Runs the bundled nanoodle workflow workflows/jingle.noodle-graph.json against the NanoGPT API: a brief (Brief) feeds a lyric-writing LLM; the lyrics feed both a style-inventing LLM and a music model, which renders the sung track (Jingle, ~30 seconds by default). Requires Node.js >= 20 and the nanoodle npm package (npx nanoodle fetches it).

API key

The run needs a NanoGPT API key. Prefer NANOGPT_API_KEY already in the environment. Otherwise pass --env-file <path-to-.env> (this CLI: --env-file overrides ambient env).

Never print the key.

Run

From this skill's directory (or prefix paths if running from elsewhere). Replace the Brief value with the user's brief:

npx nanoodle run workflows/jingle.noodle-graph.json \
  --input "Brief=An upbeat 30-second jingle for a neighborhood coffee shop called Morning Ember. Warm, catchy, repeat the shop name in the hook." \
  --out ./jingle-out

Add --env-file .env only when the key is not already exported. Add --json for a structured result (paths, costUsd, remainingBalance). Music generation can take a minute or two — don't kill the run early.

Optional overrides:

--input "System prompt=<custom lyric-writer instructions>"     # the lyric LLM
--input "System prompt 2=<custom style-writer instructions>"   # the style LLM
--set "n4.duration=60"                                         # longer track (seconds)
--set "n4.instrumental=true"                                   # no vocals

Inspect the interface anytime with:

npx nanoodle inspect workflows/jingle.noodle-graph.json

Inputs

KeyRequiredWhat to pass
BriefyesWhat the jingle is for — product, mood, length, anything to repeat
System promptnoCustom instructions for the lyric-writing LLM
System prompt 2noCustom instructions for the style-inventing LLM

Outputs

  • Media is saved under --out as Jingle.<ext> — extension follows the audio MIME (often mp3). Use the path the CLI prints on the Jingle: line; do not hard-code the extension.
  • With --json, the path is in outputs.Jingle.

Cost

Each run costs about $0.05–0.10 in NanoGPT credit (the Minimax-Music-02 song step dominates; the two LLM steps are fractions of a cent). Runs spend real credit — tell the user before running repeatedly.

What ships with it: 1 file

1.8 KB alongside SKILL.md

workflows/

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.