Skip to content

Repo Snapshot for AI — Hand a Project Tree to Your LLM

Paste tree / find / fd output to convert into clean Markdown ready for AI coding assistants (Claude Code / Cursor / GPT). Exclude patterns, file sizes, group by extension, depth limit, token estimate.

100% Free No signup Browser-only Instant download 5 languages Dark mode
⬇ .md

            
Files
0
Chars
0
Est. tokens
0
📋 How to capture input (shell commands)
# 王道: tree (推奨、見やすい)
tree -L 3 -I 'node_modules|.git|dist'

# tree が無いとき: find
find . -type f -not -path '*/node_modules/*' -not -path '*/.git/*' | sort

# rust 製の高速版: fd
fd --type f --hidden --exclude node_modules --exclude .git

# Mac/Linux 標準: ls -R
ls -R

# Windows PowerShell
Get-ChildItem -Recurse -File | Select-Object FullName

❓ FAQ

No tree command?
Use find or ls -R as fallback. fd (Rust) supports --exclude directly
Too many files?
Set "Max files" to 500-1000 or limit depth. Mind your LLM context budget
Privacy?
Fully in-browser. Nothing sent to server. Safe for confidential projects
Token estimate accuracy?
Rough estimate (4 ASCII chars ≈ 1 token; 1 CJK char ≈ 1.5). For exact, use "Token Counter"
🐛 Found a bug or issue with this tool?

Free to use, no signup. Even just the steps to reproduce are helpful. Reports go directly to the operator and help us fix issues.

* Browser info (UA / screen / language / URL) is sent automatically to help reproduce the issue