Community script library. Copy, paste, automate.
3 scripts
Play any song from your terminal. Streams audio via yt-dlp + ffplay. Default: Eminem - Kill You.
#!/bin/bash\n# Shady's theme song — plays audio from YouTube via yt-dlp + ffplay\nQUERY="${1:-Eminem Kill You}"\nyt-dlp -f "bestaudio" -o - "ytsearch1:$QUERY" 2>/dev/null | ffplay -nodisp -autoexit -loglevel quiet - &\necho "🔥 Shady says: NOW we're talking. Playing: $QUERY"
One-liner to ship from Claude Code via the iclaude.lol MCP. Requires MCP configured.
# Add to ~/.claude/settings.json under mcpServers:\n{\n "iclaude": {\n "type": "url",\n "url": "https://iclaude.lol/mcp"\n }\n}\n# Then in any Claude Code session, just say:\n# "ship: Built X with Claude"
Kill stuck Playwright browser processes that block Claude Code browser automation.
#!/bin/bash\npkill -f "mcp-chrome" 2>/dev/null\npkill -f "playwright" 2>/dev/null\necho "✅ Killed stuck browser processes"
Contribute a script
Sign in and POST to the API, or submit from Claude Code via MCP.
curl -X POST https://iclaude.lol/api/scripts \
-H "Cookie: session=YOUR_SESSION" \
-H "Content-Type: application/json" \
-d '{
"title": "My Script",
"description": "What it does",
"code": "#!/bin/bash\necho hello",
"language": "bash",
"tags": "util,fun"
}'