npx skills add https://github.com/ninehills/skills --skill file-manager帮助用户在计算机上查找和组织文件。
# 按名称查找(不区分大小写)
find ~/Desktop ~/Documents ~/Downloads -iname "*report*" -type f 2>/dev/null
# 按扩展名查找
find ~/Downloads -name "*.pdf" -type f
# 按大小查找(大于100MB)
find ~ -size +100M -type f 2>/dev/null | head -20
# 最近修改的文件(最近7天)
find ~/Documents -mtime -7 -type f | head -20
# 按大小查找重复文件(潜在的重复项)
find ~/Downloads -type f -exec ls -la {} + | sort -k5 -n | uniq -d -f4
# 将所有PDF文件从Downloads移动到Documents
mv ~/Downloads/*.pdf ~/Documents/
# 创建带日期的文件夹并移动文件
mkdir -p ~/Documents/$(date +%Y-%m-%d)
# 重命名文件(模式匹配)
for f in *.jpeg; do mv "$f" "${f%.jpeg}.jpg"; done
# 显示Downloads中的大文件
du -sh ~/Downloads/* | sort -rh | head -20
# 清空回收站(macOS)
rm -rf ~/.Trash/*
# 清理旧下载文件(超过30天)
find ~/Downloads -mtime +30 -type f
# 创建zip压缩包
zip -r archive.zip folder/
# 创建tar.gz压缩包
tar czf archive.tar.gz folder/
# 解压
unzip archive.zip
tar xzf archive.tar.gz
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
trash 命令而非 rm 命令(可恢复)每周安装量
105
代码仓库
GitHub 星标数
257
首次出现
2026年2月28日
安全审计
安装于
kimi-cli105
gemini-cli105
github-copilot105
amp105
cline105
codex105
Help users find and organize files on their computer.
# By name (case-insensitive)
find ~/Desktop ~/Documents ~/Downloads -iname "*report*" -type f 2>/dev/null
# By extension
find ~/Downloads -name "*.pdf" -type f
# By size (larger than 100MB)
find ~ -size +100M -type f 2>/dev/null | head -20
# Recently modified (last 7 days)
find ~/Documents -mtime -7 -type f | head -20
# Duplicates by size (potential dupes)
find ~/Downloads -type f -exec ls -la {} + | sort -k5 -n | uniq -d -f4
# Move all PDFs from Downloads to Documents
mv ~/Downloads/*.pdf ~/Documents/
# Create dated folder and move files
mkdir -p ~/Documents/$(date +%Y-%m-%d)
# Rename files (pattern)
for f in *.jpeg; do mv "$f" "${f%.jpeg}.jpg"; done
# Show large files in Downloads
du -sh ~/Downloads/* | sort -rh | head -20
# Empty trash (macOS)
rm -rf ~/.Trash/*
# Clear old downloads (older than 30 days)
find ~/Downloads -mtime +30 -type f
# Create zip
zip -r archive.zip folder/
# Create tar.gz
tar czf archive.tar.gz folder/
# Extract
unzip archive.zip
tar xzf archive.tar.gz
trash over rm when available (recoverable)Weekly Installs
105
Repository
GitHub Stars
257
First Seen
Feb 28, 2026
Security Audits
Gen Agent Trust HubPassSocketPassSnykPass
Installed on
kimi-cli105
gemini-cli105
github-copilot105
amp105
cline105
codex105
Python PDF处理教程:合并拆分、提取文本表格、创建PDF文件
62,800 周安装
Shopify Polaris Web Components 使用指南:为 App Home 构建 UI 的完整教程
104 周安装
每日新闻摘要生成器 - AI自动汇总多源新闻,智能生成Markdown报告
104 周安装
Obsidian CLI 官方命令行工具使用指南:文件管理、搜索、属性与任务操作
104 周安装
流程图创建器 - 在线生成交互式HTML流程图、决策树和工作流可视化工具
104 周安装
send-file 技能:Telegram 文件发送工具,支持图片、文档、音频、视频一键发送
104 周安装
约定式提交规范指南:自动化版本管理与变更日志生成
104 周安装