agentgui 1.0.493 → 1.0.494

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.493",
3
+ "version": "1.0.494",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",
package/server.js CHANGED
@@ -1786,7 +1786,7 @@ const server = http.createServer(async (req, res) => {
1786
1786
  const tools = await toolManager.getAllToolsAsync();
1787
1787
  const result = tools.map((t) => ({
1788
1788
  id: t.id,
1789
- name: t.name,
1789
+ name: t.id,
1790
1790
  pkg: t.pkg,
1791
1791
  installed: t.installed,
1792
1792
  status: t.installed ? (t.isUpToDate ? 'installed' : 'needs_update') : 'not_installed',