agentgui 1.0.516 → 1.0.517

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.516",
3
+ "version": "1.0.517",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",
package/server.js CHANGED
@@ -1801,7 +1801,7 @@ const server = http.createServer(async (req, res) => {
1801
1801
  const tools = await toolManager.getAllToolsAsync();
1802
1802
  const result = tools.map((t) => ({
1803
1803
  id: t.id,
1804
- name: t.id,
1804
+ name: t.name,
1805
1805
  pkg: t.pkg,
1806
1806
  installed: t.installed,
1807
1807
  status: t.installed ? (t.isUpToDate ? 'installed' : 'needs_update') : 'not_installed',
@@ -222,7 +222,7 @@
222
222
 
223
223
  return '<div class="tool-item">' +
224
224
  '<div class="tool-header">' +
225
- '<span class="tool-name">' + esc(tool.name || tool.id) + '</span>' +
225
+ '<span class="tool-name">' + esc(tool.id) + '</span>' +
226
226
  '<span class="tool-status-indicator ' + statusClass + '">' +
227
227
  '<span class="tool-status-dot"></span>' +
228
228
  '<span>' + getStatusText(tool) + '</span>' +