一款名为 Mindwalk 的开源可视化工具现已推出,旨在让用户在代码库生成的三维地图上回放编码代理的操作会话 [1]。该工具能够重现如 Claude Code、Codex 等人工智能代理在执行任务时的搜索、阅读和编辑路径,并通过光效直观展示这些操作轨迹,帮助用户理解代理对任务的认知过程 [1]。
Mindwalk 支持读取 JSONL 格式的会话日志进行回放,并提供了多种视图模式及详细的时间轴标记功能 [1]。在技术实现上,该工具采用 Go 语言构建后端,前端则基于 React/Three.js 开发 [1]。为确保数据隐私安全,Mindwalk 设计为完全本地运行环境,所有会话数据均不会离开用户的机器 [1]。
用户可以通过以下命令安装该软件:curl -fsSL https://raw.githubusercontent.com/cosmtrek/mindwalk/master/scripts/install.sh | sh[1]。
A new open-source visualization tool called Mindwalk enables users to replay coding agent sessions onto a three-dimensional map of their codebase [1]. The application visualizes the search, reading, and editing paths taken by agents such as Claude Code and Codex using light effects [1]. This functionality helps developers intuitively understand how an agent interprets tasks within a repository .
Mindwalk operates entirely locally on the user's machine to ensure data privacy, meaning session data never leaves the device . The tool is distributed as a Go binary file and supports multiple view modes along with detailed timeline markers . Users can install the software by running the following command: curl -fsSL https://raw.githubusercontent.com/cosmtrek/mindwalk/master/scripts/install.sh | sh .
The platform utilizes a Go backend paired with React/Three.js for its frontend interface to render these interactive 3D maps . Sessions are replayed using JSONL format logs provided by the coding agents .