diff --git a/wechat_auto/.env b/.env similarity index 100% rename from wechat_auto/.env rename to .env diff --git a/wechat_auto/.env.example b/.env.example similarity index 100% rename from wechat_auto/.env.example rename to .env.example diff --git a/wechat_auto/README.md b/README.md similarity index 100% rename from wechat_auto/README.md rename to README.md diff --git a/wechat_auto/__init__.py b/__init__.py similarity index 100% rename from wechat_auto/__init__.py rename to __init__.py diff --git a/wechat_auto/__pycache__/__init__.cpython-313.pyc b/__pycache__/__init__.cpython-313.pyc similarity index 100% rename from wechat_auto/__pycache__/__init__.cpython-313.pyc rename to __pycache__/__init__.cpython-313.pyc diff --git a/wechat_auto/__pycache__/config.cpython-313.pyc b/__pycache__/config.cpython-313.pyc similarity index 100% rename from wechat_auto/__pycache__/config.cpython-313.pyc rename to __pycache__/config.cpython-313.pyc diff --git a/wechat_auto/__pycache__/main.cpython-313.pyc b/__pycache__/main.cpython-313.pyc similarity index 100% rename from wechat_auto/__pycache__/main.cpython-313.pyc rename to __pycache__/main.cpython-313.pyc diff --git a/wechat_auto/api/__init__.py b/api/__init__.py similarity index 100% rename from wechat_auto/api/__init__.py rename to api/__init__.py diff --git a/wechat_auto/api/__pycache__/__init__.cpython-313.pyc b/api/__pycache__/__init__.cpython-313.pyc similarity index 100% rename from wechat_auto/api/__pycache__/__init__.cpython-313.pyc rename to api/__pycache__/__init__.cpython-313.pyc diff --git a/wechat_auto/api/__pycache__/trigger.cpython-313.pyc b/api/__pycache__/trigger.cpython-313.pyc similarity index 100% rename from wechat_auto/api/__pycache__/trigger.cpython-313.pyc rename to api/__pycache__/trigger.cpython-313.pyc diff --git a/wechat_auto/api/trigger.py b/api/trigger.py similarity index 100% rename from wechat_auto/api/trigger.py rename to api/trigger.py diff --git a/wechat_auto/capture_icons.py b/capture_icons.py similarity index 100% rename from wechat_auto/capture_icons.py rename to capture_icons.py diff --git a/wechat_auto/config.py b/config.py similarity index 100% rename from wechat_auto/config.py rename to config.py diff --git a/wechat_auto/core/__init__.py b/core/__init__.py similarity index 100% rename from wechat_auto/core/__init__.py rename to core/__init__.py diff --git a/wechat_auto/core/__pycache__/__init__.cpython-313.pyc b/core/__pycache__/__init__.cpython-313.pyc similarity index 100% rename from wechat_auto/core/__pycache__/__init__.cpython-313.pyc rename to core/__pycache__/__init__.cpython-313.pyc diff --git a/wechat_auto/core/__pycache__/task_scheduler.cpython-313.pyc b/core/__pycache__/task_scheduler.cpython-313.pyc similarity index 100% rename from wechat_auto/core/__pycache__/task_scheduler.cpython-313.pyc rename to core/__pycache__/task_scheduler.cpython-313.pyc diff --git a/wechat_auto/core/__pycache__/window_manager.cpython-313.pyc b/core/__pycache__/window_manager.cpython-313.pyc similarity index 100% rename from wechat_auto/core/__pycache__/window_manager.cpython-313.pyc rename to core/__pycache__/window_manager.cpython-313.pyc diff --git a/wechat_auto/core/desktop_automation.py b/core/desktop_automation.py similarity index 100% rename from wechat_auto/core/desktop_automation.py rename to core/desktop_automation.py diff --git a/wechat_auto/core/executor/__init__.py b/core/executor/__init__.py similarity index 100% rename from wechat_auto/core/executor/__init__.py rename to core/executor/__init__.py diff --git a/wechat_auto/core/executor/__pycache__/__init__.cpython-313.pyc b/core/executor/__pycache__/__init__.cpython-313.pyc similarity index 100% rename from wechat_auto/core/executor/__pycache__/__init__.cpython-313.pyc rename to core/executor/__pycache__/__init__.cpython-313.pyc diff --git a/wechat_auto/core/executor/__pycache__/pyautogui_executor.cpython-313.pyc b/core/executor/__pycache__/pyautogui_executor.cpython-313.pyc similarity index 100% rename from wechat_auto/core/executor/__pycache__/pyautogui_executor.cpython-313.pyc rename to core/executor/__pycache__/pyautogui_executor.cpython-313.pyc diff --git a/wechat_auto/core/executor/__pycache__/qwen_ai_executor.cpython-313.pyc b/core/executor/__pycache__/qwen_ai_executor.cpython-313.pyc similarity index 100% rename from wechat_auto/core/executor/__pycache__/qwen_ai_executor.cpython-313.pyc rename to core/executor/__pycache__/qwen_ai_executor.cpython-313.pyc diff --git a/wechat_auto/core/executor/pyautogui_executor.py b/core/executor/pyautogui_executor.py similarity index 100% rename from wechat_auto/core/executor/pyautogui_executor.py rename to core/executor/pyautogui_executor.py diff --git a/wechat_auto/core/executor/qwen_ai_executor.py b/core/executor/qwen_ai_executor.py similarity index 100% rename from wechat_auto/core/executor/qwen_ai_executor.py rename to core/executor/qwen_ai_executor.py diff --git a/wechat_auto/core/task_scheduler.py b/core/task_scheduler.py similarity index 100% rename from wechat_auto/core/task_scheduler.py rename to core/task_scheduler.py diff --git a/wechat_auto/core/window_manager.py b/core/window_manager.py similarity index 100% rename from wechat_auto/core/window_manager.py rename to core/window_manager.py diff --git a/wechat_auto/images/wechat_icon.png b/images/wechat_icon.png similarity index 100% rename from wechat_auto/images/wechat_icon.png rename to images/wechat_icon.png diff --git a/wechat_auto/images/一见星球.png b/images/一见星球.png similarity index 100% rename from wechat_auto/images/一见星球.png rename to images/一见星球.png diff --git a/wechat_auto/images/小程序图标.png b/images/小程序图标.png similarity index 100% rename from wechat_auto/images/小程序图标.png rename to images/小程序图标.png diff --git a/wechat_auto/main.py b/main.py similarity index 100% rename from wechat_auto/main.py rename to main.py diff --git a/wechat_auto/models/__init__.py b/models/__init__.py similarity index 100% rename from wechat_auto/models/__init__.py rename to models/__init__.py diff --git a/wechat_auto/models/__pycache__/__init__.cpython-313.pyc b/models/__pycache__/__init__.cpython-313.pyc similarity index 100% rename from wechat_auto/models/__pycache__/__init__.cpython-313.pyc rename to models/__pycache__/__init__.cpython-313.pyc diff --git a/wechat_auto/models/__pycache__/activity.cpython-313.pyc b/models/__pycache__/activity.cpython-313.pyc similarity index 100% rename from wechat_auto/models/__pycache__/activity.cpython-313.pyc rename to models/__pycache__/activity.cpython-313.pyc diff --git a/wechat_auto/models/activity.py b/models/activity.py similarity index 100% rename from wechat_auto/models/activity.py rename to models/activity.py diff --git a/wechat_auto/requirements.txt b/requirements.txt similarity index 100% rename from wechat_auto/requirements.txt rename to requirements.txt diff --git a/wechat_auto/utils/__init__.py b/utils/__init__.py similarity index 100% rename from wechat_auto/utils/__init__.py rename to utils/__init__.py diff --git a/wechat_auto/utils/__pycache__/__init__.cpython-313.pyc b/utils/__pycache__/__init__.cpython-313.pyc similarity index 100% rename from wechat_auto/utils/__pycache__/__init__.cpython-313.pyc rename to utils/__pycache__/__init__.cpython-313.pyc diff --git a/wechat_auto/utils/__pycache__/logger.cpython-313.pyc b/utils/__pycache__/logger.cpython-313.pyc similarity index 100% rename from wechat_auto/utils/__pycache__/logger.cpython-313.pyc rename to utils/__pycache__/logger.cpython-313.pyc diff --git a/wechat_auto/utils/__pycache__/retry.cpython-313.pyc b/utils/__pycache__/retry.cpython-313.pyc similarity index 100% rename from wechat_auto/utils/__pycache__/retry.cpython-313.pyc rename to utils/__pycache__/retry.cpython-313.pyc diff --git a/wechat_auto/utils/logger.py b/utils/logger.py similarity index 100% rename from wechat_auto/utils/logger.py rename to utils/logger.py diff --git a/wechat_auto/utils/retry.py b/utils/retry.py similarity index 100% rename from wechat_auto/utils/retry.py rename to utils/retry.py