Claude Code Unpacked : A visual guide
Claude Code UnpackedWhat actually happens when you type a message into Claude Code? The agent loop, 40+ tools, multi-agent orchestration, and unreleased features, mapped straight from the source.0+Files0K+Lines of Code0+Tools0+CommandsStart exploring↓ 01The Agent LoopFrom keypress to rendered response, step by step through the source.1Input2Message3History4System5API6Tokens7Tools?8Loop9Render10Hooks11Await1Input2Message3History4System5API6Tokens7Tools?8Loop9Render10Hooks11AwaitWatch what happens when you send a message to Claude Code1User Inputsrc/components/TextInput.tsxUser types a message or pipes input through stdin● claude-code$Keyboard input comes from Ink’s TextInput component. In non-interactive mode, it reads from piped stdin instead.1/110.5x1x2x 02Architecture ExplorerClick…