@openagents-org/agent-launcher 0.2.84 → 0.2.85

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 +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openagents-org/agent-launcher",
3
- "version": "0.2.84",
3
+ "version": "0.2.85",
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
@@ -373,7 +373,7 @@ function createTUI() {
373
373
  const details = [];
374
374
  details.push(r.path || process.env.HOME || '~');
375
375
  if (r.notReadyMsg) details.push(`{yellow-fg}⚠ ${r.notReadyMsg}{/yellow-fg}`);
376
- items.push(` {gray-fg} ${details.join(' · ')}{/gray-fg}`);
376
+ items.push(` {gray-fg} ${details.join(' | ')}{/gray-fg}`);
377
377
  }
378
378
  agentList.setItems(items);
379
379
  }