| 1234567891011121314151617181920212223242526 |
- @echo off
- REM Cursor自动聊天工具启动脚本(后台运行)
- REM 使用方法: 双击此文件,工具将在后台运行
- cd /d %~dp0\..
- echo ========================================
- echo 正在后台启动Cursor自动聊天工具...
- echo ========================================
- echo.
- echo 使用指定的输入框位置: 1180,965
- echo.
- start /B python scripts/cursor_auto_chat.py --daemon --input-box-pos "1180,965"
- echo 工具已在后台启动
- echo 日志文件位置: logs\cursor_auto_chat.log
- echo.
- echo 要停止工具,请运行: scripts\stop_cursor_auto_chat.bat
- echo.
- pause
|