Chris Padilla/Blog / Clippings

AI Agent Elevator Music

Woman With A Guitar, Raimundo de Madrazo y Garreta (Spanish, 1841 - 1920)
Woman With A Guitar, Raimundo de Madrazo y Garreta (Spanish, 1841 - 1920)

Matt Webb shares via Interconnected Mike Davidson's Claude Muzak:

I suggested last week that Claude Code needs elevator music…

Like, in the 3 minutes while you’re waiting for your coding agent to write your code, and meanwhile you’re gazing out the window and contemplating the mysteries of life, or your gas bill, maybe some gentle muzak could pass the time?

Delightful.

A few tracks are already provided, you'll have to bring your own audio files for more varied listening. Music For Local Forecast. Or perhaps anything Vaporwave! And all sorts of library music comes to mind.

For more whimsy, 1950's era incidental music would also be a terrific fit. Eons ago in internet years, there was a great collection of public domain light music tracks that were used for Ren & Stimpy, but download links are no longer handy.

A few finds from the internet archive that should fit the bill:


As a technical aside, this is a very slick use of Claude Code hooks. Common productive examples could be cleanup scripts, including a rules.md with your prompt, applying code formatting, etc. Nice to see such a fun use!

// .claude/settings.json

{
  "UserPromptSubmit": [
    {
      "hooks": [
        {
          "type": "command",
          "command": "python3.11 /Claude-Muzak/claude_muzak.py hook start"
        }
      ]
    }
  ],
  "Stop": [
    {
      "hooks": [
        {
          "type": "command",
          "command": "python3.11 /Claude-Muzak/claude_muzak.py hook stop"
        }
      ]
    }
  ]
}