start_cursor_auto_chat_background.bat 602 B

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