agentgui 1.0.497 → 1.0.498

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 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.497",
3
+ "version": "1.0.498",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",
package/server.js CHANGED
@@ -1917,6 +1917,7 @@ const server = http.createServer(async (req, res) => {
1917
1917
  if (result.success) {
1918
1918
  queries.updateToolStatus(toolId, { status: 'installed', installed_at: Date.now() });
1919
1919
  queries.addToolInstallHistory(toolId, 'update', 'success', null);
1920
+ await toolManager.checkToolStatusAsync(toolId);
1920
1921
  if (wsOptimizer && wsOptimizer.broadcast) {
1921
1922
  wsOptimizer.broadcast({ type: 'tool_update_complete', toolId, data: result });
1922
1923
  }