agentgui 1.0.693 → 1.0.694

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/server.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.693",
3
+ "version": "1.0.694",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",
package/server.js CHANGED
@@ -4451,7 +4451,7 @@ function killActiveExecutions() {
4451
4451
 
4452
4452
  process.on('SIGTERM', () => {
4453
4453
  console.log('[SIGNAL] SIGTERM received - graceful shutdown');
4454
- killActiveExecutions();
4454
+ if (!watch) killActiveExecutions();
4455
4455
  try { pm2Manager.disconnect(); } catch (_) {}
4456
4456
  stopACPTools().catch(() => {}).finally(() => {
4457
4457
  try { wss.close(() => server.close(() => process.exit(0))); } catch (_) { process.exit(0); }