跳到内容

Repo Snapshot — 把项目结构交给 AI

tree / find / fd 输出转为 AI 助手友好的整理 Markdown

完全免费 无需注册 浏览器内完成 即刻下载 5 种语言 深色模式
⬇ .md

            
文件
0
字符
0
估算 tokens
0
📋 如何获取输入
# 王道: 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

❓ 常见问题

没有 tree 命令?
使用 find / ls -R / fd
文件太多
限制 "最大文件数" 或深度
隐私?
完全浏览器内处理,不发送到服务器
token 估算精度?
近似估算。精确用 Token Counter
🐛 此工具出现问题了吗?

免费、无需注册。仅提供复现步骤也有帮助。报告将直接发送给运营者并用于改进。

※ 为复现问题,浏览器信息 (UA / 屏幕 / 语言 / URL) 将自动发送