PlayDead: natural-language Grateful Dead jukebox (Claude Code skill) - #1
Open
lzpup wants to merge 2 commits into
Open
PlayDead: natural-language Grateful Dead jukebox (Claude Code skill)#1lzpup wants to merge 2 commits into
lzpup wants to merge 2 commits into
Conversation
added 2 commits
June 7, 2026 21:05
A Claude Code skill that streams Grateful Dead tapes from archive.org with
natural-language control and local playback.
- SKILL.md maps natural language ('play the Cornell show', 'next song') to
CLI commands; Claude does the language understanding.
- archive.py: archive.org search + best-tape ranking (soundboards/matrices
over audience, then ratings and popularity) + playlist building, stdlib-only.
- player.py: local playback via mpv (JSON IPC: play/pause/next/prev/status)
with a sequential ffplay/vlc fallback (play/next/prev/stop).
- state.py: background-playback state under ~/.playdead so transport commands
in separate invocations share one session.
- famous_shows.py: nickname -> date/venue lookups (Cornell, Veneta, etc.).
- 24 offline tests for the non-network logic.
…d skill The default branch held a separate, agent-driven implementation with unrelated history. This merge (strategy=ours) keeps the skill-based tree as the result while establishing a common ancestor so the change can be reviewed as a PR.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Replaces the agent-based implementation with a Claude Code skill that streams Grateful Dead tapes from archive.org with natural-language control and local playback.
Approach
Responsibilities are split cleanly:
.claude/skills/playdead/SKILL.md.playdead.pydoes the deterministic work: search archive.org → rank → stream locally.What's included
Highlights
5/8/77), archive.org identifier, nickname (cornell), or free text ("Veneta 1972 soundboard").playthen laternext/status/stopshare one session (state in~/.playdead).mpv(recommended; pause/next/prev/status via JSON IPC) with anffplay/cvlcfallback.Testing
Note on history
This branch had unrelated history to the base (a separate agent-driven implementation). A
merge -s oursof the base establishes a common ancestor so this can be reviewed as a PR; the resulting diff removes the previous package and adds the skill in its place.https://claude.ai/code/session_01EMqnkJfNYW2Pxkn6cCuLaK
Generated by Claude Code