BuddyBoard: A Competitive Leaderboard for Claude Code's /buddy Feature

What BuddyBoard Does
BuddyBoard takes Claude Code's /buddy feature — which generates a random AI companion with ASCII art and personality — and turns it into a competitive leaderboard system. The tool reads your Claude configuration, computes your buddy's stats deterministically, and submits them to a global ranking at buddyboard.xyz.
Key Features
- Trading card system: Each buddy gets a trading card with one of 18 ASCII species
- Five stats: Debugging, Patience, Chaos, Wisdom, and Snark
- Rarity tiers: Common (60%), Rare, Epic, and Legendary (1%) — legendaries feature holographic shimmer CSS effects
- BuddyDex: Tracks all 1,728 possible species/eye/hat combinations
- Team features: Organization team dashboards for group competition
- Embeddable cards: HTML cards for GitHub profile READMEs
How It Works
The buddy data is deterministic, using the same algorithm Claude Code employs: a Mulberry32 PRNG (pseudorandom number generator) seeded from your account hash. This means your buddy is consistently yours across sessions.
To use it: npx buddy-board
The tool reads your Claude config automatically, computes your buddy's stats, and submits them to the global ranking.
Technical Details
This is a community project built by a developer (u/Content-Berry-2848) and shared on Reddit. It's described as "just a fun project made this morning" but includes substantial functionality.
Website: https://buddyboard.xyz
GitHub: https://github.com/TanayK07/buddy-board
📖 Read the full source: r/ClaudeAI
👀 See Also

Claude Code protocol file reduces repetitive questioning
A developer created a single .md file for ~/.claude/rules/ that infers task type and risk from the first message, eliminating Claude Code's typical three-question sequence before starting work.

Claude Code v2.1.90 adds mouse support with CLAUDE_CODE_NO_FLICKER flag
Anthropic released Claude Code v2.1.90 with a new feature that enables mouse support in the chat interface. Users can activate it by setting the CLAUDE_CODE_NO_FLICKER=1 environment variable before running claude.

AVP Protocol Enables LLM Agents to Share KV-Cache Instead of Text for Token Efficiency
AVP (Agent Vector Protocol) allows LLM agents to pass KV-cache directly between them instead of text, reducing token processing by 73-78% and achieving 2-4x speedups across Qwen, Llama, and DeepSeek models. The protocol works with HuggingFace and vLLM connectors and is available as a Python package.

Awesome OpenClaw Skills Repository Provides 5,400+ Filtered Skills
A GitHub repository called awesome-openclaw-skills offers 1,715+ production-ready skills that AI agents can install with one CLI command, filtered from the official OpenClaw Skills Registry.