feat: reddit -> spotify/bandcamp artist linker MVP (extension + resolver service)

Firefox MV2 content script that detects artist/band names in reddit comment
threads and rewrites them inline into Spotify + Bandcamp links, backed by a tiny
zero-dependency Node resolver that confirms each candidate against the Spotify Web
API (direct links) or MusicBrainz (zero-setup, search links). Includes build +
install instructions in the README.

Source: project/reddit-spotify-linker (user 2026-06-12) + user message 2026-06-14
"Full vibe code, small service, minimal code."

Closes task/resolver-service, closes task/firefox-extension, closes task/docs-and-publish
(plan/mvp-build, objective/ship-mvp-linker).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
paul
2026-06-14 21:33:33 +00:00
co-authored by Claude Opus 4.8
commit 779eba6cb1
8 changed files with 556 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
{
"name": "reddit-spotify-linker-resolver",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Tiny resolver service: candidate names -> confirmed-artist links (Spotify/Bandcamp).",
"engines": { "node": ">=18" },
"scripts": {
"start": "node resolver.js"
}
}