@aion0/forge 0.2.25 → 0.2.26

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.
@@ -65,7 +65,7 @@ export async function GET(req: Request) {
65
65
  addNotification(
66
66
  'system',
67
67
  `Update available: v${latest}`,
68
- `Current: v${current}. Run: forge upgrade`,
68
+ `Current: v${current}\nforge upgrade\nnpm install -g @aion0/forge@latest`,
69
69
  );
70
70
  } catch {}
71
71
  }
package/cli/mw.ts CHANGED
@@ -553,7 +553,8 @@ Shortcuts: t=task, ls=tasks, w=watch, s=status, l=log, f=flows, p=projects, pw=p
553
553
  }
554
554
  }
555
555
 
556
- main().then(() => checkForUpdate()).catch(err => {
556
+ const skipUpdateCheck = ['upgrade', 'uninstall', '--version', '-v'];
557
+ main().then(() => { if (!skipUpdateCheck.includes(cmd)) return checkForUpdate(); }).catch(err => {
557
558
  console.error(err.message);
558
559
  process.exit(1);
559
560
  });
@@ -452,7 +452,7 @@ export default function SessionView({
452
452
  </div>
453
453
 
454
454
  {/* Right: session content */}
455
- <div className="flex-1 flex flex-col min-w-0 overflow-hidden">
455
+ <div className="flex-1 flex flex-col min-w-0 overflow-hidden" style={{ width: 0 }}>
456
456
  {activeSession && (
457
457
  <div className="border-b border-[var(--border)] px-4 py-2 shrink-0">
458
458
  <div className="flex items-center gap-2">
@@ -508,7 +508,7 @@ export default function SessionView({
508
508
  </div>
509
509
  )}
510
510
 
511
- <div className="flex-1 overflow-y-auto overflow-x-hidden p-4 space-y-2">
511
+ <div className="flex-1 overflow-y-auto overflow-x-auto p-4 space-y-2">
512
512
  {!activeSessionId && (
513
513
  <div className="flex-1 flex items-center justify-center text-[var(--text-secondary)] h-full">
514
514
  <p>Select a session from the tree to view</p>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aion0/forge",
3
- "version": "0.2.25",
3
+ "version": "0.2.26",
4
4
  "description": "Unified AI workflow platform — multi-model task orchestration, persistent sessions, web terminal, remote access",
5
5
  "type": "module",
6
6
  "scripts": {