Show HN: Mindwalk – Replay coding-agent sessions on a 3D map of your codebase A developer released Mindwalk, an open-source visualization tool that replays coding-agent sessions on a 3D map of a codebase, allowing users to see where an AI agent searched, read, and edited code. The tool runs locally, supports Claude Code and Codex session logs, and is available via GitHub. A visualization tool that replays coding-agent sessions on a 3D map of your codebase. A session log records what an agent did, but not how it understood the task: which parts of the repo it treated as relevant, where it explored before it acted, whether its footprint matched the scope you had in mind. Reading the raw JSONL line by line doesn't answer any of that. Draw the repository as a night map, and play the session back as light moving through it: where the agent searched, read, and edited, the map glows — everything else stays dark. The agent's understanding of the task becomes a shape you can see at a glance. One Go binary reads Claude Code and Codex session logs, fully local; no session data leaves your machine. curl -fsSL https://raw.githubusercontent.com/cosmtrek/mindwalk/master/scripts/install.sh | sh export PATH="$HOME/.local/bin:$PATH" mindwalk The installer verifies the binary against checksums.txt and installs to ~/.local/bin override with INSTALL DIR ; pin a release with VERSION . Windows archives are on GitHub Releases https://github.com/cosmtrek/mindwalk/releases . To build from source: make setup && make build → bin/mindwalk . With no arguments, mindwalk scans ~/.claude/projects and ~/.codex/sessions , serves the UI on a random local port, and opens a browser: mindwalk serve --port N --no-open --claude-dir DIR --codex-dir DIR mindwalk open --no-open