@openagents-org/agent-launcher 0.2.2 → 0.2.3

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/src/tui.js +8 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openagents-org/agent-launcher",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "OpenAgents Launcher — install, configure, and run AI coding agents from your terminal",
5
5
  "main": "src/index.js",
6
6
  "bin": {
package/src/tui.js CHANGED
@@ -182,8 +182,14 @@ function createTUI() {
182
182
  title: 'OpenAgents',
183
183
  fullUnicode: true,
184
184
  tags: true,
185
- style: { bg: 'black', fg: 'white' },
186
185
  });
186
+
187
+ // Full-screen background to ensure dark bg on all terminal themes
188
+ const bgFill = blessed.box({
189
+ top: 0, left: 0, width: '100%', height: '100%',
190
+ style: { bg: 'black' },
191
+ });
192
+ screen.append(bgFill);
187
193
  const connector = getConnector();
188
194
  let pkg;
189
195
  try { pkg = require('../package.json'); } catch { pkg = { version: '?' }; }
@@ -239,7 +245,7 @@ function createTUI() {
239
245
 
240
246
  // ── Log Panel (bordered) ──
241
247
  const logPanel = blessed.box({
242
- top: '60%+1', left: 0, width: '100%', height: '40%-3',
248
+ top: '60%+1', left: 0, width: '100%', height: '40%-2',
243
249
  border: { type: 'line' },
244
250
  label: ' {bold}Activity Log{/bold} ',
245
251
  tags: true,