diff --git a/README.md b/README.md
index 6bd04b3..b4d1591 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,59 @@
-# GUI小工具集
+# AI GUI小工具集
+### [n8n_video_gen_gui.py](n8n_video_gen_gui.py) n8n视频生成工具
+
+
+

+
+
+### [comfyui_gui.py](comfyui_gui.py) comfyui换装工具
+
+

+
+
+### [minimax_tts_gui.py](minimax_tts_gui.py) Minimax语音生成工具
+
+

+
+
+
+## 使用方法
+- n8n视频生成工具
+ - 使用步骤
+ - 全局参数配置
+ - 选择图片
+ - 生成提示词 (生成提示词的Prompt可以点击图片参数配置**右侧小齿轮**配置)
+ - 生成视频
+- comfyui换装工具
+ - 使用步骤
+ - 配置ComfyUI服务器
+ - 连接服务器选择符合要求的工作流
+ - 配置工作流输入输出节点
+ - 第一个LoadImage节点对应模特
+ - 第二个LoadImage节点对应服装
+ - SaveImageAnywhere节点在对应输出文件夹中输出换装结果
+ - 点击开始换装 (单模特批量换装, 模特需要手动点击切换)
+- Minimax语音生成工具
+ - 使用步骤
+ - 配置语音设置
+ - 语音ID需提前使用Voice Clone接口进行克隆
+ - 语速、音量、音调、情感可调
+ - 输入TTS文本
+ - 选择输出目录和文件名格式
+ - 点击开始转换
-- video_gen.py 调用n8n生成视频小工具
-- tts.py 调用Minimax生成语音
-- comfyui_gui.py 调用自定义comfyui执行换装任务
## 打包指令
- nuitka --standalone --onefile --windows-console-mode=disable --plugin-enable=pyside6 --windows-icon-from-ico=./static/video.ico --include-data-file=static/SourceHanSansCN-Medium.ttf=SourceHanSansCN-Medium.ttf video_gen.py
- nuitka --standalone --onefile --windows-console-mode=disable --plugin-enable=pyside6 --windows-icon-from-ico=./static/video.ico tts.py
- nuitka --standalone --onefile --windows-console-mode=disable --plugin-enable=pyside6 --windows-icon-from-ico=./static/comfyui_hz.ico --include-data-file=static/comfyui_hz.ico=comfyui_hz.ico comfyui_gui.py
\ No newline at end of file
+- n8n视频生成工具
+```
+nuitka --standalone --onefile --windows-console-mode=disable --plugin-enable=pyside6 --windows-icon-from-ico=./static/video.ico --include-data-file=static/SourceHanSansCN-Medium.ttf=SourceHanSansCN-Medium.ttf n8n_video_gen_gui.py
+```
+
+- comfyui换装工具
+```
+nuitka --standalone --onefile --windows-console-mode=disable --plugin-enable=pyside6 --windows-icon-from-ico=./static/comfyui_hz.ico --include-data-file=static/comfyui_hz.ico=comfyui_hz.ico comfyui_gui.py
+```
+
+- Minimax语音生成工具
+```
+nuitka --standalone --onefile --windows-console-mode=disable --plugin-enable=pyside6 --windows-icon-from-ico=./static/video.ico minimax_tts_gui.py
+```
diff --git a/tts.py b/minimax_tts_gui.py
similarity index 100%
rename from tts.py
rename to minimax_tts_gui.py
diff --git a/video_gen.py b/n8n_video_gen_gui.py
similarity index 100%
rename from video_gen.py
rename to n8n_video_gen_gui.py
diff --git a/static/comfyui_gui.png b/static/comfyui_gui.png
new file mode 100644
index 0000000..8ef90ef
Binary files /dev/null and b/static/comfyui_gui.png differ
diff --git a/static/minimax_tts_gui.png b/static/minimax_tts_gui.png
new file mode 100644
index 0000000..8bfbce8
Binary files /dev/null and b/static/minimax_tts_gui.png differ
diff --git a/static/n8n_video_gen_gui.png b/static/n8n_video_gen_gui.png
new file mode 100644
index 0000000..2c1d5b4
Binary files /dev/null and b/static/n8n_video_gen_gui.png differ