agentsclimarketplace

Narrated poem

Skill nanoodlecom/noodle-skills/skills/narrated-poem

Ready-to-install agent skills, each wrapping a nanoodle visual AI workflow — poster, photo restyle, jingle, narrated poem, video teaser

Install
npx -y skills add nanoodlecom/noodle-skills --skill narrated-poem

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

2 things to look at

  • 25 days oldThe repository was created 25 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
  • 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.

What its author says it does

Copied from the file, not written here

Turn a picture into a spoken poem — a vision model describes the image, an LLM writes a short poem from the description, and a text-to-speech model narrates it. Use when the user wants a poem, narration, or spoken-word piece inspired by an image file.

SKILL.md

2.3 KB, as published. Nobody here has run it

Narrated poem

Runs the bundled nanoodle workflow workflows/narrated-poem.noodle-graph.json against the NanoGPT API: an image input (Picture) feeds a vision model that describes it, an LLM turns the description into a four-line poem, and a TTS model speaks it (Narration). 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). @path attaches a local file:

npx nanoodle run workflows/narrated-poem.noodle-graph.json \
  --input "Picture=@/path/to/picture.jpg" \
  --out ./poem-out

Add --env-file .env only when the key is not already exported. Add --json for a structured result (paths, costUsd, remainingBalance).

Optional overrides:

--input "System prompt=<custom poet instructions, e.g. write a limerick instead>"
--set "n4.voice=am_michael"        # pick a Kokoro voice (af_bella, am_adam, bf_emma, …)
--set "n2.q=<different question to ask about the image>"

Inspect the interface anytime with:

npx nanoodle inspect workflows/narrated-poem.noodle-graph.json

Inputs

KeyRequiredWhat to pass
Pictureyes@<path> to the user's image file (jpg/png/webp)
System promptnoCustom instructions for the poem-writing LLM

Outputs

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

Cost

Each run costs about $0.01 in NanoGPT credit (vision + LLM are fractions of a cent; Kokoro-82m speech is ~$0.002 per poem). Runs spend real credit — tell the user before running repeatedly.

Keep looking

Skills are one crate of 328,083. 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.