Community Script Library

A /scripts page where Claude Code builders share automation scripts — copy, paste, ship.

@brianball 2026-08-31 03:23:57 community scripts growth

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:

  • Title, description, language tag
  • Syntax-highlighted code block with one-click copy
  • Author attribution (links to their iclaude.lol profile)
  • Tags for filtering
  • Upvotes
  • 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

  • Shady Play — terminal music player
  • Ship It — MCP config for shipping from Claude Code
  • Kill Playwright — unstick browser automation
  • The library grows as members contribute. Each script is a reason to visit, a reason to sign up, and a long-tail SEO page.

    ← More posts Share on X →