Brad Zhang / public archive

Brad Zhang

AI product notes, agent workflow writing, and open-source dossiers for founders and early technical teams.

Back to X dispatches

Article / May 3, 2026

English indexed dispatch

Try this cli radio, you can listen to music, podcasts and news while vibe coding. Why d...

Try this cli radio, you can listen to music, podcasts and news while vibe coding. Why do you want to do this? The reason is very small, just want to make some sound when writing...

Try this cli radio, you can listen to music, podcasts and news while vibe coding.

Why do you want to do this?

The reason is very small, just want to make some sound when writing code.

I went through several common routes this time: ncm-cli can search for songs, but many songs cannot be played at all; Spotify CLI can use half of OAuth, but in the end it will die on callbacks or Premium; direct installation in one sentence: npx skills add yizhiyanhua-ai/fireworks-radio Project address: What does fireworks-radio do?

fireworks-radio is a terminal radio skill for CLI scenarios.

它现在能做什么?

1 yt-dlp + mpv plays network resources; 2 uses search terms to temporarily generate a short playlist; 3 supports both stream and cache modes; 4 supports built-in presets, such as pop mixes of three artists, focused ambient, and refreshing coding-pop; 5 not just songs, but also podcasts, interviews, technology sharing, and ambient sounds, so it is your private radio; 6 Remember user preferences and automatically select a preset that is more like what you want to hear next time; How to understand the two modes?

Stream: Directly parses the URL and then streams it.

Suitable for temporary listening, the network is stable, and you want to play immediately.

Cache: Pull the audio to the local cache directory first and then play it.

Suitable for the network is unstable, you want to listen to the same batch of content repeatedly, and you need to transcribe or organize it later.

There is a boundary that must be made clear: stream and cache are working modes, not copyright permissions.

What this project does is automate the playback link and does not grant any copyright or dissemination rights to third-party media content.

为什么我把它做得更保守?

If this type of project is directly licensed under a loose license and others use it for commercialization and capture third-party content, and eventually copyright issues arise, the project itself can easily get into trouble.

Therefore, fireworks-radio is not OSI open source in the traditional sense, but more accurately source-available: non-commercial use by default.

No third-party media copyrights are granted.

Users themselves are responsible for crawling, caching, and playing third-party content.

Who is this thing suitable for?

People who need BGM when writing code, but don’t want to search and open various players to select songs; People who have been frustrated by ncm-cli / Spotify CLI; People who not only listen to songs, but also want to listen to podcasts, interviews, and long video audio; People who don’t care about whether the playback link is pure or not, but only care about whether they can make sound stably now;

Open original on X