惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
G
Google Developers Blog
小众软件
小众软件
V
V2EX
月光博客
月光博客
腾讯CDC
aimingoo的专栏
aimingoo的专栏
J
Java Code Geeks
Y
Y Combinator Blog
人人都是产品经理
人人都是产品经理
B
Blog RSS Feed
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 【当耐特】
D
Docker
M
MIT News - Artificial intelligence
Google DeepMind News
Google DeepMind News
N
Netflix TechBlog - Medium
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
I
InfoQ
MongoDB | Blog
MongoDB | Blog
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - vipulawl/claude-tips: Customize Claude Code spin...
vipulag · 2026-05-21 · via Hacker News: Show HN

Customize the Claude Code spinner tips with live jokes, quotes, facts, or anything you want — no more "Tip: Connect Claude to your IDE".

Claude Code shows a rotating tip while it thinks. I got bored of seeing that since i spend a lot of time on Claude code everyday. This tool replaces those with fresh content fetched from the internet. Works with any Claude Code session automatically — run it once and it persists.

Screenshot 2026-05-21 at 12 53 11

Quick start

git clone https://github.com/vipulawl/claude-tips.git
cd claude-tips
python3 claude_tips.py --provider jokes

That's it. Open any Claude Code session and you'll see jokes instead of tips.


How it works

Claude Code reads ~/.claude/settings.json at startup. This tool writes a spinnerTipsOverride key there with your content. No monkey-patching, no process injection — just a native Claude Code setting.

{
  "spinnerTipsOverride": {
    "tips": ["Why did the API return 418? It's a teapot.", "..."],
    "excludeDefault": true
  }
}

Does it persist across sessions?

Yes. Run the script once and the tips stay until you reset them. The only reason to re-run is if you want a fresh batch of jokes/quotes.

To auto-refresh every time you open a terminal, add this to your ~/.zshrc:

(cd ~/claude-tips && python3 claude_tips.py --provider jokes --count 15 > /dev/null 2>&1 &)

Or set up a cron job to refresh hourly:

0 * * * * cd ~/claude-tips && python3 claude_tips.py --provider jokes --count 15

Built-in providers

Provider Source API key needed
jokes JokeAPI — clean, programmer-friendly No
quotes ZenQuotes No
facts UselessFacts No
custom Your own list via --tips No

All built-in providers are free with no API key required.


Usage

# jokes (default)
python3 claude_tips.py --provider jokes

# quotes
python3 claude_tips.py --provider quotes --count 15

# random facts
python3 claude_tips.py --provider facts --count 5

# your own list
python3 claude_tips.py --provider custom --tips "Tip one" "Tip two" "Tip three"

# mix with Claude's default tips instead of replacing them
python3 claude_tips.py --provider jokes --keep-default

# auto-refresh every hour (keeps tips fresh)
python3 claude_tips.py --provider jokes --watch --interval 3600

# disable all tips entirely
python3 claude_tips.py --disable

# restore Claude's original default tips
python3 claude_tips.py --reset

Adding your own provider

Create a Python file with a fetch function:

# my_provider.py
import urllib.request, json

def fetch(count: int) -> list[str]:
    # fetch from wherever you want — news API, RSS, a local file, anything
    data = json.loads(urllib.request.urlopen("https://your-api.com/endpoint").read())
    return [item["text"] for item in data[:count]]

Run it:

python3 claude_tips.py --provider-file my_provider.py

The only requirement is that fetch(count: int) -> list[str] is defined in the file.


All CLI flags

Flag Default Description
--provider jokes Content provider: jokes, quotes, facts, custom
--provider-file Path to a Python file defining fetch(count) -> list[str]
--count 10 Number of tips to fetch
--tips Tip strings for --provider custom
--keep-default false Mix with Claude's built-in tips instead of replacing
--watch false Keep running, refresh on --interval
--interval 3600 Seconds between refreshes in watch mode
--disable Turn off all spinner tips
--reset Restore Claude's original default tips

Requirements

  • Python 3.9+
  • Claude Code CLI
  • No third-party packages — uses stdlib only (urllib, json, pathlib)

License

MIT