Show HN: Mindwalk – Replay coding-agent sessions on a 3D map of your codebase
Summary
Mindwalk is an open-source visualization tool that replays coding-agent sessions on a 3D map of your codebase, supporting Claude Code and Codex session logs with a local Go server and React/Three.js frontend.
View Cached Full Text
Cached at: 07/12/26, 10:47 AM
cosmtrek/mindwalk
Source: https://github.com/cosmtrek/mindwalk
mindwalk
A visualization tool that replays coding-agent sessions on a 3D map of your codebase.
https://github.com/user-attachments/assets/6490cd77-0374-4f36-a6e7-24267d5c61f3
The 30-second demo — sound on.
The problem
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.
The idea
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.
Quick start
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.
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] <session.jsonl> open one specific session
mindwalk build <repo> [-o out] write the repository citymap JSON
mindwalk trace <session> [-o out] write the normalized trace JSON
Reading the picture
- Tree / Terrain views — the repo as a radial tree or a treemap plain; glow ∝ how deeply and how often a file was touched.
- Touch states — each file keeps its deepest touch: seen (moss green), read (moon white), edited (warm amber), unvisited (dark). The HUD folds friction signals — error rate, churned files, edits after the last verify — into a review strip.
- Playback deck — scrub or play the session over a bucketed histogram of the run. Bars sit on a cool/warm spectrum: observation stays cool (search, read, exec), mutation glows warm (edit, verify), so editing phases jump out at a glance.
- Timeline marks —
◇context compactions,○subagent launches,›user turns; every mark is a click-to-jump target. - Inspector — click a file to pin its visit history; click a visit row to jump the playhead to that moment.

Keyboard: Space play/pause · ←/→ step (⇧ ×10) · Home/End ends ·
S speed · E next edit · X next error · M next mark · ⌘B session rail.
Under the hood
Two artifacts, kept deliberately separate:
- a trace — the session log normalized into an ordered stream of
file-touch events (
internal/adapter, one adapter per agent format); - a citymap — a deterministic layout of the repository
(
internal/citymap); the same tree always produces the same map, so replays are comparable across sessions.
A local Go server (internal/server) joins the two and serves the
React/Three.js frontend (web). schema/ mirrors the exported JSON contracts.
Contributing
Issues and pull requests are welcome. To get a working dev setup:
make setup # install frontend dependencies
make serve # dev server on :8765, serving web/dist from the working tree
make test # go test + frontend build — run before sending a PR
make build # regenerate embedded assets and bin/mindwalk
Ground rules (see AGENTS.md for the full architecture notes):
- Keep the boundaries: adapters don’t know about rendering, citymap generation doesn’t depend on playback, the server just connects the two.
- Keep Go code
gofmt-ed; never hand-editinternal/server/static— regenerate it withmake build. - When trace or citymap JSON shapes change, update
schema/and the relevant tests in the same change.
Similar Articles
Open-source dashboard to visualize AI coding agents (Claude Code)
Developer releases an open-source medieval-themed dashboard that visualizes multiple Claude Code agents as 2D village characters to simplify real-time tracking of parallel coding sessions.
Show HN: Paseo – Beautiful open-source coding agent interface
Paseo is an open-source interface that unifies multiple coding agents (Claude Code, Codex, Copilot, OpenCode, Pi) into a single self-hosted platform with voice control, cross-device support, and privacy-first design.
Show HN: Arcaide – Explore code with multi-level call graphs
Arcaide is a tool that builds multi-level call graphs to help developers explore and understand codebases by combining structural and behavioral analysis, using an LLM to enrich the graph and strip out trivial utilities.
Show HN: Recall – fully-local project memory for Claude Code
Recall is an open-source tool that provides fully-local, zero-cost project memory for Claude Code by automatically capturing session history and summarizing it into a compact context file, all without sending data to any external API.
I built an open-source coding agent that makes context visible and editable — you curate exactly what the LLM sees
The author built Nice Coding Agent, an open-source coding workbench with a visible and editable context stack, allowing users to curate exactly what the LLM sees. It features local-first retrieval, sandboxed execution, and hybrid code search, aiming to give developers control and visibility over context assembly.