Install
openclaw skills install photo-organizer照片批量整理工具,支持按时间、地点自动分类和打标签。适用于手机照片整理、相册归档等场景,帮助用户快速整理成千上万张照片!
openclaw skills install photo-organizer# 方法一:通过 clawhub 安装
clawhub install photo-organizer
# 方法二:作为 Python 包安装
pip install photo-organizer
photo-organizer organize ./photos --by date --output ./organized
photo-organizer organize ./photos --by location --output ./organized
photo-organizer organize ./photos --by date --preview
photo-organizer undo ./organized
--by date:按拍摄时间整理(默认)--by location:按拍摄地点整理(需要 GPS 信息)默认按时间整理的文件夹结构:
organized/
├── 2026/
│ ├── 03/
│ │ ├── photo_001.jpg
│ │ └── photo_002.jpg
│ └── 04/
└── 2025/
可以在项目根目录创建 .photo-organizer.json:
{
"output_dir": "./organized",
"folder_structure": "{year}/{month}",
"auto_tag": true,
"backup_original": true
}
# 将 DCIM 文件夹里的照片按时间整理
photo-organizer organize ./DCIM --by date --output ./my-photos
# 将旅行照片按地点整理(如果有 GPS)
photo-organizer organize ./trip-photos --by location --output ./trip-by-place