Custom GIF Spinner for Claude Code via COLR Font Conversion

A developer has published a method to replace Claude Code's default spinner animation with any custom animated GIF. The technique involves converting the GIF into an OpenType COLR color font where each frame of the animation becomes a glyph, then patching Claude Code's spinner to cycle through these glyphs. The terminal renders the result as pixel art.
Key Details
The project supports any GIF file as input, with the "party parrot" GIF included by default. The current release is Windows-ready, with macOS and Linux versions described as "coming soon." The repository is available at https://github.com/Arystos/claude-parrot.
The developer spent "a couple of days" figuring out the implementation. The default Claude Code spinner uses the characters "· ✢ * ✶" in a cycling animation.
This type of customization is useful for developers who want to personalize their coding environment or add visual flair to terminal-based tools.
📖 Read the full source: r/ClaudeAI
👀 See Also

Unsloth and NVIDIA Collaborate to Speed Up LLM Training by ~25%
Unsloth and NVIDIA release optimizations for LLM training: caching packed-sequence metadata (~14.3% speedup) and double-buffered async gradient checkpointing (~8% speedup), with no accuracy loss. Auto-enabled on RTX laptops, data center GPUs, and DGX Spark.

Audacity MCP Server Gives Claude AI Full Audio Editing Control
A developer built an MCP server that connects Claude AI to Audacity via mod-script-pipe, providing 99 tools for natural language audio editing commands. The open-source tool works with Claude Desktop, Claude Code, or Cursor.

MCP Gateway for Secure Remote Access to Internal Tools
An open-source MCP gateway aggregates multiple MCP tool servers into a single connection, enabling secure access via Claude Desktop without exposing public endpoints. It uses OpenZiti/zrok for zero-trust networking and requires only one configuration entry with a share token.

OpenClaw Implements Agent History Compression to Reduce Context Usage
OpenClaw now compresses agent history by replacing completed subtask logs with structured summaries, reducing ~1M tokens to ~30K. The system uses a 4-pass scanner to identify task lifecycles and generates masked summaries that maintain agent compatibility.