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
Needle: A 26M Parameter Function-Calling Model That Runs at 6000 tok/s on Mobile
Cactus open-sources Needle, a 26M parameter model for single-shot function calling, achieving 6000 tok/s prefill and 1200 tok/s decode on consumer devices. Built with Simple Attention Networks (no FFNs), it beats several larger models on tool-use benchmarks.

Scaling Karpathy's Autoresearch with 16 GPUs: Results and Methods
The SkyPilot team gave Claude Code access to 16 GPUs on a Kubernetes cluster to run Karpathy's Autoresearch project. Over 8 hours, the agent submitted ~910 experiments, reduced validation bits per byte from 1.003 to 0.974 (2.87% improvement), and reached the best validation loss 9x faster than sequential execution.

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.

Toroidal Logit Bias: Simple Inference-Time Trick Reduces Hallucination by 40%
A novel method maps tokens to a torus and boosts nearby logits, reducing factual errors without fine-tuning or RAG.