agentgui 1.0.893 → 1.0.894
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/CHANGELOG.md +5 -0
- package/package.json +1 -1
- package/static/index.html +2 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
## [Unreleased] - remove duplicate welcome screen; wire agent/model chip selects
|
|
2
|
+
|
|
3
|
+
- index.html: removed static `#welcomeScreen` div (gradient-G logo block) that persisted over conversation views — JS `_showWelcomeScreen()` in `#output` already handles empty state
|
|
4
|
+
- index.html: moved `data-cli-selector` and `data-model-selector` attributes from hidden div to the visible `inputCardAgentSelect` / `inputCardModelSelect` chip selects so `loadAgents()` populates visible controls
|
|
5
|
+
|
|
1
6
|
## [Unreleased] - visible prompt controls + viewport-safe overflow menu
|
|
2
7
|
|
|
3
8
|
- brand-bible.css: chip selects (agent/model dropdowns) now use `--panel-3` background so they contrast against the `--panel-1` card; pill border-radius preserved with `!important` override of the `* { border-radius:0 }` reset
|
package/package.json
CHANGED
package/static/index.html
CHANGED
|
@@ -199,16 +199,6 @@
|
|
|
199
199
|
<button class="view-toggle-btn" data-view="terminal" id="terminalTabBtn" title="Terminal"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="4 17 10 11 4 5"></polyline><line x1="12" y1="19" x2="20" y2="19"></line></svg></button>
|
|
200
200
|
</div>
|
|
201
201
|
|
|
202
|
-
<!-- Welcome empty state -->
|
|
203
|
-
<div class="welcome-screen" id="welcomeScreen">
|
|
204
|
-
<div class="welcome-logo">G</div>
|
|
205
|
-
<h1 class="welcome-title">AgentGUI</h1>
|
|
206
|
-
<p class="welcome-subtitle">Your multi-agent coding assistant</p>
|
|
207
|
-
<div class="welcome-agents-grid" id="welcomeAgentsGrid">
|
|
208
|
-
<!-- Agent cards injected by JS -->
|
|
209
|
-
</div>
|
|
210
|
-
</div>
|
|
211
|
-
|
|
212
202
|
<!-- Messages scroll area -->
|
|
213
203
|
<div id="output-scroll" role="region" aria-label="Chat messages" aria-live="polite" data-drop-zone>
|
|
214
204
|
<div class="messages-wrapper">
|
|
@@ -245,9 +235,7 @@
|
|
|
245
235
|
<div class="input-section">
|
|
246
236
|
<!-- Hidden legacy selectors for backward-compat with JS logic -->
|
|
247
237
|
<div style="display:none">
|
|
248
|
-
<select class="agent-selector cli-selector" data-cli-selector title="Select CLI tool"></select>
|
|
249
238
|
<select class="agent-selector sub-agent-selector" data-agent-selector title="Select sub-agent"></select>
|
|
250
|
-
<select class="model-selector" data-model-selector title="Select model" data-empty="true"></select>
|
|
251
239
|
<select id="presetSelector" class="preset-selector" title="Load preset"></select>
|
|
252
240
|
<textarea class="message-textarea" data-message-input rows="1" style="position:absolute;opacity:0;pointer-events:none;"></textarea>
|
|
253
241
|
</div>
|
|
@@ -261,8 +249,8 @@
|
|
|
261
249
|
></textarea>
|
|
262
250
|
<div class="input-card-toolbar">
|
|
263
251
|
<div class="input-card-selectors">
|
|
264
|
-
<select class="input-chip-select" id="inputCardAgentSelect" title="Select agent"></select>
|
|
265
|
-
<select class="input-chip-select" id="inputCardModelSelect" title="Select model"></select>
|
|
252
|
+
<select class="input-chip-select agent-selector cli-selector" id="inputCardAgentSelect" data-cli-selector title="Select agent"></select>
|
|
253
|
+
<select class="input-chip-select model-selector" id="inputCardModelSelect" data-model-selector title="Select model" data-empty="true"></select>
|
|
266
254
|
<button id="savePresetBtn" class="preset-btn input-icon-btn" title="Save current agent/model as preset" style="width:28px;height:28px;">★</button>
|
|
267
255
|
</div>
|
|
268
256
|
<div class="input-card-actions">
|