yangyue1974/dsh-plugin-audiolib1

dsh-plugin-audiolib

由智能体状态驱动的 DeepSeek Harness 背景音乐插件

AI 分析

根据 Agent 的会话状态(如开始工作、静音等)自动播放来自 AudioLib.ai 的背景音乐。适合希望在 AI 工作时伴随环境音效的用户,需准备 API 密钥。

包名
dsh-plugin-audiolib
版本
0.1.0
许可证
MIT
最近更新
2026年8月14日

安装

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:yangyue1974/dsh-plugin-audiolib

dsh-plugin-audiolib

English | 中文

npm license

An ambient soundtrack for DeepSeek Harness, driven by the agent's own state. Music comes from AudioLib.ai — 100,000+ fully-cleared tracks, one API call per track.

The agent already publishes everything needed as session events: a turn opens, work is happening; every turn closes, the room goes quiet. This plugin turns that stream into sound.

A track is never interrupted by a state change. Turns open and close far faster than a song lasts, so cutting mid-track reads as noise instead of feedback. The state you are in when a track ends decides what plays next. Only an explicit music_stop cuts playback, because silence requested is silence owed.

Install

dsh plugin --profile web add dsh-plugin-audiolib

After restarting, open Settings → Plugins → Plugin configuration and paste your key into the AudioLib soundtrack card. It goes to the DSH credential store (~/.dsh/.credentials.yaml, mode 600), never into a config file, and takes effect on the next track without a restart.

Get a key at audiolib.ai — the free tier is 300 requests/month.

The environment works too, if you prefer it:

export AUDIOLIB_API_KEY=alp_your_key

The card's library pickers are read-only for now: DSH serves only built-in plugins' settings sections to the browser (an allowlist in dsh-host-apiproxy, which its own comment marks as deferred work). Set the libraries in your profile's cordis.patch.yml until that lifts. The key control is unaffected — credentials are not namespace-gated.

Playback

Tracks stream: playback starts on the first buffered bytes, the way the AudioLib URL is meant to be consumed. That needs a player that reads a URL — mpv or ffplay, whichever is on PATH:

brew install mpv        # or: apt install mpv

Without one, the plugin falls back to macOS's built-in afplay, which only reads local files. It then downloads each track ahead of the moment it is needed — a working fallback, but it spends several megabytes per track and stalls when switching libraries mid-session. Install a streaming player.

Configure

Override the row in your profile's cordis.patch.yml:

- id: audiolib
  name: dsh-plugin-audiolib
  config:
    workingLibrary: audio.focus
    idleLibrary: audio.ambient
FieldDefaultMeaning
apiKeyRefAUDIOLIB_API_KEYName of the credential holding the key — a reference, never the key itself
baseUrlhttps://api.audiolib.ai/v1/audioAudio endpoint
ambienttrueLet session events drive the soundtrack
workingLibraryaudio.focusPlays while a turn is open; '' for silence
idleLibrary''Plays once every turn has closed; '' for silence
exposeToolstrueGive the model music_play / music_stop / music_status
playerCommand[]Player argv; empty auto-selects. {url} declares a streaming player, {file} a file-only one
requestTimeoutMs15000AudioLib request deadline

The catalog has 25 libraries — audio.focus, audio.ambient, audio.cinematic, audio.jazz, audio.classical, audio.sleep, audio.meditation, audio.workout, audio.electronic and more. Any id the API accepts works; the full list ships in src/libraries.ts and in music_play's description.

Tools

  • music_play(library) — the model scores its own work. Takes effect at the next seam; starts immediately when nothing is playing.
  • music_stop() — stops now and stays silent until music_play is called again.
  • music_status() — reports the playing track plus the AudioLib plan, remaining calls, and rate limit. Every audio response carries a quota snapshot, so this costs no API call.

Both are ordinary registrations on ctx.tools, so they are available in Code Mode as await tools.music_play({ library }) too.

How it works

PieceExtension point
Activity trackingctx.on('session/event')turn/start / turn/end, counted per session
Model controlctx.tools.register() with raw JSON-Schema definitions
Teardownctx.effect() — unloading the plugin kills the player and removes every temporary file

The placeholder in playerCommand decides the playback mode. {url} hands the AudioLib URL straight to the player, which buffers as it plays — nothing is written to disk and a track begins as soon as its API call returns. {file} means the player cannot stream, so the plugin downloads each track to a private temporary directory first and removes it afterwards.

Either way the plugin fetches one track ahead: at load, so the first turn opens on the downbeat, and again when a track starts, so the seam has no gap. AudioLib calls are cheap, so a prefetch discarded by a state change costs nothing worth optimizing.

Develop

npm install
npm run build

Load a source checkout into a running harness without installing it:

# audiolib.overlay.yml
- insert:
    - id: audiolib
      name: '/absolute/path/to/dsh-plugin-audiolib/lib/index.js'
      config:
        workingLibrary: audio.focus
dsh web --patch ./audiolib.overlay.yml

License

MIT