gnoyes-mik/code-tour

3 stars · Last commit 2026-01-15

Interactive code explorer - navigate your codebase like a debugger.

README preview

# Code Tour

Interactive code explorer - navigate your codebase by drilling into functions.

[한국어](./README.ko.md)

## What is Code Tour?

Code Tour is a Claude Code plugin that lets you explore code by drilling into function calls, like navigating a tree structure. Instead of stepping through lines, you dive into functions to understand the code flow.

```
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
```
**src/service/AuthService.java:42**

```
  login() - Login entry point
  └─ authService.authenticate() ← current
     ├─[a] userRepository.findByEmail() - Find user by email
     ├─[b] passwordEncoder.matches() - Validate password

View full repository on GitHub →