agentgui 1.0.893 → 1.0.895

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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.893",
3
+ "version": "1.0.895",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "electron/main.js",
@@ -213,8 +213,7 @@ body {
213
213
  .input-card,
214
214
  .cli,
215
215
  .panel,
216
- .kv,
217
- .welcome-agents-grid > * {
216
+ .kv {
218
217
  border: 1px solid var(--color-border) !important;
219
218
  }
220
219
 
@@ -223,8 +222,7 @@ body {
223
222
  }
224
223
 
225
224
  .sidebar-header h2,
226
- .header-title,
227
- .welcome-title {
225
+ .header-title {
228
226
  font-family: var(--ff-display);
229
227
  text-transform: lowercase;
230
228
  letter-spacing: -0.02em;
@@ -3528,50 +3528,7 @@ html.dark {
3528
3528
  }
3529
3529
 
3530
3530
  /* ---------- Welcome screen ---------- */
3531
- .main-panel > .welcome-screen {
3532
- display: flex;
3533
- flex-direction: column;
3534
- align-items: center;
3535
- justify-content: center;
3536
- gap: 0.75rem;
3537
- padding: 2rem 1.5rem;
3538
- text-align: center;
3539
- flex: 1;
3540
- min-height: 0;
3541
- overflow-y: auto;
3542
- }
3543
- .welcome-logo {
3544
- width: 72px;
3545
- height: 72px;
3546
- border-radius: var(--radius-xl);
3547
- background: linear-gradient(135deg, #3b82f6, #6366f1);
3548
- color: #fff;
3549
- font-size: 2.25rem;
3550
- font-weight: 700;
3551
- display: flex;
3552
- align-items: center;
3553
- justify-content: center;
3554
- box-shadow: var(--shadow-md);
3555
- margin-bottom: 0.5rem;
3556
- }
3557
- .welcome-title {
3558
- font-size: 1.75rem;
3559
- font-weight: 700;
3560
- margin: 0;
3561
- color: var(--color-text-primary);
3562
- }
3563
- .welcome-subtitle {
3564
- font-size: 0.9375rem;
3565
- color: var(--color-text-secondary);
3566
- margin: 0 0 1.5rem;
3567
- }
3568
- .welcome-agents-grid {
3569
- display: grid;
3570
- grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
3571
- gap: 0.75rem;
3572
- width: 100%;
3573
- max-width: 720px;
3574
- }
3531
+ .main-panel >
3575
3532
 
3576
3533
  /* Hide welcome when empty / conversation active */
3577
3534
  .main-panel > .welcome-screen.hidden { display: none; }
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;">&#9733;</button>
267
255
  </div>
268
256
  <div class="input-card-actions">