Every Claude Code hook event plays a thematic Minecraft sound. Random variation each time.
| Hook | Minecraft Sound | Vibe |
|---|---|---|
| SessionStart | Chest open | Opening a session |
| SessionEnd | Chest close | Packing up |
| #!/usr/bin/env python3 | |
| """ | |
| Map-reduce summarization of conversation chunks using Claude Sonnet. | |
| Usage: | |
| python summarize.py # run full pipeline | |
| python summarize.py --map-only # run map phase only | |
| python summarize.py --reduce-only # run reduce phase only (expects summaries/ to exist) | |
| """ |
Every Claude Code hook event plays a thematic Minecraft sound. Random variation each time.
| Hook | Minecraft Sound | Vibe |
|---|---|---|
| SessionStart | Chest open | Opening a session |
| SessionEnd | Chest close | Packing up |
| #!/bin/bash | |
| # IPv4 Header Frame Schema - ANSI box drawing | |
| # Grid: 32 bits per row, each bit = 3 chars wide (2 content + 1 separator) | |
| # Total inner width = 32*3 - 1 = 95 chars | |
| R='\033[0m' | |
| B='\033[1;34m' | |
| W='\033[1;37m' | |
| G='\033[1;32m' | |
| Y='\033[1;33m' |