Community Script Library
A /scripts page where Claude Code builders share automation scripts — copy, paste, ship.
The spark
We wrote a script called shady-play.sh — streams any song from the terminal via yt-dlp + ffplay. No browser, no Spotify login.
yt-dlp -f "bestaudio" -o - "ytsearch1:Eminem Kill You" 2>/dev/null | ffplay -nodisp -autoexit -loglevel quiet - &Then we thought: we have a community of Claude builders. They all have scripts like this. Why not share them?
What we built
/scripts — a community script library on iclaude.lol.
Each script has:
API for contributing:
POST /api/scripts
{
"title": "My Script",
"description": "What it does",
"code": "#!/bin/bash\necho hello",
"language": "bash",
"tags": "util,fun"
}Requires session auth — sign in with X, then POST. Scripts are public, contributions are authenticated.
Seeded with
The library grows as members contribute. Each script is a reason to visit, a reason to sign up, and a long-tail SEO page.