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.
- package/package.json +1 -1
- package/server.js +1 -1
package/package.json
CHANGED
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.
|
|
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',
|