npx skills add https://github.com/eyadsibai/ltk --skill file-organization整理文件、查找重复项并维护整洁的文件夹结构。
# 目录概览
ls -la [directory]
# 统计文件类型
find [directory] -type f | sed 's/.*\.//' | sort | uniq -c | sort -rn
# 最大文件
du -sh [directory]/* | sort -rh | head -20
# 本周修改的文件
find [directory] -type f -mtime -7
# 通过哈希值(完全重复)
find [directory] -type f -exec md5sum {} \; | sort | uniq -d
# 通过文件名
find [directory] -type f -printf '%f\n' | sort | uniq -d
# 通过大小
find [directory] -type f -printf '%s %p\n' | sort -n | uniq -D -w 10
Downloads/
├── Documents/ # PDF, DOCX, TXT
├── Images/ # JPG, PNG, SVG
├── Videos/ # MP4, MOV
├── Archives/ # ZIP, TAR, DMG
├── Code/ # Projects
└── ToSort/ # Needs decision
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
Documents/
├── Work/
│ ├── Projects/
│ ├── Reports/
│ └── Archive/
└── Personal/
├── Finance/
├── Medical/
└── Archive/
Photos/
├── 2024/
│ ├── 01-January/
│ ├── 02-February/
│ └── ...
├── 2023/
└── Unsorted/
# 创建结构
mkdir -p "path/to/new/folders"
# 移动文件
mv "old/path/file.pdf" "new/path/file.pdf"
# 按扩展名批量移动
find . -name "*.pdf" -exec mv {} Documents/ \;
01-current, 02-archive2024-10-17-meeting-notes.mdfile (1).pdf → file.pdf| 频率 | 任务 |
|---|---|
| 每周 | 整理新下载的文件 |
| 每月 | 审查/归档项目 |
| 每季度 | 检查重复项 |
| 每年 | 归档旧文件 |
每周安装量
114
代码仓库
GitHub 星标数
1
首次出现
2026年1月28日
安全审计
安装于
opencode102
gemini-cli101
codex99
github-copilot97
kimi-cli92
cursor92
Organize files, find duplicates, and maintain clean folder structures.
# Overview of directory
ls -la [directory]
# Count file types
find [directory] -type f | sed 's/.*\.//' | sort | uniq -c | sort -rn
# Largest files
du -sh [directory]/* | sort -rh | head -20
# Files modified this week
find [directory] -type f -mtime -7
# By hash (exact duplicates)
find [directory] -type f -exec md5sum {} \; | sort | uniq -d
# By name
find [directory] -type f -printf '%f\n' | sort | uniq -d
# By size
find [directory] -type f -printf '%s %p\n' | sort -n | uniq -D -w 10
Downloads/
├── Documents/ # PDF, DOCX, TXT
├── Images/ # JPG, PNG, SVG
├── Videos/ # MP4, MOV
├── Archives/ # ZIP, TAR, DMG
├── Code/ # Projects
└── ToSort/ # Needs decision
Documents/
├── Work/
│ ├── Projects/
│ ├── Reports/
│ └── Archive/
└── Personal/
├── Finance/
├── Medical/
└── Archive/
Photos/
├── 2024/
│ ├── 01-January/
│ ├── 02-February/
│ └── ...
├── 2023/
└── Unsorted/
# Create structure
mkdir -p "path/to/new/folders"
# Move files
mv "old/path/file.pdf" "new/path/file.pdf"
# Batch move by extension
find . -name "*.pdf" -exec mv {} Documents/ \;
01-current, 02-archive2024-10-17-meeting-notes.mdfile (1).pdf → file.pdf| Frequency | Task |
|---|---|
| Weekly | Sort new downloads |
| Monthly | Review/archive projects |
| Quarterly | Check for duplicates |
| Yearly | Archive old files |
Weekly Installs
114
Repository
GitHub Stars
1
First Seen
Jan 28, 2026
Security Audits
Gen Agent Trust HubPassSocketPassSnykPass
Installed on
opencode102
gemini-cli101
codex99
github-copilot97
kimi-cli92
cursor92
Python PDF处理教程:合并拆分、提取文本表格、创建PDF文件
62,800 周安装
Better-Auth 组织管理最佳实践:多租户系统设置、成员权限与邀请系统完整指南
7,500 周安装
视频广告规格大全:TikTok、Instagram、YouTube、Facebook、LinkedIn广告制作指南与AI生成工具
7,600 周安装
背景移除工具 - 使用inference.sh CLI快速去除图片背景,支持透明PNG输出
7,600 周安装
Google Sheets 导出 CSV 备份教程 - 使用 Google Workspace CLI 快速备份表格数据
7,700 周安装
AI RAG 管道构建指南:使用 inference.sh CLI 快速搭建检索增强生成系统
7,700 周安装
AI播客创作工具 - 使用inference.sh CLI快速生成AI驱动播客和音频内容
7,700 周安装