Files
AgentsMeeting/deploy/windows/start.bat
T
hmo ea193a9881 chore: retire legacy wechat-hermes-gateway xmpp_bot, unify bridge to :5807
Old xmpp_bot.py (PID-locked separately) coexisted with new xmpp_agent_core,
causing duplicate JID connections and split bridge traffic (5802 vs 5807).
Deploy scripts now use new bot's :5807 bridge with X-Api-Key auth.
2026-07-23 13:59:11 +08:00

20 lines
829 B
Batchfile

@echo off
echo === AgentsMeeting Windows Services ===
echo [0/3] Cleaning...
taskkill /f /im python.exe 2>nul
taskkill /f /im easytier-core.exe 2>nul
timeout /t 3 /nobreak >nul
echo [1/3] Article Processor...
start /b "" "C:\Users\hmo\AppData\Local\Programs\Python\Python310\python.exe" "D:\F\NewI\opencode\daily-workspace\projects\self-growing-knowledge\scripts\article_processor.py"
timeout /t 3 /nobreak >nul
echo [2/3] xxm Bot...
start /b "" /D "D:\F\NewI\opencode\daily-workspace\projects\AgentsMeeting" "C:\Users\hmo\AppData\Local\Programs\Python\Python310\python.exe" xmpp_agent_core.py --agent xxm
timeout /t 10 /nobreak >nul
echo [3/3] EasyTier...
curl -s -X POST http://127.0.0.1:5807/easytier -H "Content-Type: application/json" -H "X-Api-Key: xxm_bridge_8f3a2c" -d "{\"action\":\"start\"}" >nul
echo === Done ===