Claude Code Flow Visualizer: interactive graph of agent harness
A tool that reads a Claude Code repository (GitHub, ZIP, or local folder) and generates an interactive graph showing agents, skills, hooks, slash commands, MCP servers, and their connections. It also detects issues like broken links, loops, unused skills, and reviewer problems, helping developers understand and debug complex Claude Code harnesses.
Entities
Related
Replay coding-agent sessions on a 3D codebase map
Mindwalk replays coding-agent sessions on a 3D map of your codebase, letting developers visualize and debug agent actions spatially. It uses LLMs to power the coding agent whose sessions are replayed, helping developers understand agent behavior and codebase structure.
Confessor: Analyzes Claude Code transcripts to show what the AI agent did on your computer
Confessor is an open-source tool that reads the JSONL log files Claude Code leaves on disk and generates a human-readable report of every action the AI agent performed, including tool calls, file reads, and shell commands. It helps developers understand and audit the behavior of AI coding agents on their machines.
Git-aware AI debugger that checks out old commits to fix production bugs
A tool that makes AI coding assistants (like Cursor or Claude Code) automatically checkout the git commit corresponding to a production error before debugging, preventing the agent from analyzing current code that has shifted. It solves the problem of AI agents hallucinating fixes because they look at the present state of files while the bug existed in a past commit.
temporal-debug-skill project enables AI agents to time-travel debug via git worktree
A new open-source project called temporal-debug-skill gives AI coding agents the ability to debug code at any point in git history. The skill parses fuzzy time references into commit SHAs, creates isolated read-only worktrees, and auto-cleans up, working with any agent like Claude Code or Cursor.
Capn-hook: coding agent tool to avoid grepping the same mystery twice
Capn-hook is a tool for coding agents that records and indexes grep results so that when a developer encounters the same error or mystery again, the agent can recall the previous investigation. It uses LLMs to summarize and store grep outcomes, saving time by preventing repeated searches.

