agentgui 1.0.515 → 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 +1 -1
- package/server.js +1 -1
- package/static/index.html +11 -3
- package/static/js/tools-manager.js +1 -1
package/package.json
CHANGED
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.
|
|
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',
|
package/static/index.html
CHANGED
|
@@ -856,6 +856,14 @@
|
|
|
856
856
|
display: none;
|
|
857
857
|
}
|
|
858
858
|
|
|
859
|
+
.cli-selector {
|
|
860
|
+
display: inline-block;
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
.sub-agent-selector {
|
|
864
|
+
display: inline-block;
|
|
865
|
+
}
|
|
866
|
+
|
|
859
867
|
.message-textarea {
|
|
860
868
|
flex: 1;
|
|
861
869
|
padding: 0.625rem 0.875rem;
|
|
@@ -1087,9 +1095,9 @@
|
|
|
1087
1095
|
.message { max-width: 95%; }
|
|
1088
1096
|
.messages-wrapper { padding: 0.375rem 0.5rem; }
|
|
1089
1097
|
.input-section { padding: 0.5rem; padding-bottom: calc(0.5rem + env(safe-area-inset-bottom)); }
|
|
1090
|
-
.cli-selector { display: none; }
|
|
1091
|
-
.sub-agent-selector { display: none; }
|
|
1092
|
-
.model-selector { display: none; }
|
|
1098
|
+
.cli-selector { display: none !important; }
|
|
1099
|
+
.sub-agent-selector { display: none !important; }
|
|
1100
|
+
.model-selector { display: none !important; }
|
|
1093
1101
|
}
|
|
1094
1102
|
|
|
1095
1103
|
/* ===== SCROLLBAR STYLING ===== */
|
|
@@ -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.
|
|
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>' +
|